/*Common Css*/
body {
      font-family: 'Inter', sans-serif;
    }
.h1,
h1 {
  font-size: 52px;
  font-weight: 600;
  color: #272727;
  line-height: 1;
}
h2 {
  font-size: 36px;
  font-weight: 600;
  color: #272727;
}

p {
  color: #383535;
  font-weight: 400;
}

.hed-1 {
  font-size: 26px;
  font-weight: 600;
  color: #272727;
}
.com-btn {
  background-color: #dc1436;
  border-radius: 200px 200px 200px 200px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  padding: 12px 24px;
  fill: #fff;
  text-align: center;
  transition: all 0.3s;
  font-weight: 500;
}
.com-btn:hover {
    border: 2px solid #dc3545;
}
.com-btn-white {
  background-color: white;
  border-radius: 200px 200px 200px 200px;
  color: #dc1436;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  padding: 12px 24px;
  fill: #dc1436;
  text-align: center;
  transition: all 0.3s;
  font-weight: 500;
}
.com-btn-white:hover{
   border: 2px solid #dc3545;  
}


.clr-pink {
  color: #dc1436;
}
.clr-pink-hero{
      color: #dc1436;
      font-weight:300;
}
.pg-nm {
    font-weight: 600;
    color: grey;
}
.ilink{
    text-decoration:none!important;
    color:#dc3545;
}
/*Common Css*/


/*navbar*/
/* =========================
   Bootstrap-free navbar CSS
   ========================= */

/* --- Variables --- */
:root{
  --nb-red: #dc3545;
  --nb-body: #212529;
  --nb-white: #ffffff;
  --nb-shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
  --nb-link: #000;
}

/* --- Layout containers --- */
.nb-container{
  width:100%;
  margin-left:auto;
  margin-right:auto;
  padding-left:12px;
  padding-right:12px;
}
@media (min-width:576px){ .nb-container{ max-width:540px; } }
@media (min-width:768px){ .nb-container{ max-width:720px; } }
@media (min-width:992px){ .nb-container{ max-width:960px; } }
@media (min-width:1200px){ .nb-container{ max-width:1140px; } }
@media (min-width:1400px){ .nb-container{ max-width:1320px; } }

.nb-container-fluid{ width:100%; padding-left:0; padding-right:0; }

/* Spacing utilities used */
.nb-px-5{ padding-left:3rem; padding-right:3rem; }
.nb-py-2{ padding-top:.5rem; padding-bottom:.5rem; }
.nb-gap-2{ gap:.5rem; }
.nb-ms-auto{ margin-left:auto; }
@media (min-width:992px){ .nb-ms-lg-3{ margin-left:1rem; } }
.nb-d-flex{ display:flex; }
.nb-justify-content-center{ justify-content:center; }
@media (min-width:992px){ .nb-align-items-lg-center{ align-items:center; } }

/* --- Navbar shell --- */
.nb-nav-item:hover .nb-nav-link {
    color:#dc1436;
}
.nb-navbar{
  position:relative;
  z-index:1100;
  background:var(--nb-white);
  box-shadow:var(--nb-shadow-sm);
  padding:1rem 0;
}
.nb-navbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Brand */
.nb-brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  color:var(--nb-red);
  font-weight:700; /* fw-bold */
}

