@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  --theme-color1: #003235;
  --theme-color2: #f77f50;
  --primary-color: #008080;
  --dark-color: #1a2a3a;
}

body {
  font-family: "Outfit", sans-serif !important;
}

a {
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
}

ul li {
  list-style: none;
}

.section-pd {
  padding-top: 80px;
  padding-bottom: 80px;
}

.custom-btn {
  padding: 11px 19px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  min-width: 100px;
  text-align: center;
  text-wrap: nowrap;
}

.btn-theme {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  display: inline-flex;
}

.btn-theme:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-white {
  color: var(--dark-color);
  background-color: #fff;
  border: 1px solid #fff;
}

.btn-white:hover {
  background-color: transparent;
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.btn-bd-theme {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-bd-theme:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}

.section-title h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.section-title h2 span {
  position: relative;
  z-index: 1;
}

.section-title h2 span::before {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 160px;
  height: 60px;
  background-color: rgba(188, 252, 220, 1);
  border-radius: 20px;
  z-index: -1;
  width: 100%;
  padding: 0 11px;
}

.section-title p {
  font-size: 14px;
  line-height: 30px;
  margin: 0;
  color: rgba(26, 42, 58, 0.56);
  font-weight: 400;
}

section {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* =============== HEADER CSS STARTS HERE =============== */

.header-card {
  padding: 20px 0;
}

.header-card .nav-item a {
  margin-right: 30px;
  font-size: 13px;
  color: var(--dark-color) !important;
  font-weight: 500;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.header-card .nav-item a:hover,
.header-card .nav-item a.active {
  color: var(--primary-color) !important;
}

.header-card .nav-item:last-child a {
  margin: 0;
}

.header-logo img {
  width: 183px;
}

.header-rt-card .menu-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  color: #fff;
  background: var(--primary-color);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  border: 0;
}

.header-card.fixed-header {
  position: fixed;
  inset-inline-start: 0;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(24px);
  animation: slideDown 0.35s ease-out;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* =============== HEADER CSS ENDS HERE =============== */

/* =============== BANNER CSS STARTS HERE =============== */

.banner-sec {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #f4f4f4;
  padding: 40px 0;
}

.banner-sec .banner-inr {
  background: #fff;
  padding: 30px 40px;
  border-radius: 46px;
  position: relative;
  margin: 0;
  z-index: 1;
}

.banner-sec .banner-inr .bnr-shape {
  padding-bottom: 120px;
  z-index: -1;
  width: 100%;
  bottom: 0;
  position: absolute;
}

.banner-cont {
  position: relative;
}

.banner-cont .text-heading {
  font-size: 60px;
  line-height: 78px;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 30px;
  position: relative;
}

.banner-cont .text-heading .shape1 {
  position: absolute;
  right: 10px;
  bottom: 0;
}

.banner-cont .text-heading span {
  font-weight: 700;
}

.banner-cont .text-heading span::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -17px;
  background-image: url("../img/heading-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 610px;
  height: 161px;
  z-index: -1;
}

.banner-cont p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(26, 42, 58, 0.56);
  padding-right: 30px;
}

.banner-cont .para-card {
  width: 100%;
  height: auto;
  background-image: url("../img/para-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px 20px 40px 30px;
  overflow: hidden;
}

.banner-cont .para-card h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--dark-color);
}

.banner-cont .para-card p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
}

.banner-cont .para-card a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--dark-color);
}

.banner-img {
  position: relative;
  z-index: 0;
}

.banner-img a {
  position: absolute;
  bottom: 0;
  top: auto;
  left: auto;
  right: 0;
  min-width: 210px;
}

.banner-img .badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
}

.banner-img .badges .badge1 {
  animation: bounce-y 10s infinite linear;
}

.banner-img .badges .badge2 {
  animation: bounce-y1 10s infinite linear;
}

.banner-img-btm {
  width: 100%;
  height: auto;
  border-radius: 46px;
  padding: 40px 40px;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: var(--dark-color);
  margin-top: 20px;
}

.banner-img-btm::before {
  content: "";
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  width: 662px;
  height: 180px;
  background-image: url("../img/banner-img-btm-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.banner-img-btm ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px !important;
}

.banner-img-btm h4 {
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  text-align: center;
  margin: 0;
  color: #fff;
}

.banner-img-btm h4 span {
  font-weight: 700;
}

@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
  }
}

