/* MAIN HERO */
.nxp-hero-wrapper {
  width: 100%;
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(135deg, #eef5ff 0%, #f7fbff 100%); */
  padding: 55px 0;
  background-color: #000;
}

/* CITY IMAGE */
.nxp-city-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  pointer-events: none;
}

/* LEFT CONTENT */
.nxp-hero-content {
  position: relative;
  z-index: 2;
  width: 58%;
}

.nxp-hero-title {
  font-size: 45px;
  line-height: 1.18;
  font-weight: 500;
  color: #fff;
  letter-spacing: -1px;
  max-width: 720px;
  margin-bottom: 5px;
}

.nxp-hero-title span {
  color: #1f5cff;
  font-weight: 600 !important;
}

.nxp-hero-subtitle {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  max-width: 760px;
}

/* SEARCH BOX */
.nxp-search-box {
  margin-top: 38px;
  width: 720px;
  max-width: 100%;
  height: 82px;
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 10px;
  box-shadow:
    0 10px 30px rgba(27, 55, 120, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #edf2ff;
}

.nxp-search-input-wrap {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
}

.nxp-search-input-wrap i {
  font-size: 24px;
  color: #9ca3af;
}

.nxp-search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: #111827;
  font-weight: 500;
}

.nxp-search-input::placeholder {
  color: #9ca3af;
}

.nxp-search-btn {
  width: 150px;
  height: 100%;
  border: none;
  border-radius: 20px;
  background: #427dd4;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nxp-search-btn:hover {
  background: #0d46df;
  transform: translateY(-2px);
}

/* RIGHT FLOATING CARDS */
.nxp-floating-card {
  position: absolute;
  right: 250px;
  width: 340px;
  border-radius: 22px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  padding-right: 15px;

}

.nxp-floating-card:hover {
  animation: unset !important;
}


.nxp-card-blue {
  top: 180px;
  background: #1554ff;
  color: #fff;
  animation: floatY 3s ease-in-out infinite;
  z-index: 60;
}


@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.nxp-card-orange {
  top: 350px;
  right: 40px;
  background: #ff951f;
  color: #fff;
  animation: floatX 3s ease-in-out infinite;
  z-index: 60;
}

@keyframes floatX {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translatex(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.nxp-card-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.nxp-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.nxp-card-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.nxp-card-text p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  opacity: .95;
  color: var(--color-white);
}

.nxp-card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #0d46df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media(max-width:1200px) {

  .nxp-hero-title {
    font-size: 46px;
  }

  .nxp-floating-card {
    transform: scale(.88);
    transform-origin: right top;
  }
}

@media(max-width:991px) {

  .nxp-hero-wrapper {
    padding: 50px 25px 70px;
  }

  .nxp-hero-content {
    width: 100%;
  }

  .nxp-city-image {
    width: 100%;
    opacity: .18;
  }



  .nxp-hero-title {
    font-size: 38px;
  }

  .nxp-hero-subtitle {
    font-size: 18px;
  }

  .nxp-search-box {
    height: 70px;
  }

  .nxp-search-btn {
    width: 140px;
    font-size: 18px;
  }
}

@media(max-width:600px) {

  .nxp-hero-title {
    font-size: 30px;
  }

  .nxp-search-box {
    flex-direction: column;
    height: auto;
    padding: 14px;
    gap: 14px;
  }

  .nxp-search-input-wrap {
    width: 100%;
    height: 60px;
    padding: 0 14px;
  }

  .nxp-search-btn {
    width: 100%;
    height: 60px;
  }
}



.product-cat-home-v2 {
  padding: 20px 0;
}

.product-cat-home-v2 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-cat-home-v2 ul li {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid #ccc;
  position: relative;
}

.product-cat-home-v2 ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.product-cat-home-v2 ul li:hover::before {
  opacity: 1;
}

.product-cat-home-v2 ul li:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.product-cat-home-v2 ul li.active::before {
  opacity: 1;
}

.product-cat-home-v2 ul li.active {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.product-cat-home-v2 ul li a {
  position: relative;
  z-index: 2;
  text-decoration: none;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  transition: 0.4s;
}

.product-cat-home-v2 ul li img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 18px;
  transition: 0.4s ease;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.08));
}

.product-cat-home-v2 ul li p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-align: center;
  transition: 0.4s ease;
  line-height: 1.5;
}

.product-cat-home-v2 ul li:hover img {
  transform: scale(1.12) rotate(3deg);
}

.product-cat-home-v2 ul li:hover p {
  color: #fff;
}

.product-cat-home-v2 ul li.active p {
  color: var(--color-white) !important;
}

.sec-title-left h2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  gap: 5px;
  font-size: 22px;
  font-weight: 500;
}

