:root {
  --global-primary-color: #ffc533;
  --bg-primary-color: #0a0910;
  --global-text-color: #e6e6e6 !important;
  --global-border: 1px solid #ffc533;
  --light-border: #5c4936;
  --global-font: "Gilroy", sans-serif;

  /* ===== GLobal Colors Start ===== */
  --global-background-color: #1c1613;
  --active-border: 1px solid #ffc533;
  --inactive-border: 1px solid #ffe083;
  --warning-color-deep: rgba(228, 0, 0, 1);
  --warning-color-light: rgba(228, 0, 0, 0.1);
  --focus-input-bg-color: #070b31;
  --primary-color: #ffc533;
  --text-color-deep: #ffeb99;
  --text-color-light: #ffc961 (5%);
  --text-color-white: #111111;

  --separator-color: #44373d;
  --box-shadow: 0px 0px 24px 0px #a1acb633;
  --secondary-btn-hover-color: #ffc961 (5%) 1;
  --primary-btn-hover-color: #ffc961;
  /* ===== GLobal Colors End ===== */

  /* Define font families */
  --font-primary: "Gilroy", sans-serif;

  /* Define font weights */
  --font-thin: 100;
  --font-ultralight: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-heavy: 850;
  --font-black: 900;

  /* Define font styles */
  --font-style-normal: normal;
  --font-style-italic: italic;
}

.social-icons .icon {
  width: 60px;
  height: 60px;
  background-color: #1c1613;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icons .icon:hover {
  background-color: #007bff;
  color: #fff;
  transform: scale(1.1);
}

.dark-span-text {
  color: #ffeb99 !important;
}

.dark-span-text-dark {
  color: #ffc533 !important;
}

.custom-dropdown .nav-link {
  font-family: Gilroy;
  color: white !important;
  font-weight: 600 !important;
}

.body-mask {
  background-image: url(../images/bg-shapes/darkbg-shape-polygon.svg);
  background-position: top left;
  background-repeat: no-repeat;
}

.global-button {
  background-color: var(--primary-color);
  font-weight: var(--font-semibold);
  color: black;
  padding: 8px 30px;
  border-radius: 10px;
  border: none;
  font-size: 12px;
}