@keyframes bounce-y1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
  }
}

/* =============== BANNER CSS ENDS HERE =============== */

/* =============== ABOUT CSS STARTS HERE =============== */

.about-area {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #fff;
}

.about-area .abt-inr-bx {
  width: 100%;
  height: calc(100% - 30px);
  margin-top: 30px;
  background: #fff;
  border: 1px solid rgba(0, 128, 128, 0.15);
  border-radius: 22px;
  padding: 28px;
  transition: all 0.4s ease-in-out;
}

.about-area .abt-inr-bx:hover {
  transform: translateY(-10px);
}

.about-area .abt-inr-bx .icon {
  display: block;
  margin-bottom: 20px;
}

.about-area .abt-inr-bx h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.about-area .abt-inr-bx p {
  font-size: 16px;
  margin: 0;
  line-height: 26px;
  color: rgba(26, 42, 58, 0.56);
  font-weight: 400;
}

/* =============== ABOUT CSS ENDS HERE =============== */

/* =============== WHY BKTRACK CSS STARTS HERE =============== */

.why-bk {
  background: #f4f4f4;
}

.why-bk .why-cont {
  padding-left: 300px;
}

.why-bk .why-cont .section-title h2 span::before {
  right: -6px;
  min-width: 190px;
}

.why-bk .slide-bx {
  width: 100%;
  height: auto;
  border-radius: 40px;
  padding: 20px;
  background-color: #fff;
}

.why-bk .slide-bx .img-bx {
  width: 100%;
  height: 300px;
}

.why-bk .slide-bx .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-bk .slide-bx .cont {
  padding-top: 20px;
}

.why-bk .slide-bx h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.why-bk .slide-bx p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  color: rgba(26, 42, 58, 0.56);
}

.why-bk .swiper-button-prev,
.why-bk .swiper-button-next {
  background-color: #fff;
  color: var(--dark-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.why-bk .swiper-button-prev::after,
.why-bk .swiper-button-next::after {
  display: none;
}

.why-bk .swiper-button-prev {
  left: 10px;
}

.why-bk .swiper-button-next {
  right: 80px;
}

.why-bk .swiper-button-prev i,
.why-bk .swiper-button-next i {
  font-size: 18px;
}

/* =============== WHY BKTRACK CSS ENDS HERE =============== */

/* =============== CTA CSS STARTS HERE =============== */

.cta {
  background-color: #f4f4f4;
}

.cta .cta-inr {
  width: 100%;
  height: auto;
  background-image: url("../img/cta-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px 50px 90px;
}

.cta .cta-inr::before {
  content: "";
  position: absolute;
  width: 1224px;
  height: 428px;
  background-image: url("../img/cta-bg-shape.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.cta .cta-cont .section-title h2::before {
  display: none;
}

.cta-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.cta-img img {
  width: 90%;
  max-width: 100%;
}

/* =============== CTA CSS ENDS HERE =============== */

/* =============== ROLE AREA CSS STARTS HERE =============== */

.role-area {
  background-color: #f4f4f4;
}

.role-area .role-inr {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 45px;
  padding: 40px;
}

.role-area .role-inr .role-left .section-title h2::before {
  display: none;
}

.role-area .role-inr .role-left .role-bx {
  width: 100%;
  height: calc(100% - 20px);
  padding: 18px 27px;
  border: 1px solid rgba(0, 128, 128, 0.15);
  border-radius: 22px;
  margin-top: 20px;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}

.role-area .role-inr .role-left .role-bx h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.role-area .role-inr .role-left .role-bx p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  color: rgba(26, 42, 58, 0.56);
  margin: 0;
}

.role-area .role-inr .role-left .role-bx:hover {
  background-color: rgba(238, 255, 252, 1);
}

.role-area .role-inr .role-right img {
  transition: opacity 0.4s ease-in-out;
}

/* =============== ROLE AREA CSS ENDS HERE =============== */

/* =============== INSIGHT AREA CSS STARTS HERE =============== */

.insight-area {
  background-color: #fff;
}

.insight-area .insight-cont .section-title h2 span {
  padding: 0 8px;
}

.insight-area .insight-cont .section-title h2 span::before {
  top: 0;
  right: 0px;
}

.insight-area .insight-list li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  color: var(--dark-color);
}

.insight-area .insight-list li:last-child {
  margin-bottom: 0;
}

/* =============== INSIGHT AREA CSS ENDS HERE =============== */

/* =============== PROMISE AREA CSS STARTS HERE =============== */

.promise-area {
  background-color: #f4f4f4;
}

.promise-area .promise-box {
  width: 100%;
  height: auto;
  background-color: transparent;
  border-radius: 22px;
}

.promise-area .promise-box .img-bx {
  width: 100%;
  height: 385px;
  border-radius: 22px;
}

.promise-area .promise-box .img-bx img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.promise-area .promise-box .cont {
  padding: 20px 0;
  position: relative;
}

.promise-area .promise-box .cont h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.promise-area .promise-box .cont p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28xp;
  letter-spacing: 0px;
  margin: 0;
  color: rgba(26, 42, 58, 0.56);
}

.promise-area .promise-box .cont .quote-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: -30px;
  border-radius: 50%;
  background-color: var(--theme-color2);
  color: #fff;
}