.sec-title-left h2 i {
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0d46df;
  border-radius: 50%;
  font-size: 18px;

}

.sec-title-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sec-title-right a {
  font-size: 16px;
  text-decoration: none;
}

.section-padding {
  padding: 30px 0 !important;
}



/* Unique Card */
.nx-job-card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.3s ease;
  position: relative;
  padding-bottom: 60px;
  height: 100%;
}


.nx-job-card a.bk-mark {
  width: 45px;
  height: 45px;
  border: 1px solid #a9a8a8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #000;
  position: absolute;
  right: 10px;
  top: 10px;
  transition: 0.5s;
}

.nx-job-card a.bk-mark:hover {
  background-color: #0d46df;
  color: var(--color-white);
}

.nx-job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Featured Badge */
.nx-feature-badge {
  display: inline-block;
  background: #ffcc33;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 10px;
  margin-bottom: 18px;
}

/* Job Title */
.nx-job-title {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 14px;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Company */
.nx-company {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 12px;
}

/* Details */
.nx-job-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 15px;
  margin-bottom: 12px;
}

.nx-job-detail i,
.nx-company i {
  color: #798190;
  width: 18px;
}

/* Button */
.nx-apply-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 150px;
  background: #427dd4;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  margin-top: 18px;
  transition: 0.3s ease;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.nx-apply-btn:hover {
  background: #1d4ed8;
  border-radius: 40px;
}




/* Main Card */
.zkx-hotel-card {
  width: 100%;
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
  padding-bottom: 50px;
  height: 100%;
}

/* Top Image */
.zkx-hotel-banner {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.zkx-hotel-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Logo Circle */
.zkx-logo-wrap {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 10%;
  position: absolute;
  top: 132px;
  right: 10px;
  /* transform: translateX(-50%); */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
  overflow: hidden;
}

.zkx-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 5px;
}

.zkx-logo-text {
  text-align: center;
  color: #a88952;
}

.zkx-logo-text h2 {
  font-size: 25px;
  letter-spacing: 2px;
}

.zkx-logo-text span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content */
.zkx-card-body {
  padding: 10px 20px 20px 20px;
}

.zkx-hotel-name {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 12px;
  margin-top: 5px;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Contact Items */
.zkx-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #555;
  font-size: 14px;
}

.zkx-contact-item i {
  width: 25px;
  height: 25px;
  background-color: #e9edf9;
  color: #1f5cff;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

/* Buttons */
.zkx-action-row {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 8px;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}

.zkx-action-row a.icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 17px;
  color: #fff;
  background-color: #4375f3;
  transition: 0.5s;
}

.zkx-action-row a.icon:hover {
  background-color: #0d6efd;
  color: var(--color-white);
  border-radius: 40px;
}

.zkx-action-row a.whatsapp {
  color: #fff;
  background-color: #22c55e;
}

.zkx-action-row a.whatsapp:hover {
  background-color: #22c55e;
  color: var(--color-white);
}

.zkx-btn {
  /* flex: 1; */
  text-decoration: none;
  text-align: center;
  padding: 8px 12px;
  border-radius: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.zkx-btn:hover {
  transform: translateY(-2px);
}

.zkx-profile-btn {
  background: #427dd4;
  width: 130px !important;
}

.zkx-enquiry-btn {
  background: #f59e0b;
}

.zkx-whatsapp-btn {
  width: 45px;
  flex: none;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 9px 12px;
}


/* Main Card */
.vtx-offer-card {
  width: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.3s ease;
}

.vtx-offer-card:hover {
  transform: translateY(-5px);
}

/* Image Section */
.vtx-image-box {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.vtx-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Featured Badge */
.vtx-feature-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f4b400;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Content */
.vtx-card-content {
  padding: 12px;
}

.vtx-category {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.vtx-offer-title {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.1;
}

/* Button */
.vtx-offer-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 7px 14px;
  border: 2px solid #dbe5ff;
  border-radius: 14px;
  color: #1d4ed8;
  font-size: 15px;
  font-weight: 400;
  transition: 0.3s ease;
}

.vtx-offer-btn:hover {
  background: #1d4ed8;
  color: #fff;
}




.wzev-card-box {
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 4px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.wzev-card-box:hover {
  transform: translateY(-5px);
}

.wzev-card-image {
  width: 100%;
  height: 155px;
  border-radius: 14px;
  overflow: hidden;
}

.wzev-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wzev-event-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 12px 0 8px;
  text-align: center;
}

.wzev-event-date {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 15px;
  margin-bottom: 12px;
}

.wzev-event-date svg {
  width: 16px;
  height: 16px;
  fill: #777;
}

.wzev-featured-tag {
  display: inline-block;
  background: #f4c21f;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.wzev-view-btn {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #2d79ff, #1b56d8);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s ease;
  text-align: center;
}

.wzev-view-btn:hover {
  background: linear-gradient(180deg, #1b56d8, #1245b4);
}




.wzmp-card {
  background: #fff;
  border: 2px solid #eeeeee;
  border-radius: 28px;
  position: relative;
  transition: .3s;
  height: 100%;
}


.wzmp-card:hover {
  transform: translateY(-6px);
}

.wzmp-card-body {
  padding: 25px;
}

.wzmp-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #202020;
}

.wzmp-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 15px;
}

.wzmp-price {
  color: #2552d8;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
}

.wzmp-duration {
  font-size: 18px;
  color: #666;
}

.wzmp-desc {
  color: #666;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.wzmp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.wzmp-features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: #444;
  font-size: 16px;
}

.wzmp-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #4868ff;
}