.section-title {
  background: linear-gradient(
    270deg,
    #ffa000 0%,
    #ee8700 51.31%,
    #ffc961 102.62%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

ul,
li {
  line-height: 28px;
  color: #e6e6e6;
}

.gradient-text-color {
  background: linear-gradient(
    270deg,
    #ffa000 0%,
    #ee8700 51.31%,
    #ffc961 102.62%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  /* text-align: center; */
  font-family: var(--font-primary);
  font-weight: var(--font-semibold);
  font-size: clamp(1.25rem, 1rem + 1.25vw, 1.8rem);
}

/* inactive bullet */
.swiper-pagination-clickable .swiper-pagination-bullet,
.swiper-pagination-bullet {
  background: #514025;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}

/* active bullet */
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 35px;
  border-radius: 40px;
  background: #ffc533 !important;
  height: 13px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 35px;
  border-radius: 40px;
  background: #ffc533;
  height: 13px;
}

/*slider navigation arrow */
.swiper-button-prev {
  box-shadow: 2px 0px 4px 0px #ffc533;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: #100d12;
  top: 45%;
  z-index: 999;
  color: var(--text-color-deep);
}

.swiper-button-next {
  border-radius: 50%;
  box-shadow: -2px 0px 4px 0px #ffc533;
  width: 44px;
  height: 44px;
  background-color: #100d12;
  top: 45%;
  z-index: 999;
  color: var(--text-color-deep);
}

.global-outline-button {
  font-weight: var(--font-semibold);
  color: #ffc533;
  padding: 8px 30px;
  border-radius: 10px;
  border: var(--global-border) !important;
  font-size: 12px;
}

.global-outline-button:active {
  background-color: #100d12 !important;
  color: var(--text-color-deep) !important;
}

.global-outline-button:hover {
  background-color: #100d12 !important;
  border: var(--global-border);
  color: #ffc533;
}

.global-outline-button:focus {
  border: var(--global-border) !important;
}

.extra-btn {
  background-color: #100d12 !important;
  border: var(--global-border);
  color: #ffc533;
}

.honeybtn {
  background-color: var(--global-primary-color);
  padding: 20px;
  border-radius: 11px;
  border: none;
  color: white;
  cursor: pointer;
  max-width: 530px;
  max-height: 56px;
}

.borderbtn {
  background-color: var(--global-primary-color);
  border: var(--global-border);
  border-radius: 12px;
  padding: 8px 64px;
}

.honeycheckbox {
  width: 24px;
  height: 24px;
  border: 1px solid var(--global-primary-color);
  border-radius: 5px;
}

.certification .view-link {
  text-decoration: underline;
  color: var(--global-primary-color);
}

.navbar-nav li a.active {
  font-weight: var(--font-bold);
  color: #ffffff !important;
}

.navbar-nav li a.active::after {
  width: 33.33%;
}

.navbar-nav li a:hover {
  font-weight: var(--font-bold);
  color: #ffffff;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("../icons/toggle-nav-white.svg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.home-info .container .info-content .title {
  color: #ffeb99;
}

.home-info .container .buttons .get-btn {
  border-radius: 15px;
  background: var(--global-primary-color) !important;
  color: var(--text-color-white) !important;
  border: var(--global-primary-color) !important;
}

.home-info .container .buttons .get-btn:hover {
  background-color: var(--primary-btn-hover-color);
}

.home-info .container .buttons .get-btn:focus {
  background-color: var(--primary-btn-hover-color);
}

.home-info .container .buttons .video-btn {
  /* box-shadow: 0px 0px 24px 0px #2673b833; */
  background-color: #100d12;
  border-radius: 15px;
  color: #ffeb99;
  border-radius: 15px;
  border: 1px solid #58441c !important;
  font-weight: var(--font-semibold);
  transition: background-color 0.3s ease;
}

.home-info .container .buttons .video-btn:focus {
  background-color: #18151a;
}

.home-info .container .buttons .video-btn:hover {
  background-color: #100d12;
}

.home-info .second-col .hexagon-gallery {
  background: url("../dark/images/home/animatino-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

section.home-what-we-offer.mask-shape-bg {
  background-image: url("../images/service/darkMask.svg");
  padding-block: min(14vh, 6rem);
}

.home-what-we-offer .slide-container .slide-content::before {
  z-index: 90;
  left: 0;
  background: linear-gradient(270deg, #f3fcfd00 100%, #191970 80%);
}

.home-what-we-offer .slide-container .slide-content::after {
  z-index: 90;
  right: 0;
  background: linear-gradient(90deg, #f3fcfd00 100%, #191970 80%);
}

.home-what-we-offer .slide-container .card {
  background: linear-gradient(135deg, #040514 100%, #191970 80%);
  border: 1px solid #ffeb99;
  width: 100%;
  color: white;
  border-radius: 40px;
  overflow: hidden;
  max-height: 495px;
}

.home-what-we-offer .slide-content .slide-info .title-info .num {
  font-size: clamp(1.875rem, 1.1875rem + 3.4375000000000004vw, 5.3125rem);
  color: #5bacfc;
  background-image: -webkit-linear-gradient(
    180deg,
    #ffa000 20%,
    #ee8700 50%,
    #ffc961 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--font-semibold);
}

.home-what-we-offer .slide-content .slide-info .title-info .str .str-zero,
.home-what-we-offer .slide-content .slide-info .title-info .str .str-service {
  color: #5bacfc;
  background-image: -webkit-linear-gradient(
    180deg,
    #ffa000 20%,
    #ee8700 50%,
    #ffc961 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--font-semibold);
}

.home-service .blockchain {
  background-image: url("../images/service/darkMask.svg");
}

.home-service .combine-side-mask {
  background-image: url(../images/home/darkcombine-bg.svg);
  background-repeat: no-repeat;
  background-position: right 0% bottom 50%;
  background-size: 50%;
}

.home-service .service-slider-container .swiper-pagination-bullet-active {
  opacity: 1;
  width: 35px;
  border-radius: 40px;
  background: #ffc533;
  height: 13px;
}

.home-service .service-slider-container {
  background-image: url(../images/service/darkMask.svg);
  padding-top: min(14vh, 6rem);
}

.home-service .advantage-content button {
  /* box-shadow: 0px 0px 24px 0px #ffc533; */
  font-weight: var(--font-semibold);
  color: black !important;
  background-color: var(--primary-color);
  padding: 22px 41px;
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  transition: background-color 0.3s ease;
}

.home-service .advantage-content button:hover {
  background-color: #dbba66;
}

.home-service .combined-power-content .combined-info button {
  font-weight: var(--font-semibold);
  color: black !important;
  background-color: var(--primary-color);
  padding: 22px 41px;
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  transition: background-color 0.3s ease;
}

.home-service .combined-power-content .combined-info button:hover {
  background-color: #dbba66;
}

.home-service .combined-power-content .combined-info button.nector-btn {
  background-color: var(--global-background-color);
  color: #ffeb99 !important;
  margin-left: 32px;
  border: 1px solid #4f3d1a;
}

.home-service .combined-power-content .combined-info button.nector-btn:hover {
  background-color: #18151a;
}

.home-service .combined-power-content .combined-power .combined-info p {
  margin-top: 20px;
  margin-bottom: 44px;
  font-weight: var(--font-regular);
  color: white;
}

.home-service .combined-power-content .nector-app-card-content .honeybee-card {
  height: 305px;
  max-width: 436px;
  border: 1px solid #564439;
  padding: 40px 56px;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  box-shadow: -10px 10px 24px 0px #32272d;
  background: #070b31;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 30%;
}

.home-service .advantage-card .card {
  max-width: 365px;
  width: 100%;
  border: 1px solid #594736;
  color: white;
  border-radius: 26px;
  padding: 40px;
  background-color: var(--global-background-color);
  margin-right: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-service .advantage-cards .card .card-content .name {
  font-weight: var(--font-semibold);
  color: #ffc533;
}

.home-service .home-news-letter-container {
  background-image: url("../images/service/darkMask.svg");
  padding-block: min(14vh, 6rem);
}

.home-service .home-feature-slider-container .slide-container .name {
  font-size: 24px;
  font-weight: var(--font-bold);
  color: #ffc961;
}

.home-service .home-feature-slider-container .slide-container .description {
  line-height: 24px;
  color: white;
  text-align: left;
  margin: 0;
  text-align: justify;
}

.home-service
  .combined-power-content
  .nector-app-card-content
  .honeybee-card
  .honeybee-info
  h4 {
  color: #ffeb99;
  font-size: 24px;
  font-weight: var(--font-semibold);
}

.home-service .service-slider-container .service-slider .card {
  background-color: var(--global-background-color);
  border: 1px solid #544335;
  border-radius: 32px;
  display: flex;
  align-items: center;
  padding: 40px;
}

.home-service .service-slider-container .service-slider .card:hover {
  border: 1px solid #ffc533;
}

.home-service
  .home-news-letter-container
  .slide-container
  .event-card
  .event-content
  .event-title {
  font-size: clamp(
    0.625rem,
    -0.32894736842105254rem + 1.3157894736842104vw,
    1.25rem
  );
  font-weight: var(--font-bold);
  margin: 0 0 5% 0;
  color: #ffc533;
}

.home-service .home-news-letter-container .newsletter-input {
  padding: 18px 20px;
  font-size: 16px;
  color: white; /* input text color control */
  border: 2px solid #544335 !important;
  border-radius: 14px;
  outline: none;
  width: 430px;
  box-shadow: none;
  margin-right: 24px;
}

.home-service .home-news-letter-container .newsletter-input:focus {
  border-color: #ffc533;
}

.home-service .home-news-letter-container .newsletter-button {
  padding: 10px 25px;
  font-weight: var(--font-semibold);
  color: black !important;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  width: 250px;
  height: 64px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0px 0px 24px 0px #271f25;
}

.home-service .home-news-letter-container .newsletter-button:hover {
  background-color: #dbba66 !important;
}

.home-service .service-slider-container .card:hover {
  box-shadow: 10px 10px 24px 0px #271f25;
}

.home-service .service-slider-container .name {
  font-size: 24px;
  font-weight: var(--font-bold);
  color: var(--text-color-deep);
  margin-bottom: 16px;
}
.home-service .service-slider-container .description {
  line-height: 24px;
  font-size: 16px;
  color: white !important;
  text-align: justify;
  margin: 0;
}

.home-service .home-feature-slider-container .card {
  background-color: var(--global-background-color);
  border: 1px solid #3e3223;
  /* max-width: 596px !important; */
  border-radius: 40px;
}

.home-service .home-feature-slider-container .card:hover {
  box-shadow: 10px 10px 24px 0px rgba(38, 115, 184, 0.1);
}

.home-service .home-client-slider-container {
  background: #0a0910 !important;
  padding-block: min(14vh, 6rem);
}

.home-service .home-client-slider-container .card {
  height: 380px;
  background: #100d12;
  border-radius: 40px;
  border: none;
  overflow: hidden;
}

.home-service .home-client-slider-container .details h3,
.home-service .home-client-slider-container .details h4 {
  color: #ffc961 !important;
  font-size: 20px;
  margin: 10px 0 10px 0;
  font-weight: var(--font-semibold);
}

.home-service .home-client-slider-container .details p {
  color: white !important;
  font-size: 12.5px;
  font-weight: 400;
}

.home-module-box .card {
  width: 100%;
  background-color: var(--global-background-color);
  border-radius: 30px;
  padding: 25px;
  text-align: center;
  position: relative;
  transition: 1s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #382907;
  height: 270px;
  overflow: hidden;
}

.home-module-box .card:hover {
  border: 2px solid #ffc533;
  z-index: 9;
}

.home-module-box .title {
  margin-top: 24px;
  font-family: var(--font-semibold);
  color: #ffeb99;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  text-align: center;
  transition: opacity 1s ease;
}

.home-module-box .hover-title {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  font-weight: var(--font-semibold);
  color: #1c1c25;
  opacity: 0;
  position: absolute;
  top: 23%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 2s ease;
  white-space: nowrap;
}

.home-module-box .hover-subtitle {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  color: #1c1c25;
  opacity: 0;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 1s ease;
  width: 90%;
  margin: 0;
  line-height: 1.1;
}

.home-benefit {
  background: linear-gradient(250deg, #040514 10%, #000000 40%);
}

.list-container .dot {
  height: 20px;
  width: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  margin-right: 20px;
  margin-top: 0px;
  border: 10px solid var(--primary-color);
}

.list-container .content {
  font-weight: 300;
  color: #e6e6e6 !important;
  font-size: 20px;
  font-weight: var(--font-semibold);
}

.footer-container {
  background: linear-gradient(135deg, #040514 100%, #191970 80%);
}

.highlightertext {
  color: #ffc961 !important;
}

footer .footer-mask {
  background-image: url("../images/bg-shapes/darkfooter-mask-polygon.svg");
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* about us page */
.about-us .mask-image {
  background-image: url("../images/service/darkMask.svg");
}

.about-us .contact-form-container .submit-btn {
  width: 70%;
  padding: 12px;
  background-color: var(--primary-color);
  border: none;
  color: #111111;
  font-size: 16px;
  border-radius: 11px;
  font-weight: var(--font-semibold);
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.about-us .contact-form-container .submit-btn:hover {
  background-color: var(--primary-btn-hover-color);
}

.about-us .certification {
  border: 1px solid #58441c !important;
  box-shadow: 0px 4px 4px 0px rgba(38, 115, 184, 0.1);
  padding: 16px 24px;
  border-radius: 16px;
  width: 190px;
  height: 151px;
  background: #0a0910 !important;
  color: #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificationColor {
  color: #e6e6e6;
}

.about-us .tab-container .tab-btns .tab-btn {
  position: relative;
  margin: 5px;
  padding: 7px 40px;
  border-radius: 15px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--text-color-deep);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.about-us .tab-container .tab-btns .tab-btn::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--text-color-deep);
  transition: background-color 0.3s ease;
}

.about-us .tab-container .tab-btns .tab-btn:hover::before {
  background-color: var(--primary-color);
}

.about-us .tab-container .tab-btns .tab-btn.active,
.about-us .tab-container .tab-btns .tab-btn:hover {
  background: var(--global-primary-color);
  color: black !important;
}

.about-us .tab-container .tab-content {
  background-color: transparent;
  border-radius: 55px;
  /* padding: 64px; */
  padding: 75px 64px;
  margin-top: 20px;
  box-shadow: 0px 0px 24px 0px #32272d;
  position: relative;
  margin-bottom: 100px;
  border: 1px solid #58441c !important;
  width: 80%;
  padding: min(10vh, 10rem);
}

.about-us .tab-container .apply-btn {
  background: var(--primary-color);
  color: black !important;
  border: 1px solid var(--primary-color);
  padding: 8px 50px;
  border-radius: 13px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0px 0px 24px 0px #2673b833;
  font-size: clamp(1rem, 0.9393203883495146rem + 0.2588996763754045vw, 1.25rem);
}

.about-us .tab-container .apply-btn:hover {
  background-color: #dbba66 !important;
}

.about-us .tab-container .tab-content h4 {
  background: linear-gradient(
    270deg,
    #ffa000 0%,
    #ee8700 51.31%,
    #ffc961 102.62%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-us .contact-form-container input[type="text"],
.about-us .contact-form-container input[type="email"],
.about-us .contact-form-container textarea {
  width: 100%;
  padding: 10px 50px;
  border: 1px solid #58441c !important;
  border-radius: 11px;
  color: #e6e6e6;
  background-color: transparent;
}

.about-us .contact-form-container input:focus {
  border-color: #ffc533 !important;
}

.about-us .contact-form-container textarea:focus {
  border-color: #ffc533 !important;
}

/* service page */
.service .btn {
  background-color: var(--primary-color);
  color: black !important;
  border: none;
  padding: 2% 10%;
  cursor: pointer;
  font-size: clamp(
    0.875rem,
    0.7839805825242718rem + 0.3883495145631068vw,
    1.25rem
  );
  font-weight: var(--font-semibold);
  border-radius: 15px;
  transition: background-color 0.3s ease;
}

.service .btn:hover {
  background-color: #dbba66 !important;
}

/* login page */
.verification-code-page .card button {
  border-radius: 11px;
  font-weight: var(--font-semibold);
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 200px;
  transition: background-color 0.3s ease;
}

.verification-code-page .card #code-input input {
  width: 70px;
  height: 70px;
  border-radius: 11px;
  border: var(--inactive-border);
  color: #e6e6e6;
}

.resendOtp {
  color: #ffc533 !important;
  background-color: #ffc533 !important;
}

.reset-password-page .reset-pass-form .submit-button {
  width: 100%;
  padding: 15px;
  background: #ffc533 !important;
  color: #111111;
  border: none;
  border-radius: 11px;
  font-size: 20px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
  font-weight: var(--font-semibold);
}

.reset-password-page .reset-pass-form input[type="text"],
.reset-password-page .reset-pass-form input[type="email"],
.reset-password-page .reset-pass-form input[type="password"] {
  width: 100%;
  padding: 16px 0px 16px 24px;
  margin: 8px 0 16px;
  border: 1px solid #58441c;
  border-radius: 11px;
  font-size: 14px;
  background-color: #070b31 !important;
  color: #e6e6e6;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 18px 0px 19px 24px;
  margin: 8px 0 16px;
  color: white !important;
  border: 1px solid #58441c;
  border-radius: 11px;
  font-size: 14px;
  background-color: #070b31 !important;
}

.login-form input:focus {
  background: var(--focus-input-bg-color);
  border: var(--active-border);
  color: white !important;
}

.login-form .submit-button {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: black !important;
  border: none;
  border-radius: 11px;
  font-size: 20px;
  cursor: pointer;
  margin-top: 40px;
  transition: background-color 0.3s;
  font-weight: var(--font-semibold);
}

.login-form .login-link {
  text-align: center;
  margin-top: 15px;
  /* font-family: var(--text-medium); */
  font-weight: var(--font-medium);
  font-size: 16px;
  color: #e6e6e6 !important;
}

.login-form input:-webkit-autofill {
  background-color: #070b31 !important;
  color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px #070b31 inset !important;
  -webkit-text-fill-color: white !important;
}

/* sign up */
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
  width: 100%;
  padding: 0.7rem 0px 0.7rem 1.5rem;
  margin: 0.5px 0 0.5rem;
  border: 1px solid #58441c;
  border-radius: 10px;
  font-size: 0.875rem;
  background-color: #070b31 !important;
  color: white !important;
}

.signup-form .login-link {
  margin-top: 24px;
  font-family: Gilroy;
  color: white !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.41px;
  text-align: center;
}

.signup-form label {
  color: #e6e6e6 !important;
  font-weight: var(--font-semibold);
  font-size: 0.75rem;
  font-size: clamp(0.45rem, 0.6893203883495146rem + 0.2588996763754045vw, 1rem);
}

.signup-form input:focus {
  background: var(--focus-input-bg-color);
  border: var(--active-border);
  color: white !important;
}

/* dark mode form bug fixed */
.signup-form input:-webkit-autofill {
  background-color: #070b31 !important;
  color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px #070b31 inset !important;
  -webkit-text-fill-color: white !important;
}

.signup-form .social-button {
  width: 100%;
  padding: 0.6rem 6.4rem;
  background-color: #070b31 !important;
  margin: 20px 0;
  border: var(--inactive-border);
  border-radius: 11px;
  cursor: pointer;
  color: #ffeb99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-medium);
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6893203883495146rem + 0.2588996763754045vw, 1rem);
  transition: background-color 0.3s ease;
}

.signup-form .submit-button {
  width: 100%;
  padding: 0.6rem 1.5rem 0.6rem 1.5rem;
  background: #d3b363 !important;
  color: black;
  border: none;
  border-radius: 11px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9393203883495146rem + 0.2588996763754045vw, 1.25rem);
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
  font-weight: var(--font-semibold);
}

.login-form .social-button {
  width: 100%;
  padding: 15px;
  background-color: #070b31 !important;
  margin: 20px 0;
  border: var(--inactive-border);
  border-radius: 11px;
  cursor: pointer;
  color: var(--global-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--text-medium);
  font-size: 16px;
}

/* get hired */
.get-hire-form input[type="text"],
.get-hire-form input[type="email"],
.get-hire-form input[type="password"],
.get-hire-form input[type="number"],
.get-hire-form input[type="date"],
.get-hire-form input[type="tel"],
.get-hire-form select {
  width: 100%;
  padding: 0.7rem 0px 0.7rem 1.5rem;
  margin: 0.5px 0 0.5rem;
  border: var(--inactive-border);
  border-radius: 10px;
  font-size: 0.875rem;
  background-color: #070b31 !important;
  color: white !important;
  /* background-color: var(--global-background-color); */
  color: var(--text-color-deep);
}

.get-hire .submit-button {
  width: 100%;
  padding: 15px;
  background: #d3b363 !important;
  color: black;
  border: none;
  border-radius: 11px;
  font-size: 20px;
  cursor: pointer;
  margin-top: 22px;
  font-weight: var(--font-semibold);
  transition: background-color 0.3s ease;
}

.get-hire-form input:focus {
  background: var(--focus-input-bg-color);
}

/* dark mode form bug fixed */
.get-hire-form input:-webkit-autofill {
  background-color: #070b31 !important;
  color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px #070b31 inset !important;
  -webkit-text-fill-color: white !important;
}

/* get hired */
.get-hire .selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: 0.7rem 0px 0.7rem 1.5rem;
  margin-top: 8px;
  margin-bottom: 16px;
  border: var(--inactive-border);
  border-radius: 11px;
  box-sizing: border-box;
  font-size: 14px;
  background-color: #070b31 !important;
  color: white !important;
}

.get-hire .dropdown-list {
  display: none;
  position: absolute;
  width: 530px;
  background-color: #070b31 !important;
  color: white !important;
  border: 1px solid var(--primary-color);
  border-top: none;
  border-radius: 0 0 11px 11px;
  z-index: 100;
  left: -0px;
}

.get-hire .dropdown-list li {
  padding: 12px;
  background-color: #070b31 !important;
  color: #e6e6e6 !important;
  border-bottom: 1px solid var(--primary-color);
  cursor: pointer;
  list-style-type: none;
}

.get-hire .dropdown-list li:hover {
  background: rgba(38, 115, 184, 0.1);
}

.get-hire .custom-file-upload {
  border: 1px solid var(--primary-color);
  background-color: #070b31 !important;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  width: 225px;
  transition: all 0.3s ease;
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.get-hire .terms label {
  margin-left: 5px;
  color: #e6e6e6 !important;
}

/* hire page */
.hire-page .search-bar {
  width: 100%;
  max-width: 704.6px;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid #ffeb99 !important;
  color: #e6e6e6 !important;
}

.hire-page input::placeholder {
  color: #e6e6e6 !important; /* placeholder text color */
  opacity: 1; /* for full visibility in Firefox */
}

.hire-page .search-btn {
  font-size: 16px;
  background-color: #ffeb99 !important;
  color: #111111;
  padding: 0 30px;
  margin: 2px;
  border: none;
  border-radius: 8px !important;
  transition: background-color 0.3s ease;
}

.hire-page .search-btn:hover {
  background-color: #ffeb99 !important;
}

.hire-page .profile-info {
  padding: 20px;
  background-color: #100d12;
  border: 1px solid #58441c !important;
  color: #e6e6e6 !important;
  margin-top: 5px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.hire-page .see-more-btn {
  margin-top: 44px;
  border: 1px solid #58441c !important;
  border-radius: 10px;
  background-color: #ffeb99 !important;
  color: #111111;
  padding: 10px 30px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.hire-page .see-more-btn:hover {
  background-color: #ffeb99 !important;
}

.hire-page .profile-btn {
  border: 1px solid #58441c !important;
  background-color: transparent;
  color: #ffc533 !important;
  white-space: nowrap;
  width: 129px;
  height: 44px;
  font-size: 16px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  font-weight: var(--font-medium);
}

.hire-page .profile-btn:hover {
  background-color: var(--secondary-btn-hover-color);
}

.hire-page .hire-btn {
  background-color: #ffc533;
  white-space: nowrap;
  color: black !important;
  width: 129px;
  height: 44px;
  font-size: 16px;
  border-radius: 10px;
  outline: none;
  border: none;
}

.hire-page .hire-btn:hover {
  background-color: var(--primary-btn-hover-color);
}

/* product page */
.section.product-page {
  background: linear-gradient(135deg, #040514 0%, #191970 10%, #040514 100%);
  padding-top: 100px;
}

.product-container .popup-content .product-info .content .button {
  padding: 3% 10%;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 14px;
  font-size: 20px;
  font-weight: var(--font-semibold);
  color: #111111 !important;
  transition: background-color 0.3s ease;
}

/* freelancher profile & my freelancher profile */
.free-profile-page .profile-details h2 {
  color: #e6e6e6;
  font-weight: var(--font-semibold);
  font-size: 16px;
  margin-bottom: 12px;
}

.free-profile-page .profile-details p {
  font-weight: var(--font-regular);
  color: #e6e6e6 !important;
  margin-bottom: 3px;
}

.profile-details .nav-tabs .nav-link.active {
  color: #ffeb99 !important;
  border-bottom: 3px solid #ffeb99;
}

.profile-details .nav-tabs .nav-link {
  white-space: nowrap;
  border: none;
  font-weight: 500;
  color: #e6e6e6 !important;
  background-color: transparent !important;
}

.free-profile-page .rating span {
  margin-left: 10px;
  font-size: 20px;
  color: #e6e6e6 !important;
  font-weight: var(--font-semibold);
}

.free-profile-page .book-appointment {
  background: #060823 !important;
  border-radius: 24px;
  text-align: center;
  width: 364px;
  height: 201px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.free-profile-page .book-appointment button {
  background-color: var(--primary-color);
  font-weight: var(--font-semibold);
  color: #111111 !important;
  padding: 12px 30px;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease;
}

.free-profile-page .book-appointment h4 {
  margin-top: 24px;
  font-size: 20px;
  margin-bottom: 16px;
  color: #e6e6e6 !important;
  font-weight: var(--font-semibold);
}

.free-profile-page .separator {
  border: 1px solid rgba(255, 185, 5, 0.4);
  height: 112px;
  margin-left: 24%;
}

.free-profile-page .reviewer-info .profile-separator3 {
  height: 112px;
  border: 1px solid rgba(255, 185, 5, 0.4);
}

.free-profile-page
  .reviewer-info
  .reviewer-profile-content
  .profile-separator1 {
  max-width: 739px;
  color: rgba(255, 185, 5, 0.4);
  margin-top: 10px;
  margin-bottom: 28px;
}

.free-profile-page
  .reviewer-info
  .reviewer-profile-content
  .profile-separator2 {
  max-width: 739px;
  color: rgba(255, 185, 5, 0.4);
  margin-top: 32px;
  margin-bottom: 32px;
}

.free-profile-page .reviewer-info .side-order {
  width: 365px;
  padding: 24px;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  border-radius: 20px;
}

.free-profile-page .book-appointment p {
  margin-top: 12px;
  font-size: 12px;
  color: #e6e6e6 !important;
  font-style: italic;
}

.free-profile-page .pagination-container .mx-3 {
  color: #e6e6e6 !important;
  padding: 0px 12px;
  border-left: 3px solid rgba(255, 185, 5, 0.4) !important;
  border-right: 3px solid rgba(255, 185, 5, 0.4) !important;
}

.free-profile-page .pagination-container #blogNextPageBtn {
  color: #e6e6e6 !important;
  font-weight: var(--font-semibold);
}

.free-profile-page .skills .skill-tag,
.free-profile-page .clients .client-logo {
  display: inline-block;
  padding: 10px 30px;
  margin-right: 20px;
  border-radius: 50px;
  background-color: #070b31;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  color: var(--text-color-deep);
  font-weight: var(--font-medium);
  text-align: center;
}

/* my freelancer profile */
.my-free-profile-page .skills .skill-tag,
.my-free-profile-page .clients .client-logo {
  display: inline-block;
  padding: 10px 30px;
  margin-right: 20px;
  border-radius: 50px;
  background-color: #070b31;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  color: var(--text-color-deep);
  font-weight: var(--font-medium);
  text-align: center;
}

.my-free-profile-page .pagination-container #blogNextPageBtn {
  color: #e6e6e6 !important;
  font-weight: var(--font-semibold);
}

.my-free-profile-page .pagination-container .mx-3 {
  color: #e6e6e6 !important;
  padding: 0px 12px;
  border-left: 3px solid rgba(255, 185, 5, 0.4) !important;
  border-right: 3px solid rgba(255, 185, 5, 0.4) !important;
}

.my-free-profile-page .reviewer-info .side-order {
  width: 365px;
  padding: 24px;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  border-radius: 20px;
}

.my-free-profile-page .book-appointment {
  background: #060823 !important;
  border-radius: 24px;
  text-align: center;
  width: 364px;
  height: 201px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.my-free-profile-page .book-appointment button {
  background-color: var(--primary-color);
  font-weight: var(--font-semibold);
  color: #111111 !important;
  padding: 12px 30px;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease;
}

.my-free-profile-page .profile-details p {
  font-weight: var(--font-regular);
  color: #e6e6e6 !important;
  margin-bottom: 3px;
}

.my-free-profile-page .completed-projects .review-badge.active {
  background: #0c114b !important;
}

/* book appointment */
.book-appointment-page .btn-book {
  background-color: var(--global-primary-color);
  color: #111111;
  border: none;
  border-radius: 10px;
  margin-top: 64px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 275px;
  height: 48px;
  white-space: nowrap;
}

.book-appointment-page .profile-details h2 {
  color: #e6e6e6;
  font-weight: var(--font-semibold);
  font-size: 16px;
  margin-bottom: 12px;
}

.book-appointment-page .profile-details p {
  font-weight: var(--font-regular);
  color: #e6e6e6;
  margin-bottom: 3px;
}

.book-appointment-page .profile-info .badge span {
  position: absolute;
  color: #111111;
  top: 133px;
  right: -135px;
  font-weight: var(--font-bold);
  font-size: 16px;
}

.book-appointment-page .rating span {
  margin-left: 10px;
  font-size: 20px;
  color: #e6e6e6;
  font-weight: var(--font-semibold);
}

.book-an-appointment-page .calendar,
.timeslot-section {
  background-color: var(--global-background-color);
  border-radius: 10px;
}

.book-appointment-page .calendar .weeks li {
  font-weight: var(--font-semibold);
  font-size: 12px;
  color: #ffc533 !important;
}

.book-appointment-page .days li.active {
  color: #111111 !important;
  background-color: #ffc533 !important;
  border: 1px solid var(--primary-color);
}

.book-appointment-page .calendar .days li {
  z-index: 1;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  color: #e6e6e6;
  padding-top: 5px;
  font-size: 12px;
  font-weight: var(--font-medium);
}

.book-appointment-page .calendar .days li:hover {
  background: #717171;
}

.book-appointment-page .days li.inactive {
  color: #aaa;
}

.book-an-appointment-page .timeslot-buttons .unavailable {
  background-color: #717171;
  border: none;
}

.book-appointment-page .days li.unavailable-date {
  background: #717171;
  z-index: 0;
}

.timeslot-section .timeslot-buttons button.unavailable:hover::after {
  content: "Unavailable";
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/tooltip.svg") no-repeat center;
  background-size: cover;
  color: #111111 !important;
  font-weight: var(--font-medium);
  font-size: 12px;
  width: 120px;
  height: 40px;
  text-align: center;
  line-height: 45px;
  z-index: 9999;
  pointer-events: none;
  overflow: visible;
  border-radius: 8px;
}

.book-appointment-page .calendar .days li.unavailable-date:hover::after {
  content: "Unavailable";
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/tooltip.svg") no-repeat center;
  background-size: cover;
  color: #111111 !important;
  font-weight: bold;
  width: 120px;
  height: 40px;
  text-align: center;
  line-height: 45px;
  z-index: 9999;
  pointer-events: none;
  overflow: visible;
  border-radius: 8px;
  font-weight: var(--font-medium);
  font-size: 12px;
}

.book-appointment-page .calender-timeshot-wrapper .calendar-separator {
  width: 1px;
  height: 204px;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
}

.book-appointment-page .timeslot-buttons button {
  margin: 10px;
  padding: 8px 32px;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  border-radius: 8px;
  cursor: pointer;
  color: #e6e6e6;
  border: 1px solid var(--light-border);
  background-color: #0c114b;
  width: 120px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.book-appointment-page .timeslot-buttons button:hover {
  background: #070b31;
  color: #ffc533;
  border: 1px solid #ffc533 !important;
}

.book-appointment-page .timeslot-buttons .available {
  background: #20297e;
  border: 1px solid var(--global-primary-color);
}
.book-appointment-page .timeslot-buttons .unavailable {
  background: #717171 !important;
  border: none;
}

/* payment method */
.payment-method-page .radio input[type="radio"] + .form-check-label:before {
  content: "";
  border-radius: 100%;
  border: 2px solid #ffc533 !important;
  display: inline-block;
  width: 48px;
  height: 48px;
  position: relative;
  top: -10px;
  margin-right: 16px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.payment-method-page input {
  background: transparent;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  padding: 10px 10px;
  color: #111111 !important;
  border-radius: 11px;
  font-size: 16px;
}

.payment-method-page .permission-are input[type="checkbox"]:checked {
  background-color: var(--global-primary-color);
}

.payment-method-page .btn-continue {
  background-color: #ffc533;
  color: black;
  padding: 15px;
  border-radius: 11px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: var(--font-semibold);
  border: none;
  margin-top: 53px;
  transition: background-color 0.3s ease;
}

.payment-method-page .form-tab-body label.card-name {
  color: #e6e6e6;
}

.payment-method-page .permission-are input[type="checkbox"]:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  font-size: 15px;
  color: #000000;
  display: none;
}

.payment-method-page
  .radio
  input[type="radio"]:focus
  + .form-check-label:before {
  outline: none;
  border-color: #111111 !important;
}

/* pricing */
.pricing-page .pricing-page-info p {
  margin: 19px 0 32px 0;
  font-weight: var(--font-regular);
  color: #e6e6e6;
}

.pricing-page .dropdown-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffc533;
  width: 150px;
  padding: 10px 15px;
  background-color: #070b31;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  border-radius: 8px;
  cursor: pointer;
}

.pricing-page .dropdown-button:focus {
  border: 1px solid #ffc533 !important;
  border-radius: 8px;
  box-shadow: none;
}

.pricing-page .dropdown-selected {
  font-size: 16px;
  color: #ffc533 !important;
}

.pricing-page .dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #070b31;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  border-radius: 8px;
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  z-index: 1000;
  overflow: hidden;
}

.pricing-page .dropdown-option {
  padding: 10px 15px;
  font-size: 16px;
  color: #ffc533 !important;
  cursor: pointer;
}

/* Default toggle appearance */
.pricing-page .form-switch .form-check-input {
  width: 51px;
  height: 31px;
  background-color: #070b31;
  color: white !important;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  border-radius: 34px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px 20px;
  transition: background-color 0.3s ease, background-position 0.3s ease;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* White thumb when unchecked (left) */
.pricing-page .form-switch .form-check-input::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 21px;
  height: 21px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Checked (right side) - active */
.pricing-page .form-switch .form-check-input:checked {
  background-color: var(--primary-color);
  background-position: right center;
}

/* Thumb moves right when checked */
.pricing-page .form-switch .form-check-input:checked::before {
  transform: translateX(20px);
  background-color: white;
}

.pricing-page .form-switch .form-check-input input[type="checkbox"] {
  color: white !important;
}

/* pricing card */
.pricing-page .pricing-card {
  background-color: rgba(7, 11, 49, 0.2); /* 0.2 = 20% opacity */
  border-radius: 30px;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  color: white !important;
  padding: 0px 22px 40px 22px;
  max-width: 300px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  text-align: left;
  transition: transform 0.6s ease, border-color 0.6s ease;
}

.pricing-page .pricing-card .btn-primary {
  background-color: var(--global-primary-color);
  border-color: var(--global-primary-color);
  color: black;
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 52px;
  /* transition: background-color 0.3s ease; */
}

.pricing-card .btn-primary:hover {
  background-color: none;
}

.pricing-card ul li {
  font-size: 14px;
  color: #e6e6e6;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-card ul li i {
  font-size: 14px;
  color: #e6e6e6;
}

.pricing-card .description {
  font-size: 16px;
  color: #ffeb99 !important;
  margin-bottom: 20px;
}

.pricing-page .pricing-card h5 {
  font-size: 20px;
  font-weight: var(--font-extrabold);
  margin: 40px 0 16px;
  color: #e6e6e6;
  font-style: italic;
}

.pricing-page .pricing-card .price {
  font-size: 48px;
  font-weight: var(--font-semibold);
  margin: 28px 0;
  color: #e6e6e6;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 12px;
}

.pricing-page .pricing-card .price small {
  font-size: 14px;
  color: white;
  font-weight: var(--font-regular);
}

.pricing-page .table-row button {
  margin: 44px 0 64px 0;
  font-weight: var(--font-semibold);
  font-size: 24px;
  color: #ffeb99 !important;
  background: none !important;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: underline;
}

.pricing-page .table-row button.get-btn {
  padding: 14px 32px;
  border-radius: 10px;
  background: #ffc533 !important;
  color: black !important;
  text-decoration: none;
  font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
  margin: 20% 0 0 0;
}

.pricing-page .table-row button.get-btn:hover {
  background-color: var(--primary-btn-hover-color);
}

.pricing-page .table-row .table-title {
  text-align: left;
  border-collapse: separate;
  color: #ffeb99 !important;
  padding: 0;
  max-width: 1640px !important;
  font-weight: var(--font-semibold);
  padding-left: 15px;
  font-size: clamp(
    0.875rem,
    0.7839805825242718rem + 0.3883495145631068vw,
    1.25rem
  );
}

.most-popular {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #ffeb99 !important;
  color: black !important;
  font-size: 14px;
  padding: 3px;
  border-radius: 30px 30px 0 0;
  text-align: center;
  font-weight: var(--font-semibold);
}

.pricing-page .pricing-card del {
  font-size: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
  font-weight: var(--font-light);
  color: white;
  margin-bottom: 10px;
}

.pricing-page .pricing-card .anually-bill {
  font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
  font-weight: var(--font-medium);
  color: white;
}

.pricing-card .divider-first {
  border-top: 1px solid rgba(255, 185, 5, 0.4) !important;
  margin: 20px 0;
}

.pricing-card .divider {
  border-top: 1px solid rgba(255, 185, 5, 0.4) !important;
  margin: 20px 0;
}

/* role & company */
.employee-card {
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #070b31;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  display: inline-block;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 300;
  color: #e6e6e6 !important;
  margin-bottom: 0.1rem;
  display: block;
}

.role-company-page .tab-container .tab-box .tab-btn {
  font-size: 18px;
  color: #e6e6e6;
  background-color: transparent;
  outline: none;
  border: none;
  padding: 10px;
  font-weight: var(--font-semibold);
  transition: background-color 0.3s ease;
}

.role-company-page .tab-container .tab-box .tab-btn.active {
  color: #ffc533;
}

.role-company-page .tab-container .tab-box .line {
  position: absolute;
  /* top: 42px; */
  bottom: 0px;
  left: 6px;
  width: auto;
  height: 5px;
  background-color: #ffc533;
  transition: all 0.3s ease-in-out;
}

.role-company-page .tab-container .tab-box {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 185, 5, 0.4) !important;
  position: relative;
  margin: 0 auto;
}

.role-company-page
  .tab-container
  .content-box
  .content
  .buttons
  .button.create-btn {
  background-color: var(--primary-color);
  color: black;
}

.role-company-page
  .tab-container
  .content-box
  .content
  .buttons
  .button.app-btn {
  background-color: #0c114b !important;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  color: #e6e6e6;
  transition: background-color 0.3s ease;
}

.role-company-page
  .tab-container
  .content-box
  .content
  .buttons
  .button.app-btn
  i {
  color: #e6e6e6 !important;
}

.role-company-page .tab-container .content-box .content .links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  position: absolute;
  top: 455px;
  background-color: #0c114b !important;
  flex-wrap: wrap;
}

.role-company-page .tab-container .content-box .content .links .link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 185, 5, 0.4);
  padding: 6px 12px;
  cursor: pointer;
  white-space: nowrap;
}

.role-company-page .tab-container .content-box .content .links .link i {
  font-size: 20px;
  padding: 0 5px;
}

.role-company-page .tab-container .content-box .content .links .link.active {
  color: #e6e6e6;
}

.process-container .database-conf h3 {
  color: #e6e6e6;
  font-weight: var(--font-medium);
  margin-bottom: 20px;
  font-size: 19px;
}

.process-container .database-conf label {
  color: #e6e6e6;
}

.creating-company-page .side-bar {
  border: 1px solid rgba(255, 185, 5, 0.4);
  background: #070b31;
  border-radius: 50px;
  padding: 50px;
  width: 27rem;
}

.process-container .stage-icon.complete {
  background-color: var(--primary-color);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23000000" d="M9 16.2l-3.5-3.5L4.1 14l5 5L20.3 7.8l-1.4-1.4L9 16.2z"/></svg>');

  background-size: 15px 15px;
  background-position: center;
  background-repeat: no-repeat;
}

.creating-company-page .side-bar hr {
  color: rgba(255, 185, 5, 0.4);
  margin: 10px 0px;
}

.creating-company-page .side-bar .form-control {
  display: block;
  width: 100%;
  padding: 0;
  font-size: 1rem;
  font-weight: var(--font-medium);
  line-height: 1.5;
  color: #e6e6e6 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 0.875rem;
  font-size: 0.8rem;
  background: transparent;
  border: none;
  border-radius: 0;
}

.creating-company-page .side-bar select.form-control {
  background-color: #070b31 !important;
  color: #e6e6e6;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.5rem;
}

.creating-company-page .side-bar .form-control::placeholder {
  color: #e6e6e6 !important;
  opacity: 1;
}

.progress-container .skill-box .skill-bar {
  height: 7px;
  width: 100%;
  border-radius: 6px;
  margin-top: 6px;
  background: rgba(255, 185, 5, 0.4);
}

.role-company-page .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: -2px 0px 4px 0px #ffc533;
  color: var(--text-color-deep);
}
.role-company-page .swiper-button-prev {
  width: 44px;
  height: 44px;
  box-shadow: 2px 0px 4px 0px #ffc533;
  border-radius: 50%;
  color: var(--text-color-deep);
}

.role-company-page .tab-container .content-box .content .card {
  height: 350px;
  padding: 10px;
  background: rgba(255, 197, 51, 0.3);
  backdrop-filter: blur(20px); /* Adjust blur radius as needed */
  -webkit-backdrop-filter: blur(20px);
  color: #000000;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: -10px 14px 24px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 185, 5, 0.4);
}

/* working */
.role-company-page .tab-container .content-box .content .card h2 {
  font-size: 1.4em;
  margin: 0;
  color: #000000;
  font-weight: var(--font-semibold);
}

.role-company-page .tab-container .content-box .content .card .role {
  color: #000000;
  margin: 5px 0;
  font-size: 0.8rem;
  font-weight: #000000;
}

.role-company-page .tab-container .content-box .content .card p {
  font-size: 0.7em;
  color: var(--text-color-deep);
  line-height: 1.5;
  margin: 10px 0;
}

/* faq page */
.faq-page #search-btn {
  border: none;
  background: #ffeb99 !important;
  color: #111111;
  font-size: 16px;
  padding: 10px 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-page #search-btn:hover {
  background-color: #ffeb99;
}

.category-section h2 {
  font-size: 24px;
  font-weight: var(--font-semibold);
  margin-bottom: 24px;
  color: #e6e6e6;
}

.topic-item {
  background-color: #070b31 !important;
  border: 1px solid rgba(255, 185, 5, 0.4);
  border-radius: 20px;
  text-align: center;
  padding: 25px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 152px;
  height: 120px;
}

.faq-page .accordion-container {
  max-width: 680px;
  padding: 44px 40px;
  border: 1px solid rgba(255, 185, 5, 0.4);
  border-radius: 25px;
  box-sizing: border-box;
  background-color: #070b31 !important;
}

.faq-page .accordion-container p.open-description {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 185, 5, 0.4);
  font-weight: var(--font-regular);
  color: #e6e6e6 !important;
}

.faq-page .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(255, 185, 5, 0.4) !important;
  margin-bottom: 32px;
  background-color: #070b31 !important;
  outline: none;
  margin-top: 32px;
  padding-bottom: 18px;
}

.faq-page .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
  padding-left: 20px;
  margin: 10px 0;
  border-left: 8px solid rgba(255, 185, 5, 0.4) !important;
  font-size: 16px;
  position: relative;
}

.faq-page .accordion-header h3 {
  font-size: 20px;
  margin: 0;
  font-weight: var(--font-medium);
  color: #e6e6e6;
}

.faq-page .accordion-item.active .arrow {
  transform: rotate(180deg);
  color: #e6e6e6;
}

.faq-page .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: #e6e6e6;
}

.faq-page .accordion-content p {
  direction: ltr;
  margin: 0;
  padding: 10px 0;
  color: #e6e6e6;
}

.category-list li a {
  text-decoration: none;
  color: #e6e6e6;
  font-size: 14px;
  transition: color 0.3s;
  font-weight: var(--font-medium);
}

.faq-page #search-input {
  flex-grow: 1;
  border: none;
  outline: none;
  padding: 10px 24px;
  font-size: 16px;
  color: #e6e6e6;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #0a0910;
  font-weight: var(--font-medium);
}

.faq-page #search-input::placeholder {
  color: #e6e6e6;
}

.send-button {
  background-color: #ffc533 !important;
  font-weight: var(--font-semibold);
  color: #000000;
  padding: 8px 30px;
  border-radius: 10px;
  border: none;
  font-size: 12px;
}

.send-button:hover {
  color: #000000 !important;
}

/* blog page */
.blog-page .search-bar {
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  width: 410px;
}

.blog-page .search-bar input {
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: var(--font-medium);
  color: #e6e6e6;
  border: none;
  background-color: #0a0910 !important;
}

.blog-page .search-bar input:focus {
  background-color: none !important;
  border: none;
}

.blog-page .search-bar input::placeholder {
  color: #e6e6e6;
}

.blog-page .search-btn {
  font-size: 16px;
  background-color: #ffc533 !important;
  color: #111111 !important;
  border: none !important;
  border-radius: 7px !important;
  margin: 2px;
  transition: background-color 0.3s ease;
}

.blog-page .search-btn:hover {
  background-color: #ffc533 !important;
}

.blog-page .blog-container .all-tabs .btn {
  font-size: 20px;
  color: #e6e6e6 !important;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  padding: 7px 40px 7px 40px;
  border-radius: 10px;
  font-weight: var(--font-medium);
  background-color: #070b31 !important;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.blog-page .blog-container .all-tabs .btn.active {
  background: #070b31 !important;
  border: 1px solid #ffc533 !important;
  color: #ffc533 !important;
}

.blog-page .blog-container .all-tabs .search-btn {
  padding: 7px 30px 7px 30px;
  border-radius: 10px;
  font-size: 16px;
  background: #ffeb99 !important;
  color: #111111 !important;
  border: none !important;
  border-radius: 7px !important;
  margin: 2px;
  transition: background-color 0.3s ease;
}

.blog-page .blog-container .all-tabs .search-btn:hover {
  background-color: #ffeb99;
}

.blog-page .card {
  border: none;
  border-radius: 20px;
  background-color: #070b31;
  border: 1px solid rgba(255, 185, 5, 0.4) !important;
  overflow: hidden;
}

.blog-page div#blogSection .card-text {
  font-weight: var(--font-regular);
  margin-top: 20px;
  margin-bottom: 14px;
  color: #e6e6e6;
}

.blog-page div#blogSection .card-title {
  color: #e6e6e6;
}