.promise-area .swiper {
  padding-bottom: 40px;
}

.promise-area .swiper-pagination {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  bottom: 0;
}

.promise-area .swiper-pagination-bullet {
  width: 36px !important;
  height: 14px;
  opacity: 0.5;
  transition: width 0.3s ease, opacity 0.3s ease;
  border-radius: 10px;
  background: rgba(107, 107, 113, 1);
  margin: 0 3px;
}

.promise-area .swiper-pagination-bullet-active-main {
  width: 55px !important;
  height: 14px;
  opacity: 1;
  border-radius: 10px;
  background: var(--primary-color);
}

.promise-area .swiper-pagination-bullet-active-prev-prev,
.promise-area .swiper-pagination-bullet-active-next-next {
  opacity: 0;
}

/* =============== PROMISE AREA AREA CSS ENDS HERE =============== */

/* =============== FOOTER CSS STARTS HERE =============== */

.footer-section {
  background: var(--theme-color1);
  padding: 80px 0 80px;
}

.footer-section .ftr-box h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  margin: 25px 0;
  color: #fff;
}

.footer-section .ftr-box h3 span {
  font-weight: 700;
}

.ftr-bottom {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.ftr-bottom .lft {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 40px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.ftr-bottom .lft h6 {
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.ftr-bottom .lft li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ftr-bottom .lft a {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.ftr-bottom .lft a:hover {
  text-decoration: underline !important;
  color: var(--theme-color2);
}

.ftr-bottom .rght {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 60px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.ftr-bottom .rght p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

.ftr-bottom .rght a {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.ftr-bottom .rght a:hover {
  text-decoration: underline !important;
  color: var(--theme-color2);
}

/* =============== FOOTER CSS ENDS HERE =============== */

.nav-mobile .offcanvas-header {
  border-bottom: 1px solid #ccc;
  background: var(--primary-color);
  color: #fff !important;
}

.side-link-list {
  padding: 0;
}

.side-link-list li {
  border-bottom: 1px solid #ececec;
}

.side-link-list li a {
  padding: 12px 14px;
  display: flex;
  font-size: 18px;
  color: #222;
  align-items: center;
  width: 100%;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.side-link-list li a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-size: 24px;
  color: var(--primary-color);
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1520px) {
  .why-bk .why-cont {
    padding-left: 60px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-title h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .section-title p {
    font-size: 14px;
    line-height: 26px;
  }

  .header-logo img {
    width: 190px;
  }

  .section-pd {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer-section .ftr-box.bx1 p {
    font-size: 14px;
    line-height: 28px;
  }

  .footer-section {
    padding: 50px 0 50px;
  }
}

@media (max-width: 991px) {
  .section-pd {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-section {
    padding: 40px 0 40px;
  }

  .banner-cont .para-card {
    display: none;
  }

  .abt-cont {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .banner-cont .text-heading {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 10px;
  }

  .section-title h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .section-title p {
    font-size: 14px;
    line-height: 26px;
  }
}

@media (max-width: 575px) {
  .banner-sec .banner-inr {
    margin: 0 10px;
    padding: 40px 0 50px;
  }

  .banner-cont .text-heading {
    font-size: 30px;
    line-height: 50px;
  }

  .section-title h2 span::before {
    top: -2px;
    right: -6px;
    min-width: max-content;
    height: 40px;
    border-radius: 10px;
    width: 110%;
    padding: 0 10px;
  }
}

.form-check-input {
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: #008080;
  border-color: #008080;
}