.wzmp-green-check li:before {
  color: #2dbc68;
}

.wzmp-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 12px;
  font-size: 16px;
  font-weight: 400;
  transition: .3s;
  box-sizing: border-box;
}

.wzmp-btn-outline {
  color: #2552d8;
  border: 2px solid #c7d4ff;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wzmp-btn-outline:hover {
  background: #f5f8ff;
}

.wzmp-btn-gradient {
  color: #fff;
  border: none;
  background: linear-gradient(90deg, #6b2cff, #873cff);
}

.wzmp-btn-blue {
  color: #fff;
  border: none;
  background: #0b56df;
}

.wzmp-featured-card {
  border: 2px solid #dfc4ff;
  box-shadow: 0 10px 35px rgba(123, 44, 255, .12);
}

.wzmp-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #6127f8, #7d35ff);
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 38px;
  border-radius: 14px;
  letter-spacing: .5px;
  white-space: nowrap;
}

@media(max-width:1200px) {

  .wzmp-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: auto;
  }

  .wzmp-title {
    font-size: 28px;
  }

  .wzmp-price {
    font-size: 46px;
  }

  .wzmp-features li {
    font-size: 18px;
  }

}



/* Heading */
.qxw-process-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 40px;
}

/* Steps Row */
.qxw-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  position: relative;
  margin: 0 auto;
  max-width: 1830px !important;
  padding: 0 50px !important
}

/* Dashed Line */
.qxw-steps-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  width: 84%;
  border-top: 2px dashed #b8c7ff;
  z-index: 0;
}

/* Single Step */
.qxw-step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Icon Circle */
.qxw-icon-box {
  width: 84px;
  height: 84px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e4ebff;
  color: #2563eb;
  font-size: 34px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Number Badge */
.qxw-step-number {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.qxw-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Description */
.qxw-step-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  padding: 0 6px;
}

/* Responsive */
@media(max-width:1100px) {
  .qxw-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 45px;
  }

  .qxw-steps-grid::before {
    display: none;
  }
}

@media(max-width:700px) {
  .qxw-steps-grid {
    grid-template-columns: 1fr;
  }

  .qxw-process-title {
    font-size: 30px;
  }
}


.zkx-hotel-card .featured-span {
  padding: 7px 55px;
  background-color: #df8218;
  color: #fff;
  font-size: 15px;
  margin-bottom: 5px;
  display: flex;
  width: fit-content;
  font-size: 14px;
  position: absolute;
  z-index: 2;
  top: 20px;
  left: -50px;
  rotate: -50deg;
}


.evx-widget-card {
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.4s ease;
  position: relative;
  padding-bottom: 40px;
  height: 100%;
}

.evx-widget-card:hover {
  transform: translateY(-8px);

}

.evx-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.evx-event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.evx-widget-card:hover .evx-event-image {
  transform: scale(1.08);
}

.evx-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.1));
}

.evx-date-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #ffffff;
  color: #0b56df;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.evx-content {
  padding: 14px;
}

.evx-event-title {
  font-size: 17px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.evx-info-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.evx-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.evx-info-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: #eef2ff;
  color: #0b56df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.evx-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.evx-info-label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.evx-info-value {
  font-size: 14px;
  color: #111827;
  font-weight: 600;
}

.evx-btn-wrap {
  display: flex;
  justify-content: center;
}

.evx-knowmore-btn {
  width: 150px;
  padding: 8px 20px;
  border: none;
  border-radius: 10px;
  background: #427dd4;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.35s ease;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}

.evx-knowmore-btn:hover {
  /* transform: translateY(-2px); */
  background-color: #0b56df;
}









.ft-cat-home {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid #ccc;
  position: relative;

}

.ft-cat-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.ft-cat-home:hover::before {
  opacity: 1;
}

.ft-cat-home:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.ft-cat-home.active::before {
  opacity: 1;
}

.ft-cat-home.active {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.ft-cat-home a {
  position: relative;
  z-index: 2;
  text-decoration: none;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  transition: 0.4s;
}

.ft-cat-home img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 18px;
  transition: 0.4s ease;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.08));
}