.blog-page div#blogSection .card-body .feature-block-btn-text p {
  font-weight: var(--font-semibold);
  color: #e6e6e6;
}

.blog-page div#blogSection .card-body .feature-block-btn-text a {
  font-weight: var(--font-semibold);
  text-decoration: underline;
  color: #ffc533;
}

.blog-page .blog-row .recent-blog-title {
  font-size: 24px;
  font-weight: var(--font-semibold);
  margin-bottom: 24px;
  color: #ffeb99;
}

.blog-page .recent-blogs .blog-title a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 20px;
  font-weight: var(--font-semibold);
}

.blog-page .recent-blogs .blog-title a:hover {
  text-decoration: underline;
}

.blog-page .recent-blogs .blog-divider {
  background-color: rgba(255, 185, 5, 0.4) !important;
}

.blog-page #additionalBlogs .card .card-title {
  font-weight: var(--font-semibold);
  font-size: 16px;
  color: #e6e6e6 !important;
}

.blog-page #additionalBlogs .card .card-title {
  font-weight: var(--font-semibold);
  font-size: 16px;
  color: #717171;
}

.blog-page #additionalBlogs .card-body a {
  font-size: 14px;
  font-weight: var(--font-semibold);
  color: #ffeb99;
  margin-top: 32px;
  text-decoration: underline;
}