/* Toggler (hamburger) */
.nb-toggler{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:38px;
  padding:.25rem .75rem;
  border:1px solid rgba(0,0,0,.1);
  border-radius:.25rem;
  background:transparent;
  cursor:pointer;
}
.nb-toggler-icon{
  display:inline-block;
  width:1.5em;
  height:1.5em;
  background-repeat:no-repeat;
  background-position:center;
  background-size:100% 100%;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.55%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nb-dropdown-item:hover .hed-icn-h {
  color: #dc1436;
}
/* Collapse */
.nb-collapse{
  flex-basis:100%;
  flex-grow:1;
  display:none;           /* hidden on mobile until toggled */
}
.nb-collapse.is-open{ display:block; }

@media (min-width:992px){
  .nb-toggler{ display:none; }      /* hide burger on lg+ */
  .nb-collapse{
    display:flex !important;        /* show nav on lg+ */
    align-items:center;
    justify-content:flex-end;
  }
}

/* Nav list + items */
.nb-nav{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
}
@media (min-width:992px){
  .nb-nav{ flex-direction:row; }
}
.nb-nav-item{ position:relative; }
.nb-nav-link {
    display: block;
   padding: 8px 10px;
    text-decoration: none;
    color: grey;
    font-weight: 500;
    font-size: 14px;
}

.nb-nav-link.active{ color:var(--nb-red); font-weight:700; }

/* Dropdown basics */
.nb-position-static{ position:static; }
.nb-dropdown-toggle::after{
  display:inline-block;
  margin-left:.255em;
  vertical-align:.255em;
  content:"";
  border-top:.3em solid;
  border-right:.3em solid transparent;
  border-left:.3em solid transparent;
}

/* Dropdown menu (mega) */
.nb-dropdown-menu{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  margin:0;
  padding:1.5rem 0;
  background:#fff;
  border:1px solid rgba(0,0,0,.15);
  border-radius:0;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  display:none;
}
.nb-dropdown-menu.show{ display:block; }

 
  @media (max-width: 991.98px) {
      .icn-box {
    height: 55px!important;
    width:55px!important;
}

      .hed-icn-box img {
    max-width: 80%!important;
}
      .nb-px-5{
          padding-left:2rem;
          padding-right:2rem;
      }
      .inr-row:not(:last-child)::after{
          display:none;
      }
      .nb-col-4{
          max-width:33.33333333%;
      }
      
      .nb-col-8{
          max-width:66.66666667%;
      }
      
      .nb-dropdown-menu.nb-mega-menu .inr-row {
    flex: 0 0 50%;   /* 2 per row */
    max-width: 50%;
    margin-bottom: 15px;
  }
       .nb-dropdown-menu{
    position:static;
    width:auto;
    left:auto;
    transform:none;
  }
  .nb-navbar-inner {
    flex-wrap: wrap; /* allow wrapping */
  }

  .nb-collapse {
    width: 100%;
    margin-top: 10px; /* small spacing below toggler */
  }

  .nb-nav {
    flex-direction: column; /* stack vertically */
    align-items: flex-start; /* align left */
  }

  .nb-nav-link {
    width: 100%;
    padding: 10px 15px;
  }
}

/* Mega menu grid (Bootstrap-like) */
.nb-row{
  display:flex;
  flex-wrap:wrap;
  margin-left:-.75rem;
  margin-right:-.75rem;
}
.nb-col{ padding-left:.75rem; padding-right:.75rem; width:100%; }

/* Column widths used in your markup */
@media (min-width:992px){
  .nb-col-lg-2{ width:16.6667%; }
  .nb-col-lg-3{ width:25%; }
  .nb-col-lg-10{ width:83.3333%; }
  .nb-col-lg-11{ width:91.6667%; }
}

/* Mega-menu inner column borders/paddings (Bootstrap parity with your CSS) */
.nb-mega-menu .nb-col > h6{ margin-bottom:.6rem; }


/* Dropdown item */
.nb-dropdown-item{
  display:block;
  padding:0; /* you set 0 in your CSS */
  color:inherit;
  text-decoration:none;
}

/* Buttons */
.nb-btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 5px 18px;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    margin-right: 8px;
}


.nb-btn-danger{
  color:#fff;
  background-color:var(--nb-red);
  border-color:var(--nb-red);
}
.nb-btn-outline-danger{
  color:var(--nb-red);
  background-color:transparent;
  border-color:var(--nb-red);
}

/* ====== Your original custom styles (kept as-is) ====== */
.icn-box{
  background:#FFEBEF;
  justify-content:center;
  display:flex;
  align-items:center;
  border-radius:50%;
  height:45px;
  width:45px;
}
.hed-icn-box{ text-wrap:auto; display:flex; align-items:center; }
.hed-icn-box img{ max-width:100%; }
.hed-icn-h{ margin-bottom:0; font-size:15px; line-height:22px; font-weight:600; }
.hed-icn-p{ margin-bottom:0; font-size:11px; color:black;}

.cust-col{ max-width:20% !important; padding:0; } /* if you still use it elsewhere */
.inr-row{ position:relative; }
.inr-row:not(:last-child)::after{
  content:"";
  position:absolute;
  top:0; right:20px;
  width:2px;
  height:100%;
  background:url('/resources/images/nav-icon/Line 35.png') center repeat-y;
  background-size:contain;
}
.main-logo{ max-width:140px; }

/*navbar*/


/*footer*/