.ft-cat-home p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-align: center;
  transition: 0.4s ease;
  line-height: 1.5;
}

.ft-cat-home:hover img {
  transform: scale(1.12) rotate(3deg);
}

.ft-cat-home:hover p {
  color: #fff;
}

.ft-cat-home.active p {
  color: var(--color-white) !important;
}

.carousel-btn2 .owl-nav {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.carousel-btn2 .owl-nav button {
  width: 45px;
  height: 45px;
  font-size: 35px !important;
  background-color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 50%;

}

.carousel-btn2 .owl-nav button span {
  padding-bottom: 10px !important;
}


.carousel-btn2 .owl-nav button.owl-next {
  position: absolute;
  top: 38%;
  right: -25px;

}

.carousel-btn2 .owl-nav button.owl-prev {
  position: absolute;
  top: 38%;
  left: -25px;

}

.search-carousel-btns .owl-nav button {
  border: 1px solid #ccc !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.search-carousel-btns .owl-nav button span {
  font-size: 28px !important;
  padding-bottom: 5px;
  padding-top: 5px !important;
}

.search-carousel-btns .owl-nav button:hover {
  background-color: #0d46df !important;
}

.search-carousel-btns .owl-nav button:hover span {
  color: var(--color-white);
}






/* =========================================
   LIGHT FLOATING ACTION CARDS
========================================= */

.action-card {
  --accent: #6366f1;
  --accent-light: #8b5cf6;
  --background: #f3f4ff;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 100px;

  padding: 20px 82px 20px 20px;

  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 24px;

  background: var(--background);

  overflow: hidden;

  box-shadow:
    0 12px 30px rgba(80, 70, 150, 0.08),
    0 3px 8px rgba(80, 70, 150, 0.04);

  animation: cardFloat 5s ease-in-out infinite;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* =========================================
   JOB THEME
========================================= */

.action-card--job {
  --accent: #6366f1;
  --accent-light: #8b5cf6;
  --background: #f2f3ff;

  border-color: rgba(99, 102, 241, 0.14);

  animation-delay: 0s;
  position: absolute;
  top: 30%;
  right: 90px;
  width: 400px;
  z-index: 10;
}


/* =========================================
   BUSINESS THEME
========================================= */

.action-card--business {
  --accent: #f97316;
  --accent-light: #fb923c;
  --background: #fff5ec;

  border-color: rgba(249, 115, 22, 0.14);

  animation-delay: -2.5s;
  position: absolute;
  top: 50%;
  right: 50px;
  width: 400px;
  z-index: 10;
}


/* =========================================
   FLOATING ANIMATION
========================================= */

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}


/* =========================================
   DECORATIVE BACKGROUND SHAPE
========================================= */

.action-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -70px;
  top: -100px;

  border-radius: 50%;

  background: var(--accent);

  opacity: 0.08;

  pointer-events: none;
}


/* Bottom decorative glow */

.action-card::after {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: 25%;
  bottom: -100px;

  border-radius: 50%;

  background: var(--accent-light);

  opacity: 0.06;

  filter: blur(15px);

  pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.action-card__content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  gap: 16px;

  min-width: 0;
}


/* =========================================
   ICON
========================================= */

.action-card__icon {
  flex: 0 0 56px;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  color: var(--accent);

  font-size: 20px;

  background: #ffffff;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* =========================================
   EYEBROW
========================================= */

.action-card__eyebrow {
  display: block;

  margin-bottom: 3px;

  color: var(--accent);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.8px;
  text-transform: uppercase;
}


/* =========================================
   TITLE
========================================= */

.action-card__title {
  margin: 0 0 4px;

  color: #202638;

  font-size: 17px;
  font-weight: 600;

  line-height: 1.3;
}


/* =========================================
   DESCRIPTION
========================================= */

.action-card__description {
  margin: 0;

  color: #72798a;

  font-size: 13px !important;

  line-height: 1.45;
}


/* =========================================
   RIGHT ARROW
========================================= */

.action-card__link {
  position: absolute;

  z-index: 5;

  top: 50%;
  right: 18px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-50%);

  border-radius: 14px;

  color: #ffffff;

  text-decoration: none;

  background: var(--accent);

  box-shadow:
    0 8px 18px color-mix(in srgb,
      var(--accent) 25%,
      transparent);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-radius 0.3s ease;
}


.action-card__link i {
  transition: transform 0.3s ease;
}


/* =========================================
   HOVER
========================================= */

