:root {
    --black: #231F20;
    --white: #FFFFFF;
    --blue: #0A61AD;
    --darkblack: #000000;
}

::-webkit-scrollbar{width:0.438rem;background-color:var(--white)}
::-webkit-scrollbar-thumb{background-color:var(--blue); }
::selection{background:var(--black);color:#fff}
::-moz-selection{background:var(--black);color:#fff}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}


html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden
}

h2 {
    color: var(--darkblack);
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

h3 {
    color: var(--darkblack);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 0;
}

h6 {
    color: var(--darkblack);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}

p {
    font-size: 14px;
    line-height: 28px;
    color: #090914;
}

img:focus-visible, .navbar-toggler-icon:focus-visible, .navbar-toggler:focus-visible{
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.site-navbar {
  padding: 15px 0;
}

.site-navbar .nav-link {
    transition: color 0.3s ease;
}

.site-navbar .nav-link.active {
    color: #0d6efd; /* Bootstrap blue */
}

.nav-item a {
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
}

.fixed-top {
    border-bottom: 1px solid #ccc;
}

.navbar-toggler {
    border: none;
}

.hero-video {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* height: calc(100vh - 80px); */
  margin-top: 80px;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.ctaBtn {
  background-color: var(--blue);
  border-radius: 60px;
  padding: 12px 25px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.ctaBtn:hover {
  background-color: var(--black);
  border: 1px solid var(--black);
}

.cta-outline {
    border-color: var(--blue);
    color: var(--blue);
    font-weight: 600;
    padding: 10px 25px;
}

.cta-outline:hover {
    background-color: var(--blue);
}

.stat-box {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-size: 25px;
  line-height: 32px;
}

.stat-box span {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--blue);
}

.bondtite-section {
background: linear-gradient(180deg, #F3F6FA 0%, #CFE4FF 100%);
}

.bondtite-section p {
    text-align: justify;
}

.nav-pills {
    position: relative;
}

.nav-pills .nav-link {
    min-width: 180px;
    border: 1px solid #1e1e1e21;
    color: #000000;
    font-weight: 400;
    border-radius: 10px;
    white-space: nowrap;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--blue);
    font-weight: 600;
    color: var(--white);
}

.bluedot,
.bluedot2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.bluedot {
  left: 0;
}

.bluedot2 {
  right: 0;
}

.pills-wrapper::before,
.pills-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  background: #BFCBD1;
  transform: translateY(-50%);
  width: calc(20% - -8px); /* ⬅️ leave space for dot */
  z-index: 1;

}

.pills-wrapper::before {
  left: 8px;  /* space for left dot */
}

.pills-wrapper::after {
  right: 8px; /* space for right dot */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 205px);
    justify-content: start;
    gap: 22px;
}


.product-card {
    background: #fff;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin: 0;
    padding: 8px 8px 25px 8px;
}

.product-card img {
   padding-top: 10px;
}

.product-grid a {
  text-decoration: none;
}


/* Active / selected card */
/* .product-card.active {
  box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--blue);
} */

/* Hover effect */
.product-card:hover {
    border-color: var(--blue);
    box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.25);
}

.product-card:hover p{
  color: var(--blue)!important;
  font-weight: 700;
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }

    .product-card {
        max-width: 180px;
        width: 100%;
    }
}

@media (max-width: 767px) {
  .site-footer, .footer-links{
    text-align: center!important;
  }

  .footer-social, .footer-contact, .footer-logo, .footer-links {
    padding: 1rem 0;
    justify-content: center;
  }

  .footer-bottom {
    display: block!important;
  }

  .back-to-top span {
    display: none;
  }
}

@media (max-width: 768px) {

  .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-pills .nav-link {
    min-width: auto;
    width: 100%;
    text-align: center;
  }

  .bluedot,
  .bluedot2,
  .pills-wrapper::before,
  .pills-wrapper::after {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .back-to-top a {
       bottom: 70px!important;
      }
}


/* MOBILE MENU BASE */
@media (max-width: 991px) {

/* Disable Bootstrap height animation */

  .navbar-collapse.collapsing {
    height: auto !important;
    transition: none !important;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 0 50px rgba(0, 0, 0, .8);
    overflow-y: auto;
    transition: all .5s ease;
  }

  /* When menu is open */
  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav li {
    border-bottom: 1px solid #ccc;
    margin: 0;
    display: block;
  }

  .navbar li a {
    padding: 1rem;
  }

  .navbar-nav li:last-child{
    border-bottom: unset;
    padding: 1rem;
  }

  .stat-box {
    min-height: 125px;
  }
  .product-grid {
    justify-content: center;
  }
   
}

/* TOGGLER ICONS */
.navbar-toggler {
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 1000;
}

.navbar-close-icon {
  display: none;
  font-size: 22px;
  line-height: 1;
}

/* Toggle icon switch */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  display: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-close-icon {
  display: inline-block;
}

.form-control, .form-select {
  font-size: 14px;
  color: var(--darkblack);
  font-weight: 400;
  padding: 10px 15px;
  border: 1px solid #CCCBCB;
  border-radius: 10px;
  background-color: var(--white);
}

.form-control:focus, .form-select:focus{
  border-color: unset;
  box-shadow: unset;
}

.contactForm input::placeholder, .contactForm textarea::placeholder  {
  color: var(--darkblack);
}

.site-footer {
  background: var(--blue);
  color: #fff;
  padding: 50px 0 30px;
  font-size: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

/* SOCIAL */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social .label {
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons li a {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* LOGO */
.footer-logo {
  text-align: center;
}

.footer-contact p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--white);
}

/* DIVIDER */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.4);
  margin: 25px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--white);
}

/* BACK TO TOP */
.back-to-top {
    text-align: center;
    font-size: 12px;
    position: relative;
}


.back-to-top a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  bottom: 40px;            /* example */
  left: 50%;
  transform: translateX(-50%);
}

/* LINKS */
.footer-links {
  text-align: right;
  font-size: 13px;
}

.footer-links span {
  margin: 0 8px;
}


.stat-box .count {
    display: inline-block;
}

.ranbir-image {
  display: flex;
  align-items: end;
}

.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--blue)!important;
  text-align: center;
  padding: 10px;
}