/* ─── Your Original CSS (with vk-* class names) ───────────────────────── */
.vk-footer {
    background: #0B0F1C;
    color: #ffffff;
}
.vk-footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
}
.vk-footer-links {
    list-style: none;
    padding: 0;
}
.vk-footer-links li {
    margin-bottom: 1rem;
}
.vk-footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.vk-footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}
.vk-footer-p {
    color: #ffffff;
    font-weight: 400;
}
.vk-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ed143d;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}
.vk-social-links a:hover {
    background: white;
    transform: translateY(-3px);
    color: #dc1436;
}
.vk-newsletter-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
}
.vk-newsletter-input:focus {
    background: rgba(255,255,255,0.15);
    border-color: #6c5ce7;
    color: #ffffff;
    box-shadow: none;
}
.vk-btn-subscribe {
    background: white;
    border: none;
    padding: 10px;
    transition: all 0.3s ease;
    color: #c36;
    cursor: pointer;
    border-radius:6px;
}
.vk-btn-subscribe:hover {
    background: #dc1436;
    transform: translateY(-2px);
    color: white;
}
.vk-footer-bottom {
    background: #DC1436;
    text-align: center;
    padding: 1rem 0;
}
.vk-footer-bottom a {
    color: white;
    text-decoration: none;
}
.vk-footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.vk-footer-bottom p {
    color: white;
    margin: 0;
}
.vk-footer-sub {
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-top: 2rem;
}

/* ─── Pure CSS Grid & Utility Classes ─────────────────────────────────── */
.vk-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}
.vk-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.vk-row > * {
    padding: 15px;
}
[class^="vk-col-"] {
    flex: 0 0 100%;
    max-width: 100%;
}
@media (min-width: 768px) {
    .vk-col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 992px) {
    .vk-col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .vk-col-lg-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
    .vk-col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.vk-d-flex {
    display: flex;
}
.vk-justify-between {
    justify-content: space-between;
}
.vk-pt-5 {
    padding-top: 3rem;
}
.vk-mb-0 {
    margin-bottom: 0 !important;
}
.vk-mb-4 {
    margin-bottom: 1.5rem !important;
}
.vk-mb-5 {
    margin-bottom: 3rem !important;
}
.vk-footer-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}

.vk-footer-column {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .vk-footer-column {
    flex: 1 1 50%;
  }
}
@media (min-width: 992px) {
  .vk-footer-column {
    flex: 1 1 calc(33.333% - 2rem);
  }
}

.vk-footer-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1rem;
}

/*footer*/



/*hero-index*/

.hero {
  background: url("../images/back-hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#hero {
  background-image: url("https://tmstesting1.xyz/company/assets/images/hero-background-1.jpg");
}
.hero-img {
  max-width: 69%;
}

/*hero-index*/

/*Counter index page */

@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

.counter-box {
  --num: 0;
  animation: countup 3s forwards;
  font-size: 40px;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  color: #f23051;
  min-width: 160px;
  font-weight: 500;
  border-right: 1px solid #ccc; /* vertical line */
  border-radius:0px;
        
    }

/* remove border from last box */
.counter-box:last-child {
  border-right: none;
}

/* Set the target numbers here */
.counter-1 {
  --target: 10;
}
.counter-2 {
  --target: 500;
}
.counter-3 {
  --target: 5000;
}
.counter-4 {
  --target: 2;
}

/* Suffix added using ::after */
.counter-1::before {
  content: counter(num) "M+";
}
.counter-2::before {
  content: counter(num) "+";
}
.counter-3::before {
  content: counter(num) "+";
}
.counter-4::before {
  content: counter(num) "M+";
}

@keyframes countup {
  from {
    --num: 0;
  }
  to {
    --num: var(--target);
  }
}

.counter-box {
  counter-reset: num var(--num);
}

.label-c {
  display: block;
  font-size: 19px;
  color: black;
  font-weight: 400;
}

.counter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 20px;
}

/*Counter index page */