.action-card:hover {
  animation-play-state: paused;

  transform: translateY(-10px);

  box-shadow:
    0 22px 45px rgba(50, 50, 100, 0.12),
    0 5px 12px rgba(50, 50, 100, 0.05);
}


.action-card:hover .action-card__icon {
  transform: translateY(-3px) rotate(-4deg);

  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.09);
}


.action-card:hover .action-card__link {
  transform:
    translateY(-50%) scale(1.08);

  border-radius: 50%;

  box-shadow:
    0 12px 25px color-mix(in srgb,
      var(--accent) 30%,
      transparent);
}


.action-card:hover .action-card__link i {
  transform: translateX(3px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .action-card {
    min-height: 86px;

    padding: 16px 65px 16px 16px;

    border-radius: 19px;
  }

  .action-card__content {
    gap: 12px;
  }

  .action-card__icon {
    flex-basis: 46px;

    width: 46px;
    height: 46px;

    border-radius: 14px;

    font-size: 17px;
  }

  .action-card__title {
    font-size: 15px;
  }

  .action-card__description {
    font-size: 11.5px;
  }

  .action-card__eyebrow {
    font-size: 9px;
  }

  .action-card__link {
    right: 13px;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    font-size: 13px;
  }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .action-card {
    animation: none;
    transition: none;
  }
}


.ft-cat-home-2 {
  width: 100%;
  height: 100%;
}

.ft-cat-home-2>a {
  position: relative;
  display: block;

  padding: 10px;
  height: 100%;

  background: #fff;
  border: 1px solid #eeeef4;
  border-radius: 20px;

  text-decoration: none;

  box-shadow: 0 8px 25px rgba(40, 40, 80, .06);

  overflow: hidden;

  transition: .35s ease;
}


/* Image */

.ft-cat-home-2 .cat-img {
  position: relative;

  height: 105px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 15px;

  background: linear-gradient(135deg,
      #f4f1ff,
      #eeebff);
}

.ft-cat-home-2 .cat-img::before {
  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  top: -50px;
  right: -30px;

  border-radius: 50%;

  background: #5c73f6;
  opacity: .12;
}

.ft-cat-home-2 .cat-img img {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 100%;

  padding: 12px;

  object-fit: contain;

  transition: transform .45s ease;
}


/* Info */

.ft-cat-home-2 .cat-info {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  padding: 14px 3px 3px;
}

.ft-cat-home-2 .cat-title {
  margin: 0;

  color: #25283a;

  font-size: 15px;
  font-weight: 500;

  line-height: 1.4;

  transition: color .3s ease;
}


/* Arrow */

.ft-cat-home-2 .cat-arrow {
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #0d46df;
  background: #f2efff;

  font-size: 11px;

  transition: .3s ease;
}


/* Hover */

.ft-cat-home-2>a:hover {
  transform: translateY(-7px);

  border-color: #e2dcff;

  box-shadow:
    0 18px 40px rgba(90, 70, 170, .12);
}

.ft-cat-home-2>a:hover .cat-img {
  background: linear-gradient(135deg,
      #c5c5f8,
      #eeebff);
}

.ft-cat-home-2>a:hover .cat-img img {
  transform: scale(1.08);
}

.ft-cat-home-2>a:hover .cat-title {
  color: #0d46df;
}

.ft-cat-home-2>a:hover .cat-arrow {
  color: #fff;
  background: #0d46df;

  transform: translateX(2px);
}

.cat-sec {
  margin-top: -50px;
}




.featured-box {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid #eef1f6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding-bottom: 60px;
}

.featured-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  opacity: 0.06;
  border-radius: 50%;
  transition: 0.4s ease;
}

.featured-box:hover::before {
  transform: scale(1.2);
}

.featured-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

/* =========================================
   Top Box
========================================= */

.job-top-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.job-top-box i.fa-suitcase {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 16px;
}

.job-top-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #f0b110;
  padding: 7px 14px;
  border-radius: 30px;
}

.btn-circle-cs {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.btn-circle-cs:hover {
  background: #ef4444;
  color: #fff;
  transform: rotate(8deg);
}

/* =========================================
   Job Title
========================================= */

.featured-box h3 {
  margin-bottom: 12px;
}

.featured-box h3 a {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 14px;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-box h3 a:hover {
  color: #4f46e5;
}

/* =========================================
   Location
========================================= */

.job-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 28px;
}

.job-loc i {
  color: #4f46e5;
}

/* =========================================
   Bottom Company Info
========================================= */

.job-box-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.job-box-bottom img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #eef2f7;
  padding: 6px;
}

.job-box-bottom h6 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.job-box-bottom p {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

/* =========================================
   Apply Button
========================================= */

.btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(135deg, #0d46df, #0d46df);
  color: #fff;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.btn-apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d46df, #0d46df);
  opacity: 0;
  transition: 0.3s ease;
  z-index: -1;
}

.btn-apply span {
  position: relative;
  z-index: 2;
}

.btn-apply:hover::before {
  opacity: 1;
}

.btn-apply:hover {
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
  color: #fff !important;
}

.col-5-row-home .col-xl-3 {
  width: 20%;
}

.btx-deal-card {
  position: relative;

  width: 100%;

  background: #fff;

  border: 1px solid #eeeef3;
  border-radius: 22px;

  overflow: hidden;

  box-shadow:
    0 10px 30px rgba(40, 40, 70, .06);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}


/* =========================================
   IMAGE
========================================= */

.btx-deal-img {
  position: relative;

  height: 160px;

  overflow: hidden;

  background: #f5f5f8;
}

.btx-deal-img img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .55s cubic-bezier(.2, .8, .2, 1);
}


/* Image overlay */

.btx-deal-img::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, .18) 100%);

  pointer-events: none;
}