.blog-page .pagination-container .page-info {
  font-size: 20px;
  font-weight: var(--font-regular);
  color: #e6e6e6;
}

.blog-page .pagination-container .mx-3 {
  padding: 0px 12px;
  border-left: 3px solid rgba(255, 185, 5, 0.4);
  border-right: 3px solid rgba(255, 185, 5, 0.4);
}

.blog-page .pagination-container #blogNextPageBtn {
  color: #e6e6e6;
  font-weight: var(--font-semibold);
}

/* single blog */
.single-blog-page .swiper-navBtn {
  color: var(--text-color-deep);
  transition: color 0.3s ease;
  box-shadow: 2px 0px 4px 0px #ffc533;
}

.single-blog-page .card-content {
  text-align: left;
  border: 1px solid rgba(255, 185, 5, 0.4);
  padding: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #070b31 !important;
}

.single-blog-page .name {
  font-weight: var(--font-semibold);
  color: #e6e6e6;
  font-size: 16px;
}

.single-blog-page .description {
  font-weight: var(--font-regular);
  color: #717171;
  margin-top: 12px;
}

.single-blog-page .button {
  text-decoration: underline;
  font-weight: var(--font-semibold);
  font-size: 14px;
  margin-top: 32px;
  transition: background-color 0.3s ease;
  color: #ffc533;
}

.single-blog-page .button:hover {
  color: #ffc533;
}

.single-blog-page .right-side-nav {
  max-width: 270px;
  background-color: #070b31;
  border-radius: 20px;
  border: 1px solid rgba(255, 185, 5, 0.4);
  padding: 40px 0px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  margin-top: 38px;
}