/*Offer Index-page*/
.index-offer {
  background-image: url(../images/index-offer-bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.crd {
  background: #f3f3f3;
  padding: 25px 0px 10px 20px;
  border-radius: 20px;
  color: #fff;
  position: relative;
  box-shadow: 1px 1px 5px 0px #00000045;
}
.img-bx img {
  max-width: 68%;
  background: white;
  /* border-radius: 8px; */
  padding: 1px;
  z-index: 2;
}
.img-bx {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  z-index: 2;
}

/* Left Red Rounded Background */
.img-bx::before {
  content: "";
  position: absolute;
  top: 0;
  left: -29px;
  width: 9px;
  height: 100%;
  background-color: #e71d36;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  z-index: 1;
}

.main-img {
  background: #ebebeb;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.con {
  padding-right: 20px;
}
.con-head {
  font-size: 17px;
  font-weight: 600;
}

.con-p {
  font-size: 13px;
}
/*Offer Index-page*/





/*verticles index page*/


    .arw{
        font-size: 41px;
    color: #dc1436;
    }
    .verti-img{
        height: 70px; 
        width: 70px;
    }

.mob-show{
 display:none;   
}
/*verticles index page*/












/*Companies that trust us */

.brd-right {
  border-right: 1px solid #d3d3d3;
}

.brd-bottom {
  border-bottom: 1px solid #d3d3d3;
}

/*Companies that trust us */

/*testimonials */

.subline {
  font-weight: 600;
}
.subline img {
  padding: 0px 5px;
  max-width: 10%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.carousel .card {
  border: 0;
}
.carousel-inner {
  transition: transform 0.9s ease;
}

.testimonial-card {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 20px;
  max-width: 850px;
  background-color: #fff;
}
.star-rating i:last-child {
  color: #ccc;
}

.testi {
  border: 1px solid #dc3545;
  border-radius: 10px;
}
.testi .card-text {
  font-size: 13px;
  color: black;
}
.testi .str {
  color: #ff9400;
}
.testi-heading {
  font-weight: 600;
}
.blnk {
  background: #f3f3f3;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(80%) sepia(90%) saturate(600%) hue-rotate(200deg);
}

/*testimonials */

/*FAQs*/

.accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
}

.accordion-button {
  padding: 20px 0;
  font-weight: 600;
  color: #333;
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  color: #333;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 0 20px 0;
}

.faq-s1 {
  font-size: 26px;
  font-weight: 500;
  color: #989898;
  border-right: 2px solid #989898;
  padding-right: 21px;
}
.faq-s2 {
  color: #d3294f;
  font-weight: 700;
  font-size: 26px;
  margin-left: 21px;
}

/*FAQs*/

/*loan page */

/*loan header */

.loan-hero {
  background-image: url(../images/loan-bg.png);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
.h2-header {
  font-size: 42px;
  font-weight: 700;
  color: #272727;
  line-height:1.2;
}

/*loan header*/

/*card-carousal */

.car-card {
  background: linear-gradient(to top, #f5f5f580 50%, transparent 50%);
}

.icon-box {
  width: 60px;
  height: 60px;
  /*border: 1px solid #dc3545;*/
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  background:#FFEBEF;
}

.icon-box img {
  max-width: 50px;
  transition: 0.3s ease;
}

.card-option {
  transition: all 0.4s ease;
  cursor: pointer;
  transform: scale(1);
  border: none;
}

.card-option.inactive h5,
.card-option.inactive p {
  color: #ccc !important;
}

.card-option.inactive img {
  filter: grayscale(100%);
  opacity: 0.5;
}

.card-option.active {
  transform: scale(1.11);
  z-index: 2;
}

.card-option.active h5 {
  color: #dc3545;
  font-weight: bold;
}

.card-option.active p {
  color: #000;
}

.card-option.active .icon-box {
  border: 1px solid #dc3545;
}

.card-option.active img {
  filter: none;
  opacity: 1;
}
.card-option img {
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.card-option h5,
.card-option p {
  transition: color 0.4s ease;
}
.card-option p {
  font-size: 13px;
}

.carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.carousel-track {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  transition: transform 0.5s ease-in-out;
}

.carousel-controls {
  position: absolute;
  top: 35%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-controls button {
  background-color: transparent;
  border: none;
  color: #dc1436;
  font-size: 35px;
  /* padding: 10px 15px; */
  pointer-events: all;
  z-index: 10;
}
.card-option h5,
.card-option p {
  transition: color 0.4s ease;
}


/*card carousal*/

/*form*/
.frm-bg {
  background: #f5f5f580;
}
.frm {
  border: 1px solid #bbbbbb59;
  border-radius: 8px;
  background: white;
  box-shadow: 0.5px 0.5px 2px #9191912b;
}
.frm-btn {
  background: #dc1436;
  padding: 10px 30px;
  border-radius: 30px;
  color: white;
}

.frm-p {
  font-size: 19px;
  font-weight: 600;
}
.frm-fld {
  border: 1px solid black !important;
}
/*form*/

/*right leads */

.rightsec {
  background: #f5f5f580;
}

.hex-wrapper {
  position: relative;
  width: 148px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-wrapper.border-shadow {
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
  /* Shadow only for borders */
}

.hex-border,
.hex-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/*.hex-border {*/
/*  background-color: #DC1436;*/
/* Border color */
/*  z-index: 1;*/
/*}*/

.hex-inner {
  background-color: #fff;
  /* Inner color */
  /*width: calc(100% - 2px);*/
  /* Border thickness = 1px */
  /*height: calc(100% - 2px);*/
  top: 1px;
  left: 1px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-red {
  background-color: #dc1436;
}

.hex-head {
  font-size: 21px;
  font-weight: 500;
  color: #dc1436;
  margin-top: 14px;
}

.hex-p {
  font-size: 14px;
  font-weight: 400;
}
.hex-prop {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.bg-map {
  background-image: url(../images/back-map.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*right leads */

/*performance stats */

@property --count-num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

.custom-counter-box {
  --count-num: 0;
  animation: custom-countup 3s forwards;
  font-size: 40px;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  color: #f23051;
  min-width: 160px;
  font-weight: 500;
}

.counter-a {
  --count-target: 1;
}
.counter-b {
  --count-target: 40;
}
.counter-c {
  --count-target: 24;
}
.counter-d {
  --count-target: 2;
}

.counter-a::before {
  content: counter(count) "M+";
}
.counter-b::before {
  content: counter(count) "M+";
}
.counter-c::before {
  content: counter(count) "HRS";
}
.counter-d::before {
  content: counter(count) "B+";
}

@keyframes custom-countup {
  from {
    --count-num: 0;
  }
  to {
    --count-num: var(--count-target);
  }
}

.custom-counter-box {
  counter-reset: count var(--count-num);
}

.custom-label {
  display: block;
  font-size: 19px;
  color: black;
  font-weight: 400;
}

.custom-counter-wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 40px 20px;
}

/*performance stats */

/*Lead distribution process*/

.lead-bg {
  /*background-image: url("../images/lead-bg.png");*/
  background-size: cover;
  background-position: top;
}
.lead-process img {
  max-width: 100%;
  border-bottom: 1px solid black;
  margin-bottom: 12px;
}
.stp {
  font-size: 22px;
  color: grey;
  font-weight: 300;
}
.step-d {
  font-size: 18px;
  color: Black;
  font-weight: 500;
}

/*Lead Distribution Process*/

/*our properties*/

.bg-split {
  background-image: url("../images/our-prop-bg.png"),
    linear-gradient(to right, transparent 39%, #d31638 39%);
  background-size: 39% 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: left, right;
  padding: 100px 0;
  position: relative;
}

.carousel-inner {
  overflow: hidden;
}

.debt-card {
  align-items: center;
  display: flex;
  justify-content: end;
  gap: 60px;
}

.debt-image {
  border-radius: 30px;
  object-fit: cover;
  max-width: 100%;
}

.debt-text h3 {
  font-weight: bold;
  color: white;
}

.debt-text p {
  max-width: 500px;
  color: white;
}

.btn-custom {
  background-color: #2e2e2e;
  color: white;
  border: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
}

.arrow-btn {
  background-color: #2e2e2e;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn i {
  color: white;
  font-size: 20px;
}

.arrow-container-left,
.arrow-container-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.arrow-container-left {
  left: 30px;
}

.arrow-container-right {
  right: 30px;
}



/*our properties*/

/*offers */

.tab-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background-color: White;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #fff0;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.15);
  margin-bottom: 16px;
  border-radius: 8px;
  text-align: center;
}

.tab-btn:hover {
  background-color: #e2e6ea;
}

.tab-btn.active {
  background: #fff;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #d3294f;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.15);
}

.tab-content-custom {
  display: none;
  padding: 20px;
  border-left: 1px solid #dee2e6;
}

.tab-content-custom.active {
  display: block;
}

.tab-img {
  width: 110px;
  height: 30px;
  object-fit: contain;
}
.con-img {
  width: 150px;
}
.tb-row {
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 0.1);
  padding: 22px;
}

.tab-head-p {
  font-size: 18px;
  font-weight: 600;
  color: #272727;
}
.tab-p {
  font-size: 15px;
  font-weight: 400;
  color: #272727;
}
.tb-btn{
        background-color: #D3294F;
    font-weight: 500;
    text-decoration: none;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #D3294F;
    border-radius: 6px 6px 6px 6px;
    padding:8px 18px 8px 18px;
    color:white;
}
.tb-btn:hover {
    border: 1px solid #D3294F;
    color: #D3294F;
}
/*offers */



/*Career Page*/

/*Hero section*/
  .career-hero {
    background: url('../images/common-head-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
/*Hero section*/

/*open positions*/
.hrmail{
    color:#dc1436;
    font-weight:600;
    text-decoration:none;
}
  .job-tab .nav-tabs {
    margin-bottom: 60px;
    border-bottom: 0;
  }

  .job-tab .nav-tabs .nav-item {
    margin-right: 15px;
  }

  .job-tab .nav-tabs .nav-link {
    background-color: #fff;
    border: 1px solid grey;
    border-radius: 30px;
    font-size: 17px;
    color: #000;
    /* padding: 15px 35px; */
    font-weight: 500;
    height: 60px;
    width: 160px;
  }

  .job-tab .nav-tabs .nav-link.active,
  .job-tab .nav-tabs .nav-link:hover {
    background-color: #DC1436;
    color: #fff;
    border: 1px solid #DC1436;
  }

  .job-card {
    border: 1px solid #ccc;
    border-top: 4px solid #d9183b;
    padding: 1.5rem;
    border-radius: 0.25rem;
    background-color: #fff;
  }

  .apply-btn {
    background-color: #d9183b;
    color: #fff;
    border-radius: 30px;
    padding: 0.5rem 2rem;
    font-weight: 500;
    border: none;
  }

  .apply-btn:hover {
    background-color: #c11534;
  }

  .location-text {
    font-size: 0.8rem;
    color: #6c757d;
  }

  .job-title {
    font-size: 18px;
    font-weight: 600;
    color: black;
  }

  .job-desc {
    font-size: 15px;
  }

  .job-area {
    font-weight: 600;
    color: black;
  }
/*open positions*/



/*employee benefits */


  .custom-card {
    border-radius: 8px;
    border: 0px;
    background:transparent;
}

  .crd-row {
    gap: 35px;
    display: flex;
    justify-content: space-evenly;
    
  }

   .cust-card-p {
      color: #d50032;
      font-weight: 600;
      margin-bottom:0px;
    }
    p.ben-p {
    font-size: 15px;
    color: black;
    margin-bottom: 0px;
}

    .custom-box {
      position: relative;
      background-color: #fff;
      padding: 2rem;
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: 0 0 8px rgba(0,0,0,0.05);
    }

    .svg-border {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100px;
      height: 100px;
      z-index: 0;
    }

    .content-layer {
      position: relative;
      z-index: 1;
    }
.emp-benefit{
    background:#F9F9F9;
}

  
  /*employee benefits*/










/*Career Page*/










/*lead management page*/

    /*Hero section*/
  .leadmanagement-hero {
    background: url('assets/images/common-head-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
/*Hero section*/

/*lead types*/
  .lm-timeline {
    position: relative;
  }

  .lm-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 32px;
    bottom: 32px;
    border-left: 2px dashed #707070;
    transform: translateX(-50%);
    z-index: 1;
  }

  .lm-timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .lm-timeline-item.lm-left .lm-box-line {
    border-top: 2px dashed #707070;
    width: 130px;
  }

  .lm-timeline-item.lm-right .lm-box-line {
    border-top: 2px dashed #707070;
    width: 100px;
  }

  .lm-connector-dot-left {
    width: 14px;
    height: 14px;
    background-color: #707070;
    border-radius: 50%;
    z-index: 2;
    right: 19px;
    position: relative;
  }

  .lm-connector-dot-right {
    width: 14px;
    height: 14px;
    background-color: #707070;
    border-radius: 50%;
    z-index: 2;
    left: 19px;
    position: relative;
  }

  .lm-box {
    background-color: #EDEDED;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    z-index: 2;
    width: 230px;
    height: 75px;
    text-align: center;
  }

  .lm-box img {
    margin-right: 10px;
    background: #DC1436;
    font-size: 45px;
    padding: 8px;
    border-radius: 10px;
  }

  .lm-box p {
    font-size: 17px;
    font-weight: 700;
  }



  /* open positions - JP scoped */
  .jp-job-tab .nav-tabs {
    margin-bottom: 60px;
    border-bottom: 0;
  }

  .jp-job-tab .nav-tabs .nav-item {
    margin-right: 15px;
  }

  .jp-job-tab .nav-tabs .nav-link {
    background-color: #fff;
    border: 1px solid grey;
    border-radius: 30px;
    font-size: 17px;
    color: #000;
    font-weight: 500;
    height: 60px;
    width: 160px;
  }

  .jp-job-tab .nav-tabs .nav-link.active,
  .jp-job-tab .nav-tabs .nav-link:hover {
    background-color: #DC1436;
    color: #fff;
    border: 1px solid #DC1436;
  }

/*lead types*/












/*lead management page*/






/*about us page*/


    .about-hero {
    background: url('../images/common-head-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.team img {
    max-width: 100%;
    border-radius: 50%;
    border-bottom: 3px solid #DC1436;
}
.team-name {
    font-size: 19px;
    font-weight: 700;
    color: #DC1436;
    margin-bottom:1px;
}

    .team-card img {
      border-radius: 15px;
      width: 100%;
      height: auto;
    }

    .team-card h5 {
      margin-top: 1rem;
      font-weight: 700;
      color: #d10035;
    }
    .team-card p {
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }
    .social-icons a {
      color: #d10035;
      margin: 0 5px;
      font-size: 1rem;
    }
    .team-bg {
    background: url(../images/team-bg-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}



/*history section*/
.vh-carousel-container {
	width: 100%;
	height: 330px;
	position: relative;
	perspective: 1000px;
}

.vh-carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	
}

.vh-card {
	position: absolute;
	width: 500px;
	height: 250px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.vh-card img {
	width: 100%;
	height: 100%;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vh-card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.vh-card.center img {
	filter: none;
}

.vh-card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.vh-card.left-2 img {
	filter: grayscale(100%);
}

.vh-card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.vh-card.left-1 img {
	filter: grayscale(100%);
}

.vh-card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.vh-card.right-1 img {
	filter: grayscale(100%);
}

.vh-card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.vh-card.right-2 img {
	filter: grayscale(100%);
}

.vh-card.hidden {
	opacity: 0;
	pointer-events: none;
}

.vh-year-info {
	text-align: center;
	margin: 15px 0px 0px 0px;
	transition: all 0.5s ease-out;
}

.vh-role-info {
	text-align: center;
	margin: 15px 0px;
	transition: all 0.5s ease-out;
}

.vh-member-name {
    color: #DC1436;
    font-size: 26px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin-bottom: 0px;
}

.vh-member-role {
    color: black;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
    padding: 10px 0;
    max-width: 550px;
    margin: 0 auto;
}

.vh-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
}

.vh-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(8, 42, 123, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.vh-dot.active {
	background: #DC1436;
	transform: scale(1.2);
}

.vh-nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #dc1436;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	font-size: 20px;
	border: none;
	outline: none;
}

.vh-nav-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.vh-nav-arrow.left {
	left: 20px;
}

.vh-nav-arrow.right {
	right: 20px;
}



/*history section*/



/*about us page*/




/*contact us page*/

    .contact-hero {
    background: url('assets/images/common-head-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.con-det i {
    font-size: 45px;
    color:#DC1436;
}
.con-det-h {
    color: #707070;
    font-size: 22px;
    font-weight: 600;
}
.con-det-p {
    font-size: 15px;
    font-weight: 400;
    color: black;
}
.br-left{
    border-left: 1px solid #b3b3b3;
}

    .form-card {

      padding: 25px;
      border-radius: 12px;
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .form-card h4 {
      font-weight: bold;
    }
    .btn-submit {
      background-color: #dc143c;
      color: #fff;
    }
    .btn-submit:hover {
      background-color: #c51235;
    }
    .wh-100{
      width:100%;
        height:100%;
        border-radius:12px;
    }





/*contact us page*/


/*mycss*/

/* Hide original radio inputs */
.adv_radio {
  display: none;
}

/* Button style */

.adv_radio-btn {
    display: inline-block;
    padding: 5px 18px;
    margin: 5px;
    border: 1px solid #cc1332;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
    color: #dc1436;
    user-select: none;
}

/* Hover effect */
.adv_radio-btn:hover {
  background: #dc1436;
  color: #fff;
}

/* Active (checked) style */
.adv_radio:checked + .adv_radio-btn {
  background: #dc1436;
  color: #fff;
}