/* =========================================
   FEATURED TAG
========================================= */

.btx-deal-tag {
  position: absolute;

  z-index: 3;

  top: 14px;
  left: 14px;

  display: inline-flex;
  align-items: center;

  padding: 7px 11px;

  border-radius: 30px;

  color: #fff;

  background: linear-gradient(135deg,
      #7657e8,
      #9b7cf8);

  font-size: 11px;
  font-weight: 700;

  box-shadow:
    0 6px 15px rgba(118, 87, 232, .25);
}


/* =========================================
   DEAL BADGE
========================================= */

.btx-deal-save {
  position: absolute;

  z-index: 3;

  right: 14px;
  bottom: 14px;

  display: inline-flex;
  align-items: center;

  gap: 6px;

  padding: 7px 10px;

  border-radius: 8px;

  color: #fff;

  background: rgba(20, 20, 30, .65);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  font-size: 10px;
  font-weight: 600;
}


/* =========================================
   CONTENT
========================================= */

.btx-deal-info {
  padding: 10px 18px 18px;
}


/* Category */

.btx-deal-cat {
  display: inline-block;

  margin-bottom: 6px;

  color: #7657e8;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .5px;
  text-transform: uppercase;
}


/* Title */

.btx-deal-title {
  margin: 0 0 7px;

  color: #242738;

  font-size: 19px;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: -.4px;
}


/* Description */

.btx-deal-text {
  margin: 0 0 17px;

  color: #858a99;

  font-size: 12px;

  line-height: 1.5;
}


/* =========================================
   BUTTON
========================================= */

.btx-deal-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 11px 13px;

  border-radius: 12px;

  color: #fff;

  background: #0d46df;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  box-shadow:
    0 7px 18px rgba(118, 87, 232, .18);

  transition:
    background .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.btx-deal-btn span {
  color: #fff;
  font-weight: 600;
}

.btx-deal-btn i {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: rgba(255, 255, 255, .15);

  font-size: 10px;

  transition:
    transform .3s ease,
    background .3s ease;
}


/* =========================================
   HOVER
========================================= */

.btx-deal-card:hover {
  transform: translateY(-8px);

  border-color: #e3dcff;

  box-shadow:
    0 20px 45px rgba(70, 55, 140, .12);
}


.btx-deal-card:hover .btx-deal-img img {
  transform: scale(1.07);
}


.btx-deal-card:hover .btx-deal-btn {
  background: #0d46df;

  box-shadow:
    0 10px 24px rgba(118, 87, 232, .28);
}


.btx-deal-card:hover .btx-deal-btn i {
  transform: translateX(3px);

  background: rgba(255, 255, 255, .22);
}


.ts-eve {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  transition: 0.5s;
}

.ts-eve:hover {
  border-radius: 40px;
}

.btx-how-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 12px;
}


/* Card */

.btx-how-card {
  position: relative;

  min-width: 0;

  padding: 15px 12px;

  background: #fff;

  border: 1px solid #eeeeF4;
  border-radius: 15px;

  text-align: center;

  box-shadow: 0 5px 18px rgba(40, 40, 70, .045);

  transition: .3s ease;
}


/* Connector */

.btx-how-card:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 34px;
  right: -13px;

  width: 13px;
  height: 1px;

  background: #ddd9f7;

  z-index: 2;
}


/* Icon */

.btx-how-icon {
  position: relative;

  width: 46px;
  height: 46px;

  margin: 0 auto 11px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  color: #6d5dfc;

  background: #f1efff;

  font-size: 16px;

  transition: .3s ease;
}


/* Number */

.btx-how-icon span {
  position: absolute;

  top: -6px;
  right: -6px;

  width: 25px;
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #fff;

  background: #6d5dfc;

  border: 2px solid #fff;

  font-size: 10px;
  font-weight: 800;
}


