body {
  overflow-x: hidden !important;
}

.header-section {
  width: 100%;
  z-index: 100;
  z-index: 999;
}

.header-section .brand-logo {
  max-width: 265px;
}

@media screen and (max-width: 1199px) {
  .header-section .brand-logo {
    max-width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .header-section .search-toggle-box {
    display: none;
    position: absolute;
    width: 100%;
    top: 60px;
    z-index: 10;
  }
}

@media screen and (max-width: 991px) {
  .header-section .main-navbar .navbar-toggle-item {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .header-section .main-navbar .navbar-toggle-item {
    display: initial !important;
  }
}

.header-section .main-navbar .custom-nav .menu-item button::after {
  position: absolute;
  content: "\f062";
  font-family: "FontAwesome";
  font-weight: 500;
  font-size: 16px;
  left: 0px;
  transition: all 0.1s ease;
  transform: rotate(60deg);
}

.header-section .main-navbar .custom-nav .menu-item button,
.header-section .main-navbar .custom-nav .menu-item a,
.header-section .main-navbar .custom-nav .menu-link button,
.header-section .main-navbar .custom-nav .menu-link a {
  transition: all 0.4s;
  font-size: 16px !important;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .header-section .main-navbar .custom-nav .menu-item button,
  .header-section .main-navbar .custom-nav .menu-item a,
  .header-section .main-navbar .custom-nav .menu-link button,
  .header-section .main-navbar .custom-nav .menu-link a {
    font-size: 14px !important;
    font-weight: 400 !important;
  }
}

@media screen and (max-width: 575px) {
  .header-section .main-navbar .custom-nav .menu-item button,
  .header-section .main-navbar .custom-nav .menu-item a,
  .header-section .main-navbar .custom-nav .menu-link button,
  .header-section .main-navbar .custom-nav .menu-link a {
    font-size: 16px;
  }
}

.header-section .main-navbar .custom-nav .menu-item button:hover,
.header-section .main-navbar .custom-nav .menu-item button.active,
.header-section .main-navbar .custom-nav .menu-item a:hover,
.header-section .main-navbar .custom-nav .menu-item a.active,
.header-section .main-navbar .custom-nav .menu-link button:hover,
.header-section .main-navbar .custom-nav .menu-link button.active,
.header-section .main-navbar .custom-nav .menu-link a:hover,
.header-section .main-navbar .custom-nav .menu-link a.active {
  color: #00adee !important;
}

.header-section .main-navbar .custom-nav .menu-item button:hover::after,
.header-section .main-navbar .custom-nav .menu-item button.active::after,
.header-section .main-navbar .custom-nav .menu-item a:hover::after,
.header-section .main-navbar .custom-nav .menu-item a.active::after,
.header-section .main-navbar .custom-nav .menu-link button:hover::after,
.header-section .main-navbar .custom-nav .menu-link button.active::after,
.header-section .main-navbar .custom-nav .menu-link a:hover::after,
.header-section .main-navbar .custom-nav .menu-link a.active::after {
  transform: rotate(90deg);
}

@media screen and (max-width: 991px) {
  .header-section .main-navbar .custom-nav {
    width: 100%;
  }

  .header-section .main-navbar .custom-nav .sub-menu {
    display: none;
    padding: 5px 20px 5px;
    background: #161616 !important;
  }

  .header-section .main-navbar .custom-nav .sub-menu li a {
    font-size: 14px !important;
    letter-spacing: 2px;
  }
}

@media screen and (min-width: 992px) {
  .header-section .main-navbar .custom-nav .menu-item {
    padding: 34px 0;
  }

  .header-section
    .main-navbar
    .custom-nav
    .menu-item
    button:hover
    button::after {
    transform: rotate(-180deg);
  }

  .header-section .main-navbar .custom-nav .sub-menu {
    position: absolute;
    top: 20px;
    left: -30px;
    min-width: 240px;
    opacity: 0;
    width: max-content;
    visibility: hidden;
    transform: translateY(50px);
    text-wrap: nowrap;
    transition: 0.8s;
    display: initial !important;
    background: #161616;
    z-index: 10;
    pointer-events: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }

  .header-section .main-navbar .custom-nav .sub-menu .sub-menu {
    border-left: 2px solid var(--p1);
    left: 99%;
    top: -55px;
    z-index: 9;
  }

  .header-section .main-navbar .custom-nav .menu-item {
    position: relative;
  }

  .header-section .main-navbar .custom-nav .menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(60px);
    pointer-events: auto;
  }
}

.header-section .main-navbar .navbar-toggle-btn {
  width: 36px;
  height: 24px;
  position: relative;
  right: 0;
  transition: 0.5s;
  top: 0;
}

.header-section .main-navbar .navbar-toggle-btn span {
  background: #00adee;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.5s;
}

.header-section .main-navbar .navbar-toggle-btn span:nth-child(1) {
  top: 0;
}

.header-section .main-navbar .navbar-toggle-btn span:nth-child(2),
.header-section .main-navbar .navbar-toggle-btn span:nth-child(3) {
  top: 12px;
}

.header-section .main-navbar .navbar-toggle-btn span:nth-child(4) {
  top: 24px;
}

.header-section .main-navbar .navbar-toggle-btn.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.header-section .main-navbar .navbar-toggle-btn.open span:nth-child(2) {
  transform: rotate(45deg);
}

.header-section .main-navbar .navbar-toggle-btn.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.header-section .main-navbar .navbar-toggle-btn.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.header-section .header-ph {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.header-section .remove-clickbg-adding {
  border-radius: 50%;
  width: 50px;
  min-width: 50px;
  height: 50px;
  background: #161616;
}

@media screen and (max-width: 991px) {
  .header-section .remove-clickbg-adding {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }

  .header-section .remove-clickbg-adding i {
    font-size: 16px;
  }
}

.cus__scroll {
  max-height: 65vh;
  overflow-y: scroll;
  overflow-x: hidden;
}

.header-fixed {
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
  background: #161616;
}

@media screen and (max-width: 991px) {
  .header-section .main-navbar .navbar-toggle-btn {
    border: none;
  }

  .header-section .main-navbar .navbar-toggle-item::before {
    content: "";
    display: block;
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .header-section.header-fixed .main-navbar .navbar-toggle-item::before {
    background-color: #fff;
  }
}

.header-section .brand-logo {
  max-width: 150px;
}

.header-section .brand-logo .non_sticky_logo {
  display: block;
}

.header-section .brand-logo .sticky_logo {
  display: none;
}

.header-section.header-fixed .brand-logo .non_sticky_logo {
  display: none;
}

.header-section.header-fixed .brand-logo .sticky_logo {
  display: block;
}

.header-section.header-fixed .brand-logo {
  filter: unset;
}

.header-fixed {
  background: #fff;
}

.header-section.header-fixed .main-navbar .custom-nav .menu-item button,
.header-section.header-fixed .main-navbar .custom-nav .menu-item a,
.header-section.header-fixed .main-navbar .custom-nav .menu-link button,
.header-section.header-fixed .main-navbar .custom-nav .menu-link a {
  color: #161616;
}

.header-fixed .touch-btn {
  border: 1px solid #161616;
  color: #161616;
}

.header-section .main-navbar .custom-nav > .menu-item > a {
  transition: 0.9s;
  font-size: 16px;
  line-height: 16px;
}

.header-section .main-navbar .custom-nav > .menu-item > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  width: 30px;
  height: 2px;
  bottom: 30px;
  background: #00adee;
  animation-fill-mode: forwards;
  opacity: 0;
}

.header-section .main-navbar .custom-nav > .menu-item > a:hover:before {
  animation-name: cta-in;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(1, 0, 0, 1);
  animation-fill-mode: forwards;
  opacity: 1;
}

.header-section .main-navbar .custom-nav > .menu-item > a.active {
  color: #00adee;
}

.header-section .main-navbar .custom-nav > .menu-item > a.active:before {
  width: 100%;
  opacity: 1;
}

.header-section .main-navbar .custom-nav > .menu-item > a:hover .menu-text {
  text-shadow: 0 16px 0 #00adee;
}

@keyframes cta-in {
  0% {
    width: 0px;
    left: 0;
    right: auto;
  }

  49% {
    width: 100%;
    left: 0;
    right: auto;
  }

  50% {
    width: 100%;
    left: auto;
    right: 0;
  }

  100% {
    width: 0px;
    left: auto;
    right: 0;
  }
}

.cta-button {
  padding: 0.7rem 2rem;
  border-radius: 30px;
  background: var(--black);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #222;
  /* Slightly lighter black on hover */
}

a {
  text-decoration: unset !important;
}

header nav {
  display: block !important;
}

.common-social li a {
  color: #fff;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.common-social li a i {
  transition: color 0.3s ease, opacity 0.3s ease;
}

.common-social li a:hover i {
  color: #ffffff !important;
  opacity: 0.6;
  transform: scale(0.9);
}

img:is([sizes="auto" i], [sizes^="auto," i]) {
  contain-intrinsic-size: 3000px 1500px;
}

.section_padding {
  padding: 100px 0;
}

.services-block {
  display: block;
  grid-template-columns: unset;
  gap: unset;
}

.value_box {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.value_box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

@media screen and (max-width: 1199px) {
}

@media screen and (min-width: 992px) {
}

@media screen and (max-width: 991px) {
  .header-section {
    padding: 10px 0;
  }
  .header-section .brand-logo {
    max-width: 120px;
  }
  .section_padding {
    padding: 3rem 0;
  }
  .container {
    padding-right: 3rem;
    padding-left: 3rem;
  }
  .cstm_value img {
    width: 50px;
  }
  .contact-content {
    padding: 30px;
  }

  .tns-nav {
    text-align: center;
    margin-top: 20px;
  }

  .tns-nav button {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .tns-nav button:hover {
    background-color: #999;
  }

  .tns-nav .tns-nav-active {
    background-color: #000;
  }
}

@media screen and (max-width: 767px) {
  .section_padding {
    padding: 3rem 0;
  }
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .cstm_value img {
    width: 50px;
  }
  .contact-content {
    padding: 30px;
  }

  .tns-nav {
    text-align: center;
    margin-top: 20px;
  }

  .tns-nav button {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .tns-nav button:hover {
    background-color: #999;
  }

  .tns-nav .tns-nav-active {
    background-color: #000;
  }
  .feature-titles {
    display: block;
    height: auto !important;
    padding: 15px !important;
}
}

.cstm-year{
  background-color: #00aae9;
   margin: 20px; 
   padding:20px;
  color:#fff;
  border-radius: 5px;
}
.stat-wrapper
 {
    grid-template-columns: repeat(1, 1fr) !important;
}


@media screen and (max-width: 900px) {
    .stat-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        grid-template-rows: repeat(1, 1fr);
    }
}

.stat-wrapper .number .text {
    font-size: 2rem;
    margin-top: -1rem;
}