/* Content */

.btx-how-body h3 {
  margin: 0 0 5px;

  color: #292b3a;

  font-size: 16px;
  font-weight: 600;

  line-height: 1.35;
}


.btx-how-body p {
  margin: 0;

  color: #8b8e9b;

  font-size: 13px;

  line-height: 1.45;
}


/* Hover */

.btx-how-card:hover {
  transform: translateY(-4px);

  border-color: #ddd8ff;

  box-shadow:
    0 12px 25px rgba(80, 65, 160, .09);
}

/* 
.btx-how-card:hover .btx-how-icon {
  color: #fff;

  background: #6d5dfc;

  transform: scale(1.05);
} */


/* .btx-how-card:hover .btx-how-icon span {
  background: #fff;

  color: #6d5dfc;
} */


/* =========================================
   DIFFERENT ACCENTS
========================================= */

.btx-how-card:nth-child(2) .btx-how-icon {
  color: #e68b32;
  background: #fff4e7;
}

.btx-how-card:nth-child(2) .btx-how-icon span {
  background: #e68b32;
}

.btx-how-card:nth-child(3) .btx-how-icon {
  color: #279b82;
  background: #eaf8f4;
}

.btx-how-card:nth-child(3) .btx-how-icon span {
  background: #279b82;
}

.btx-how-card:nth-child(4) .btx-how-icon {
  color: #4d82d9;
  background: #edf4ff;
}

.btx-how-card:nth-child(4) .btx-how-icon span {
  background: #4d82d9;
}

.btx-how-card:nth-child(5) .btx-how-icon {
  color: #d65c8b;
  background: #fff0f6;
}

.btx-how-card:nth-child(5) .btx-how-icon span {
  background: #d65c8b;
}

.btx-how-card:nth-child(6) .btx-how-icon {
  color: #d58a32;
  background: #fff5e8;
}

.btx-how-card:nth-child(6) .btx-how-icon span {
  background: #d58a32;
}



.btx-eve-card {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.btx-eve-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.btx-eve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.08) 100%);
  transition: background 0.4s ease;
}

.btx-eve-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px;
  color: #fff;
  z-index: 2;
}

.btx-eve-date {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  font-size: 13px;
  font-weight: 500;
}

.btx-eve-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btx-eve-location {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.btx-eve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 18px;
  padding: 10px 20px;

  border-radius: 6px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  opacity: 1;
  visibility: hidden;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.35s ease;
}

/* Hover Effect */
.btx-eve-card:hover .btx-eve-image {
  transform: scale(1.05);
}

.btx-eve-card:hover .btx-eve-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.65) 55%,
      rgba(0, 0, 0, 0.2) 100%);
}

.btx-eve-card:hover .btx-eve-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btx-eve-btn:hover {
  background: #f5f5f5;
  color: #111;
}


.btx-eve-membership {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 190px;
  padding: 35px 40px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #093499, #2563eb);
  color: #fff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Decorative Shapes */
.btx-eve-membership-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.12;
}

.btx-eve-shape-1 {
  width: 180px;
  height: 180px;
  right: 8%;
  top: -90px;
  border: 35px solid #fff;
}

.btx-eve-shape-2 {
  width: 120px;
  height: 120px;
  right: 22%;
  bottom: -70px;
  background: #fff;
}

.btx-eve-shape-3 {
  width: 25px;
  height: 25px;
  right: 5%;
  bottom: 25px;
  background: #fff;
}

/* Crown Icon */
.btx-eve-membership-icon {
  position: relative;
  z-index: 2;
  flex: 0 0 75px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 30px;
  color: #fff;
  transition: all 0.35s ease;
}

.btx-eve-membership:hover .btx-eve-membership-icon {
  transform: translateY(-5px) rotate(-5deg);
  background: rgba(255, 255, 255, 0.18);
}

/* Content */
.btx-eve-membership-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.btx-eve-membership-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.75;
  color: var(--color-orange);
}

.btx-eve-membership-label i {
  font-size: 11px;
}

.btx-eve-membership-content h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
}

.btx-eve-membership-content p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

/* Button */
.btx-eve-membership-btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 10px;
  background: #fff;
  color: #1245b4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.35s ease;
}

.btx-eve-membership-btn span {
  color: #1245b4;
  font-weight: 600;
}

.btx-eve-membership-btn i {
  transition: transform 0.3s ease;
}

.btx-eve-membership-btn:hover {
  color: #161616;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btx-eve-membership-btn:hover i {
  transform: translateX(5px);
}

/* Decorative hover glow */
.btx-eve-membership::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -130px;
  bottom: -150px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.5s ease;
}

.btx-eve-membership:hover::after {
  transform: scale(1.4);
}


.btx-edu-uk-card {
  position: relative;
  height: 100%;
  min-height: 450px;
  padding: 28px 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.btx-edu-uk-card:hover {
  transform: translateY(-6px);
  border-color: #d9d9d9;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.11);
}

/* ========================= Decorative Shapes ========================= */
.btx-edu-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.btx-edu-shape-1 {
  width: 130px;
  height: 130px;
  right: -65px;
  top: -65px;
  border-radius: 50%;
  background: #eef3ff;
}

.btx-edu-shape-2 {
  width: 70px;
  height: 70px;
  right: -25px;
  top: 50px;
  border-radius: 18px;
  border: 12px solid #f1f4ff;
  transform: rotate(25deg);
}

.btx-edu-shape-3 {
  width: 45px;
  height: 45px;
  left: -20px;
  bottom: 80px;
  border-radius: 50%;
  background: #f4f6ff;
}

/* ========================= Card Icon ========================= */
.btx-edu-card-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 15px;
  background: #f1f4ff;
  color: #3157d5;
  font-size: 24px;
  transition: all 0.35s ease;
}

.btx-edu-uk-card:hover .btx-edu-card-icon {
  background: #3157d5;
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

/* ========================= Country ========================= */
.btx-edu-country {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  color: #3157d5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.btx-edu-country i {
  font-size: 10px;
}

/* ========================= Title ========================= */
.btx-edu-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
}

.btx-edu-title a {
  color: #181818;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btx-edu-title a:hover {
  color: #3157d5;
}

/* ========================= Description ========================= */
.btx-edu-description {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #777;
  font-size: 14px;
  line-height: 1.65;
}

/* ========================= Links ========================= */
.btx-edu-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eeeeee;
}

.btx-edu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  color: #444;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.3s ease;
}

.btx-edu-link span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.btx-edu-link span i {
  width: 22px;
  color: #3157d5;
  font-size: 13px;
  text-align: center;
}

.btx-edu-link>i {
  color: #aaa;
  font-size: 11px;
  transition: transform 0.3s ease;
}

.btx-edu-link:hover {
  color: #3157d5;
  padding-left: 5px;
}

.btx-edu-link:hover>i {
  color: #3157d5;
  transform: translateX(4px);
}

/* ========================= View All Button ========================= */
.btx-edu-view-all {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 9px;
  background: #0d46df;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btx-edu-view-all span {
  color: #fff;
  font-weight: 600;
}

.btx-edu-view-all i {
  transition: transform 0.3s ease;
}

.btx-edu-view-all:hover {
  background: #2446bd;
  color: #fff;
  box-shadow: 0 8px 20px rgba(49, 87, 213, 0.22);
}

.btx-edu-view-all:hover i {
  transform: translateX(5px);
}

.bg-dark-cs {
  background-color: #03183a;
}


.btx-train-card {
  position: relative;
  overflow: hidden;
  padding: 26px 20px 18px;
  background: #fff;
  border-radius: 22px;
  color: #0d46df;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

/* Decorative circle */

.btx-train-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: #eef3ff;
}

.btx-train-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.btx-train-label {
  display: block;
  margin-bottom: 7px;
  color: #56709a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.btx-train-header h3 {
  margin: 0;
  color: #222;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}

.btx-train-main-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: #0d46df;
  color: #fff;
  font-size: 19px;
  box-shadow: 0 8px 18px rgba(16, 47, 97, 0.2);
}

.btx-train-desc {
  position: relative;
  z-index: 1;
  margin: 5px 0 15px;
  color: #66758d;
  font-size: 13px;
  line-height: 1.55;
}

/* Items */

.btx-train-list {
  position: relative;
  z-index: 1;
}

.btx-train-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 6px 0px;
  margin-bottom: 4px;
  border-radius: 11px;
  color: #263c5b;
  text-decoration: none;
  transition: 0.25s ease;
  font-size: 15px !important;
}

.btx-train-item:hover {
  background: #f1f5fb;
  color: #0d46df;
  transform: translateX(3px);
}

.btx-train-item span {
  font-size: 15px;
}

.btx-train-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border-radius: 9px;
  background: #edf2f9;
  color: #0d46df;
  font-size: 12px;
}

.btx-train-item>span:nth-child(2) {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
}

.btx-train-arrow {
  color: #9ba8ba;
  font-size: 9px;
  transition: 0.25s ease;
}

.btx-train-item:hover .btx-train-arrow {
  color: #0d46df;
  transform: translateX(3px);
}

/* View all */

.btx-train-view-all {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 11px;
  background: #0d46df;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btx-train-view-all span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.btx-train-view-all:hover {
  background: #0d46df;
  color: #fff;
}

.btx-train-view-all i {
  font-size: 10px;
}