/*!
Theme Name: Techmakers
Author: Techmakers Software
Author URI: https://techmakershq.com/
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Techmakers
*/
html,
body {
  position: relative;
  height: 100%;
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;	
}
body {
	overflow-x:hidden;
}
.container {
  max-width: 80%;
}

.burger {
  padding: 7rem 0;
}

.mt-lg {
  margin-top: 5rem;
}

.rounded {
  border-radius: 16px !important;
}

.button {
  display: inline-block;
  border-radius: 3.75rem;
  background-color: #FF4100;
  padding: 0.525rem 1.5rem;
  text-align: center;
  border: none;
  color: #FFF;
  text-decoration: none;
  transition: 0.3s all;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
}
.button i {
  display: inline-block;
  transition: 0.3s all;
}
.button-dark {
  background-color: #000;
}
.button-bordered {
  background-color: transparent;
  border: 1px solid #FFF;
  color: #FFF;
}
.button-bordered:hover {
  border-color: #FF4100;
}
.button:hover {
  background-color: #F3562D;
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.button:disabled:hover {
  background-color: #FF4100;
}
.button:hover i {
  transform: rotate(45deg);
}

.highlight {
  border-bottom: 0.1em solid #ffdc74;
  box-shadow: 0 -0.4em 0 0 #ffdc74 inset;
}

.gray-text {
  color: #4d5266;
}

.section-header {
  margin-bottom: 5rem;
  width: 60vw;
}
.section-header h2 {
  line-height: 1.3;
  font-size: clamp(2.5rem, 3vw, 3rem);
  margin-bottom: 2rem;
}
.section-header p {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  font-weight: 500;
}
.section-header .dark-text {
  color: #000;
}

.bg-light {
  background: linear-gradient(360deg, #FAFAFA 0%, #EEF0EF 50%) !important;
}

.h-text {
  font-size: clamp(0.7rem, 0.8vw, 0.9rem);
  font-weight: 500;
  color: #979797;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 2rem;
}

.nugget {
  font-size: clamp(0.9rem, 1vw, 1.25rem);
  opacity: 0.7;
}

.link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}
.link i {
  height: 2rem;
  width: 2rem;
  background-color: #000;
  border-radius: 100%;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
  color: #FFF;
}
.link:hover i {
  transform: rotate(45deg);
}

.b-burger {
  padding-bottom: 100px;
}

.t-burger {
  padding-top: 100px;
}

.big-text {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 500;
  color: #4d5266;
}

.dark-text {
  color: #000;
}

.blur-text {
  color: #777;
}

.blur-text-2 {
  color: rgba(255, 255, 255, 0.7);
}

.w-70 {
  width: 70%;
}

.menu-toggle {
  height: 18px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: 0.3s;
  transform-origin: center;
  }
.navbar-bg .menu-toggle span {
  background: #000;
  }
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar {
  padding: 0.5rem 0;
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  padding-top: clamp(2rem, 2.5vw, 3rem);
  transition: 0.2s all;
}
.navbar .navbar-brand {
  width: clamp(10rem, 12vw, 14.25rem);
}
.navbar .logo-dark {
  display: none;
}
.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar .navbar-nav .nav-item {
  display: inline-block;
  margin: 0 14px;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #FFF;
  font-size: clamp(1rem, 0.9vw, 1rem);
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #FF4100 !important;
}
.navbar .navbar-collapse.show {
  display: block !important;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}
.navbar .slide-horizontal {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh; /* full height */
  background: #212529; /* match navbar color */
  padding: 20px;
  z-index: 998;
  margin-top: 0 !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
.navbar .slide-horizontal.show {
  transform: translateX(0);
}
.mobile-nav-items {
  display: flex;
  flex-direction: column;
}
.mobile-nav-items .nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav-items .nav-link {
  color: #FFF;
  padding: 0.85rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.mobile-nav-items .nav-link:hover,
.mobile-nav-items .nav-link.open {
  color: #FF4100;
}
.mobile-dropdown-menu {
  display: none;
  padding-left: 0.75rem;
  margin-top: 0.75rem;
}
.mobile-dropdown-menu .mega-menu-list {
  padding: 0.7rem 0;
}
.mobile-dropdown-menu .mega-menu-list h6 {
  color: #FFF;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.mobile-dropdown-menu .mega-menu-list ul li {
  margin-bottom: 0.55rem;
}
.mobile-dropdown-menu .mega-menu-list ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
}
.mobile-dropdown-menu .mega-menu-list ul li a:hover {
  color: #FF4100;
}
.mobile-nav-cta {
  margin-top: 2rem;
}
.mobile-nav-cta .button {
  width: 100%;
}
.navbar.hovered {
  background: #FFF;
}
.navbar.hovered .nav-link {
  color: #000 !important;
}
.navbar.hovered .logo-dark {
  display: block !important;
}
.navbar.hovered .logo-light {
  display: none !important;
}
.navbar.navbar-bg {
  padding-top: clamp(0.5rem, 0.5vw, 1rem);
  padding-bottom: clamp(0.5rem, 0.5vw, 1rem);
  transition: 0.2s all;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(2rem);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.navbar.navbar-bg .nav-link {
  color: #000 !important;
}
.navbar.navbar-bg .logo-dark {
  display: block !important;
}
.navbar.navbar-bg .logo-light {
  display: none !important;
}

/* Dropdown Menu Improvements */
.dropdown-mega {
  position: static;
}

.dropdown-toggle::after {
  content: '';
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-mega.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-mega .dropdown-menu {
  width: 100%;
  border: none;
  left: 0;
  border-radius: 0;
  padding: 50px 0;
  margin-top: 0;
}

.dropdown-mega .dropdown-menu::before {
  left: 0;
  top: 0;
  background-color: #FFF;
}

.dropdown-mega::after {
  display: none;
}

/* Mega Menu Styling */
.dropdown-mega .mega-menu {
  position: absolute;
  left: 0;
  top: 90%;
  /* width: 100vw; */
  display: block;
  padding: 2rem 0;
  border: none;
  border-radius: 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}

.dropdown-mega .mega-menu .container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 0.75rem;
}

/* Show mega menu with smooth animation */
.dropdown-mega:hover .mega-menu,
.dropdown-mega .mega-menu:hover {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* Mega menu column styling */
.dropdown-mega .mega-menu .mega-menu-list {
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-mega .mega-menu .mega-menu-list h6 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #000;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

/* Accent line under section headers */
.dropdown-mega .mega-menu .mega-menu-list h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #FF4100, #F3562D);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}

.dropdown-mega:hover .mega-menu .mega-menu-list h6::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Menu item list styling */
.dropdown-mega .mega-menu .list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-mega .mega-menu .list-unstyled li {
  margin-bottom: 0.8rem;
}

/* Dropdown menu item links */
.dropdown-mega .mega-menu .list-unstyled li a {
  color: #4d5266;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 0;
}

.dropdown-mega .mega-menu .list-unstyled li a::before {
  content: '';
  position: absolute;
  left: -12px;
  width: 4px;
  height: 4px;
  background-color: #FF4100;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

/* Hover effects on menu items */
.dropdown-mega .mega-menu .list-unstyled li a:hover {
  color: #FF4100;
  padding-left: 8px;
}

.dropdown-mega .mega-menu .list-unstyled li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Smooth hover effect for entire column */
.dropdown-mega .mega-menu .col:hover {
  transform: translateY(-3px);
}

/* For light navbar background */
.navbar-bg .dropdown-mega .mega-menu {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
  box-shadow: 0px 8px 20px -6px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(1rem);
}

.navbar-bg .dropdown-mega .mega-menu .col h6 {
  color: #000;
}

.navbar-bg .dropdown-mega .mega-menu .list-unstyled li a {
  color: #4d5266;
}

.cta {
  width: clamp(5rem, 6vw, 6rem);
  height: clamp(5rem, 6vw, 6rem);
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 5px;
  animation: rotate 20s linear infinite;
  transition: 0.5s all;
  position: fixed;
  top: 1rem;
}
.cta img {
  transition: 0.5s all;
}
.cta:hover {
  height: clamp(6rem, 7vw, 7.25rem);
  width: clamp(6rem, 7vw, 7.25rem);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.banner__wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
}
.banner__wrapper-content h1 {
  font-size: clamp(36px, 4vw, 78px);
  line-height: 1.3;
  letter-spacing: -1.5px;
}
.banner__wrapper-content p {
  font-size: clamp(0.9rem, 1.3vw, 1.6rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 0;
}
.banner .swiper-slide {
  height: 100vh;
  display: flex;
  color: #FFF;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -110%;
  background-color: #000;
}
.banner .swiper-slide:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  z-index: -1;
}
.banner .swiper-pagination {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 80%;
  gap: 2rem;
}
.banner .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  color: #FFF;
  width: 25%;
  border-top: 1px solid #FFF;
  text-align: left;
  padding-top: 1rem;
  text-decoration: none;
  font-size: clamp(0.8rem, 0.9vw, 1.25rem);
  opacity: 0.5;
}
.banner .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: none;
  color: black;
  font-size: 14px;
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  font-weight: bold;
  text-decoration: underline;
}

.banner-inner {
  height: 100vh;
  background-image: url("images/abstract.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner-inner__wrapper {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.banner-inner__wrapper-content {
  width: clamp(50rem, 50vw, 55rem);
}
.banner-inner__wrapper-content h1 {
  font-size: clamp(2rem, 2vw, 2.25rem);
  line-height: 1.3;
  color: #FFF;
  font-size: 1.2rem;
}
.banner-inner__wrapper-content h2 {
  color: #9b9faf;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  line-height: 1.4;
}
.banner-inner__wrapper-content .dark-text {
  color: #FFF;
}
.banner-inner__wrapper-content p {
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.banner-inner:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
}

.service-scroll h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.service-scroll .list-group-item {
  border: none;
  padding: 14px 0;
  font-size: clamp(0.8rem, 0.9vw, 1.25rem);
  border-radius: 0;
  border-top: 1px solid #DDD;
  transition: 0.3s all;
  font-weight: 500;
  color: #4d5266;
  position: relative;
}
.service-scroll .list-group-item:hover {
  background-color: transparent;
  border-color: black;
  color: black;
}
.service-scroll .list-group-item:first-child {
  border-top: none;
}
.service-scroll .list-group-item.active {
  background-color: transparent;
  color: #000;
  padding-bottom: 100px;
  border-color: #000;
  padding-left: 26px;
}
.service-scroll .list-group-item.active:after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  background-color: red;
  top: 16px;
  left: 0;
  border-radius: 100%;
}
.service-scroll ul {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.service-scroll ul li {
  border: 1px solid #333;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
}
.service-scroll .uc-text {
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: #777;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
}
.service-scroll .scroll-section {
  border-bottom: 1px solid #000;
  padding-top: 100px;
  padding-bottom: 50px;
}
.service-scroll .scroll-section:first-child {
  margin-top: 0;
}
.service-scroll .scroll-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-left: 3rem;
}

.image-wrapper {
  position: relative;
}

.moving-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 64%;
  transition: top 0.2s ease;
  transform: translate(-50%, 0);
}

.stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.stat__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  padding: 10px 0;
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 500;
}
.stat__item--value {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
}

.officepic {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}
.officepic::after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
  z-index: 2;
}
.officepic .clients {
  position: absolute;
  bottom: 0;
  padding: 40px;
  z-index: 3;
}
.officepic .clients h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: white;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.logo-marquee:before {
  height: 80px;
  width: 200px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0.4));
  z-index: 1;
}
.logo-marquee:after {
  height: 80px;
  width: 200px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.41), rgb(255, 255, 255));
  z-index: 1;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll-left 20s linear infinite;
}

.logo-track img {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 20px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.video-background {
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  position: absolute;
}
.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-company {
  height: 100vh;
  position: relative;
  z-index: 1;
}
.banner-company__wrapper {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.banner-company__wrapper-content {
  width: clamp(50rem, 50vw, 55rem);
}
.banner-company__wrapper-content h1 {
  font-size: clamp(2rem, 2vw, 2.25rem);
  line-height: 1.3;
  color: #FFF;
  font-size: 1.2rem;
}
.banner-company__wrapper-content h2 {
  color: #9b9faf;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  line-height: 1.4;
}
.banner-company__wrapper-content .dark-text {
  color: #FFF;
}
.banner-company__wrapper-content p {
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.banner-company:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
}

.facts .offset-lg-1 {
  margin-left: 4.333333%;
}
.facts .fact-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  min-height: 120px;
  align-items: center;
}
.facts .fact-item:last-child {
  border-bottom: none;
}
.facts .fact-item span {
  font-weight: 500;
}
.facts .fact-item h3 {
  min-width: 40%;
  padding-right: 0;
  margin: 0;
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1.3;
  text-align: right;
}
.facts .fact-item p {
  margin: 0;
}

.story {
  background-image: url("images/about-bg.jpg");
  background-repeat: no-repeat;
  background-size: 60%;
  background-color: #000;
  background-position: -133px 14rem;
  color: white;
}
.story .content p {
  font-size: 1.3rem;
}
.story .content .big-text {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
}
.story .dark-text {
  color: #FFFFFF;
}
.story .accordion .accordion-item {
  background: transparent;
  color: #FFF;
  border: none;
}
.story .accordion .accordion-button {
  background: transparent;
  color: #FFF;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  border-radius: 0 !important;
  padding: 20px 0;
  border-bottom: 1px solid #FFF;
  box-shadow: none !important;
}
.story .accordion .accordion-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-size: clamp(0.8rem, 1vw, 1rem);
}

.values .hoverbox__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(22rem, 24vw, 26rem);
}
.values .hoverbox__content h4 {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  padding-right: 2rem;
}
.values .hoverbox__content p {
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.values .swiper {
  width: 100%;
  height: 100%;
  padding-top: 65px !important;
}
.values .swiper-button-next:after,
.values .swiper-button-prev:after {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.values .swiper-slide {
  font-size: 18px;
  background: #fff;
}
.values .swiper-button-next,
.values .swiper-button-prev {
  top: 23px;
  height: clamp(40px, 3vw, 50px);
  width: clamp(40px, 3vw, 50px);
  border: 1px solid #000;
  border-radius: 100%;
}
.values .swiper-button-next:hover,
.values .swiper-button-prev:hover {
  background-color: #000;
  border-color: #000;
}
.values .swiper-button-next:hover:after,
.values .swiper-button-prev:hover:after {
  color: #FFF;
}
.values .swiper-button-next {
  right: 0;
}
.values .swiper-button-prev {
  left: auto;
  right: clamp(50px, 3vw, 60px);
}
.values .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services__item {
  background-color: #FFF;
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 16px;
  overflow: hidden;
}
.services__item h3 {
  font-size: clamp(1.5rem, 2vw, 2.5rem);
}
.services__item p {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  margin-top: 1.5rem;
  color: #4d5266;
}
.services__item img {
  max-width: clamp(3rem, 3vw, 4rem);
}
.services__item ul {
  list-style: square;
  padding-left: 17px;
  margin-top: 1rem;
}
.services__item ul li {
  margin-bottom: 0.5rem;
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.services .t-icons {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
}
.services .t-icons .t-icon {
  height: 50px;
  width: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  margin-right: 10px;
  margin-bottom: 10px;
}

.projects {
  background-color: #000;
  color: #FFF;
}
.projects .tile {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
}
.projects .tile__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  flex: 0 0 calc(50% - 1.5rem);
}
.projects .tile__item--image {
  border-radius: 16px;
  overflow: hidden;
}
.projects .tile__item--content {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
}
.projects .tile__item--content .desc {
  color: #e8e8e8;
  font-size: clamp(1.3rem, 1.5vw, 1.875rem);
  line-height: 1.3;
}
.projects .tile__item--content .title {
  color: #979797;
  font-size: clamp(0.8rem, 1vw, 1rem);
  position: relative;
  font-weight: 500;
}
.projects .tile__item--content .title span {
  position: relative;
  padding-left: 18px;
  margin-left: 6px;
}
.projects .tile__item--content .title span:after {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 38%;
  background-color: #979797;
}
.projects .section-header p {
  color: rgba(255, 255, 255, 0.7);
}
.projects .section-header .dark-text {
  color: #FFF;
}
.projects .cursor {
  position: fixed;
  pointer-events: none;
  opacity: 0;
}
.projects .cursor-eye {
  top: -50px;
  left: -50px;
  padding: 20px;
  z-index: 1;
  border-radius: 50%;
  background-color: #FF4100;
}
.projects .cursor-show {
  height: 40px;
  width: 40px;
  background: #FF4100;
  display: flex;
  border-radius: 100%;
  text-align: center;
  color: #FFF;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
}

.process {
  background-color: #000;
  color: #FFF;
}
.process .block {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.process .block__content h3 {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: clamp(0.925rem, 1.5vw, 1.5rem);
}
.process .block__content p {
  font-size: clamp(0.75rem, 1vw, 1rem);
}
.process .block__content .h-text span {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  position: absolute;
  top: 2px;
  right: 4px;
}
.process .block__content ul {
  margin: 0;
  margin-top: 1rem;
  padding-left: 17px;
}
.process .block__content ul li {
  margin-bottom: 5px;
  font-size: clamp(0.75rem, 1vw, 1rem);
}

.industries .section-header {
  margin-bottom: 1rem;
}
.industries .hoverbox {
  position: relative;
}
.industries .hoverbox__image {
  overflow: hidden;
  transition: 0.5s all ease;
  border-radius: 16px;
}
.industries .hoverbox__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.industries .hoverbox__image:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s all;
}
.industries .hoverbox__content {
  position: absolute;
  padding: 2rem;
  width: 100%;
  bottom: 0;
  top: 0;
  transition: 0.5s all ease;
  overflow: hidden;
}
.industries .hoverbox__content--hidden {
  transition: 0.5s all ease;
}
.industries .hoverbox__content--hidden p {
  margin-top: 20px;
  border-bottom: 1px solid #FFF;
  padding-bottom: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  opacity: 0.8;
}
.industries .hoverbox__content--hidden ul {
  padding-left: 17px;
  margin: 0;
  padding-top: 20px;
  margin-top: 5px;
  border-top: 1px solid #000;
}
.industries .hoverbox__content--hidden ul li {
  margin-bottom: 5px;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-weight: 500;
  list-style: square;
}
.industries .hoverbox__content h4 {
  margin: 0;
  transition: 0.5s all ease;
  font-size: clamp(1.25rem, 1.3vw, 1.3rem);
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}
.industries .swiper {
  width: 100%;
  height: 100%;
  padding-top: 65px !important;
}
.industries .swiper-button-next:after,
.industries .swiper-button-prev:after {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.industries .swiper-slide {
  font-size: 18px;
  background: #fff;
}
.industries .swiper-button-next,
.industries .swiper-button-prev {
  top: 23px;
  height: clamp(40px, 3vw, 50px);
  width: clamp(40px, 3vw, 50px);
  border: 1px solid #000;
  border-radius: 100%;
}
.industries .swiper-button-next:hover,
.industries .swiper-button-prev:hover {
  background-color: #000;
  border-color: #000;
}
.industries .swiper-button-next:hover:after,
.industries .swiper-button-prev:hover:after {
  color: #FFF;
}
.industries .swiper-button-next {
  right: 0;
}
.industries .swiper-button-prev {
  left: auto;
  right: clamp(50px, 3vw, 60px);
}
.industries .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.whyus .hightlights h3 {
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 1rem;
}
.whyus .hightlights p {
  font-size: clamp(0.9rem, 1vw, 1rem);
}
.whyus .offset-lg-1 {
  margin-left: 4.333333%;
}
.whyus .why-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  min-height: 160px;
  align-items: center;
}
.whyus .why-item h3 {
  min-width: 46%;
  padding-right: 50px;
  margin: 0;
  font-size: clamp(1.125rem, 1.4vw, 1.5rem);
  line-height: 1.3;
}
.whyus .why-item p {
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 1rem);
}

.techstack .offset-lg-1 {
  margin-left: 4.333333%;
}
.techstack .tech-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  min-height: 160px;
  align-items: center;
}
.techstack .tech-item h3 {
  min-width: 40%;
  padding-right: 50px;
  margin: 0;
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  line-height: 1.3;
	font-weight:600;
}
.techstack .tech-item p {
  margin: 0;
}
.techstack .tech-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.techstack .tech-item ul li {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 45%;
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 500;
  gap: 10px;
  padding-left: 18px;
}
.techstack .tech-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF4100;
}
.techstack .tech-item ul li img {
  width: 16px;
}

.reviews .review {
  height: 100%;
  padding-left: 80px;
  position: relative;
}
.reviews .review:before {
  font-family: "Bootstrap Icons";
  font-style: normal;
  font-weight: normal;
  font-size: clamp(5rem, 6vw, 6rem);
  position: absolute;
  content: "//";
  top: -52px;
  left: 15px;
  height: 30px;
  width: 30px;
  color: #777;
  letter-spacing: -8px;
  color: #D90368;
  font-weight: bold;
}
.reviews .review p {
  font-size: clamp(1.4rem, 2vw, 2.5rem);
}
.reviews .review__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.reviews .review__content--author {
  display: flex;
  align-items: center;
  border-top: 1px solid #000;
  padding-top: 20px;
}
.reviews .review__content--author .avtar {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 20px;
  display: none;
}
.reviews .review__content--author .author-info .name {
  display: block;
  font-weight: 600;
}
.reviews .review__content--author .author-info .role {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}
.reviews .swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 65px !important;
}
.reviews .swiper-button-next:after,
.reviews .swiper-button-prev:after {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
  top: calc(100% - 95px);
  height: clamp(40px, 3vw, 50px);
  width: clamp(40px, 3vw, 50px);
  border: 1px solid #000;
  border-radius: 100%;
}
.reviews .swiper-button-next:hover,
.reviews .swiper-button-prev:hover {
  background-color: #000;
  border-color: #000;
}
.reviews .swiper-button-next:hover:after,
.reviews .swiper-button-prev:hover:after {
  color: #FFF;
}
.reviews .swiper-button-next {
  right: 0;
}
.reviews .swiper-button-prev {
  left: auto;
  right: clamp(50px, 3vw, 60px);
}
.reviews .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.footer {
  position: relative;
  background-color: #000;
  color: #FFF;
}
.footer .section-header {
  color: #FFF;
  justify-content: start;
  text-align: left;
  margin: 0;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.footer .cta-text {
  width: 21vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 72%;
  z-index: 9;
  position: relative;
}
.footer .cta-text p {
  font-size: clamp(0.8rem, 1vw, 1.2rem);
}
.footer .illustration {
  position: relative;
  margin-top: -100px;
  border-bottom: 2px solid #FFF;
}
.footer .illustration img {
  margin-left: 100px;
  width: clamp(10rem, 10vw, 20rem);
}
.footer .footer-logo img {
  width: clamp(10rem, 11vw, 14rem);
}
.footer h2 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
}
.footer h3 {
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  text-transform: uppercase;
  opacity: 0.6;
}
.footer ul {
  padding-left: 0;
  list-style: none;
  margin-top: 2rem;
}
.footer ul li {
  margin-bottom: clamp(0.1rem, 0.1vw, 0.5rem);
}
.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
}
.footer ul li a:hover {
  color: #FFF;
}

.banner-short {
  height: clamp(64vh, 50vw, 30vh);
  background-image: url("images/abstract.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner-short__wrapper {
  width: 80%;
  padding: 0 0.75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.banner-short__wrapper-content {
  width: 32vw;
}
.banner-short__wrapper-content h1 {
  font-size: clamp(2.5rem, 3vw, 3rem);
  line-height: 1.3;
  color: #FFF;
}
.banner-short__wrapper-content h2 {
  color: #FFF;
  line-height: 1.4;
  color: rgb(255, 255, 255);
}
.banner-short__wrapper-content h4 {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3rem;
  line-height: 1.4;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
}
.banner-short__wrapper-content .dark-text {
  color: #FFF;
}
.banner-short__wrapper-content p {
  font-size: clamp(0.9rem, 1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.banner-short .blur-text-2 {
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.banner-short:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: -1;
}

.contact {
  position: relative;
  z-index: 1;
}
.contact .clients h5 {
  font-size: clamp(0.9rem, 1vw, 1rem);
}
.contact .logo-track img {
  height: 40px;
}

.contact-form {
  position: relative;
  background: #FFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 50px;
  margin-left: 2rem;
  border-radius: 8px;
  margin-top: -45vh;
}
.contact-form ul {
  padding: 0;
  list-style: none;
}
.contact-form .zf-errorMessage {
  font-size: 0.8rem;
  color: red;
  margin-top: 5px;
  margin-bottom: 0;
}
.contact-form .big-btn {
  display: block;
  background: #000;
  padding: 10px 14px;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: clamp(0.9rem, 1vw, 1rem);
}
.contact-form .big-btn i {
  margin-right: 14px;
}
.contact-form .header {
  padding: 20px 0;
}
.contact-form h5 {
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 500;
}
.contact-form .divider {
  padding: 20px 0;
  text-align: center;
  position: relative;
}
.contact-form .divider span {
  background: white;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}
.contact-form .divider:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #DDD;
  top: 31px;
}
.contact-form h4 {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form .form-control {
  border: 1px solid #666;
  border-radius: 4px;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
}
.contact-form label {
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-weight: 500;
  margin-bottom: 5px;
}
.contact-form textarea.form-control {
  min-height: 100px;
}
.contact-form .review p {
  font-size: clamp(1.2rem, 1.25vw, 1.5rem);
}
.contact-form .review__content i {
  font-size: 3rem;
  margin-bottom: 3rem;
  display: inline-block;
  color: #333;
}
.contact-form .review__content--author {
  display: flex;
  align-items: center;
}
.contact-form .review__content--author .avtar {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 20px;
}
.contact-form .review__content--author .author-info .name {
  display: block;
  font-weight: 600;
}
.contact-form .review__content--author .author-info .role {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}

.copy {
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  opacity: 0.7;
}

.projects-2 .content {
  display: flex;
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
}
.projects-2 .content p {
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 500;
  margin-top: 1rem;
}
.projects-2 .content h2 {
  font-size: clamp(1.5rem, 1.5vw, 2rem);
}
.projects-2 .image img {
  border-radius: 16px;
}
.projects-2 .mt-lg {
  margin-top: 10rem !important;
}

.single-1 {
  margin-top: -18vh;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}

.h-qtr {
  height: 80vh !important;
}

.border-box {
  min-height: clamp(20rem, 25vw, 25rem);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border: 1px solid #000;
  padding: 2rem;
  border-radius: 8px;
}
.border-box .num {
  color: red;
  font-weight: bold;
  font-size: 2rem;
}
.border-box p {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 500;
}

.sow {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
}

.sol-points {
  margin-right: -10.5vw;
}

.sidebar-sticky {
  position: sticky;
  top: 20vh;
  height: 100%;
}
.sidebar-sticky .sidebar-content {
  margin-top: 4rem;
}
.sidebar-sticky .sidebar-content h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #000;
  margin-bottom: 1rem;
}
.sidebar-sticky .sidebar-content p {
  font-size: clamp(0.8rem, 1vw, 1rem);
}

.privacy h2 {
  font-size: clamp(1.3rem, 1.5vw, 1.5rem);
}
.privacy .section {
  margin-bottom: 3rem;
}
.privacy a {
  color: #F75590;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 0.8rem;
}

#cookie-banner p {
  margin: 0;
  flex: 1;
}

#cookie-banner a {
  color: #FF4100;
  text-decoration: underline;
}

#cookie-banner button {
  background: #FF4100;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 3px;
  font-size: 14px;
}

#cookie-banner button:hover {
  background: #000;
}

#footerNav {
  margin-top: 3rem;
}

.footer-mega-menu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 767px) {
  .footer-mega-menu {
    display: none;
  }
  #footerNav {
    margin-top: 0;
  }
}
.footer-mega-menu .mega-group {
  margin-bottom: 2.5rem;
}
.footer-mega-menu .mega-group:last-child {
  margin-bottom: 0;
}
.footer-mega-menu .mega-group-title-col {
  display: flex;
  align-items: flex-start;
}
.footer-mega-menu .mega-group-title {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 700;
  color: #FFF;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-mega-menu .mega-group-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #FF4100, #F3562D);
  border-radius: 2px;
}
.footer-mega-menu .mega-col {
  margin-bottom: 1.5rem;
}
.footer-mega-menu .mega-col h6 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.footer-mega-menu .mega-col h6.mega-col-spacer {
  visibility: hidden;
}
.footer-mega-menu .mega-col ul {
  margin-top: 0;
}
.footer-mega-menu .mega-col ul li {
  margin-bottom: 0.6rem;
}
.footer-mega-menu .mega-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.4;
}
.footer-mega-menu .mega-col ul li a:hover {
  color: #FFF;
}

.f-about .button {
  display: none;
}

.blog .blog-posts img, .recent-posts img, .related-posts img {
  border-radius: 8px;
}
.blog h3, .recent-posts h3, .related-posts h3 {
  margin-top: 30px;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
}
.blog h4, .recent-posts h4, .related-posts h4 {
  font-size: clamp(1.25rem, 1.25vw, 1.3rem);
}
.blog h4 a, .recent-posts h4 a, .related-posts h4 a {
  color: #000;
  text-decoration: none;
}
.blog h4 a:hover, .recent-posts h4 a:hover, .related-posts h4 a:hover {
  color: #FF4100;
}
.blog .post-meta, .recent-posts .post-meta, .related-posts .post-meta {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: rgba(0, 0, 0, 0.7);
}
.blog .post-meta a, .recent-posts .post-meta a, .related-posts .post-meta a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}
.blog .post-meta a:hover, .recent-posts .post-meta a:hover, .related-posts .post-meta a:hover {
  color: #FF4100;
}
.blog h3 a, .recent-posts h3 a, .related-posts h3 a {
  color: #000;
  text-decoration: none;
}
.blog h3 a:hover, .recent-posts h3 a:hover, .related-posts h3 a:hover {
  color: #FF4100;
}

.blog .logo-dark, .single.single-post .logo-dark {
  display: block;
}
.blog .logo-light, .single.single-post .logo-light {
  display: none;
}
/* .blog .navbar, .single.single-post .navbar {
  position: relative;
} */
.blog .navbar .navbar-nav .nav-item .nav-link, .single.single-post .navbar .navbar-nav .nav-item .nav-link {
  color: #000;
}
.blog .post-thumbnail img, .single.single-post .post-thumbnail img {
  display: block;
  max-width: 100%;
  height: auto;
}
.blog .entry-header, .single.single-post .entry-header {
  display: flex;
  justify-content: end;
  flex-direction: column;
  height: 100%;
  background-color: #F3F3F3;
  padding: 50px;
}
.blog .entry-content, .single.single-post .entry-content {
  height: 100%;
}
.blog .entry-content p, .single.single-post .entry-content p {
  font-size: 1.125rem;
}
.blog .post-meta, .single.single-post .post-meta {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: rgba(0, 0, 0, 0.7);
}
.blog .post-meta a, .single.single-post .post-meta a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}
.blog .post-meta a:hover, .single.single-post .post-meta a:hover {
  color: #FF4100;
}
.blog .navbar, .single.single-post .navbar {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(2rem);
}
.blog table, .single.single-post table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.blog table th, .blog table td, .single.single-post table th, .single.single-post table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.blog table th, .single.single-post table th {
  background-color: #f2f2f2;
}
.blog h1, .single.single-post h1 {
  font-size: 3rem;
}

h2.wp-block-heading {
  font-size: clamp(1.5rem, 1.5vw, 2rem);
  padding-top: 5rem;
  margin-bottom: 2rem;
}

.wp-block-separator {
  display: none;
}

.sticky-sidebar {
  position: sticky;
  top: 12vh;
  height: 100%;
}

#ez-toc-widget-sticky-container {
  background-color: #F3F3F3 !important;
  padding: 40px;
}
#ez-toc-widget-sticky-container .widgettitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
#ez-toc-widget-sticky-container .ez-toc-widget-sticky-list.ez-toc-widget-sticky-list-level-1 {
  padding: 0;
  list-style: none;
}
#ez-toc-widget-sticky-container .ez-toc-widget-sticky-list.ez-toc-widget-sticky-list-level-1 li {
  margin-bottom: 10px;
}
#ez-toc-widget-sticky-container .ez-toc-widget-sticky-list.ez-toc-widget-sticky-list-level-1 li a {
  color: #333;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  flex-wrap: wrap;
  margin-bottom:60px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  border-radius: 50px;
  background: #ebebeb;
  color: #111;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.blog-pagination .page-numbers:hover {
  background: #FF4100;
  color: #fff;
}

.blog-pagination .page-numbers.current {
  background: #FF4100;
  color: #fff;
  pointer-events: none;
}

.blog-pagination .prev,
.blog-pagination .next {
  padding: 0.525rem 1.5rem;
  border-radius: 3.75rem;
}
@media (max-width: 1024px) {
	.single-technology .menu-toggle span, .single-service .menu-toggle span, .single-post .menu-toggle span, .blog .menu-toggle span {
		background: #333 !important;
	}
}

@media (max-width: 480px) {
  .container {
    max-width: 96%;
  }
  .burger {
    padding: 5rem 0;
  }
  .banner .swiper-slide {
    height: auto;
    padding-top: 15rem;
    padding-bottom: 5rem;
  }
  .banner__content {
    width: 90vw;
  }
  .desktop-nav {
    display: none;
  }
  .section-header {
    flex-direction: column;
  }
  .section-header .title {
    width: 50vw;
    margin-bottom: 1rem;
  }
  .menu-toggle {
    display: flex;
    z-index: 999;
  }
  .navbar-bg .menu-toggle.active span {
    background: #fff !important;
  }
  #footerNav .f-about {
    margin-top: 2rem;
  }
  #footerNav .f-about .button {
    display: none;
  }
  #footerNav .f-legal, #footerNav .f-connect {
    margin-top: 2rem;
  }
  #footerNav ul li a {
    font-size: 1rem;
  }
  .button {
    font-size: 1rem;
  }
  .banner__wrapper-content h1 {
    font-size: 2.5rem;
  }
  .banner__wrapper-content h1 br {
    display: none;
  }
  .banner__wrapper-content p {
    font-size: 1rem;
  }
  .banner__wrapper {
    width: 87%;
  }
  .banner .swiper-pagination .swiper-pagination-bullet {
    display: none;
  }
  .section-header {
    width: 100%;
  }
  #image-anchor {
    display: none;
  }
  .about-content {
    margin-left: 0;
    margin-top: 1rem;
  }
  .stat__item {
    font-size: 1rem;
  }
  .logo-track img {
    height: 30px !important;
    margin: 0 9px;
  }
  .logo-marquee:before {
    background: transparent;
  }
  .logo-marquee:after {
    background: transparent;
  }
  .services__item p {
    font-size: 1.2rem;
  }
  .services__item ul li {
    font-size: 1rem;
  }
  .services__item {
    margin-bottom: 1rem;
  }
  .projects .tile__item {
    width: 100%;
  }
  .projects .tile__item {
    flex: 0 0 100%;
  }
  .projects .tile__item--content .title {
    font-size: 1rem;
  }
  .projects .tile__item--content .title span:after {
    top: 6px;
  }
  .industries .hoverbox__content h4 {
    font-size: 1.5rem;
  }
  .industries .hoverbox__content--hidden ul li {
    font-size: 1rem;
  }
  .whyus .why-item.me-5 {
    margin-right: 0 !important;
  }
  .whyus .why-item.ms-5 {
    margin-left: 0 !important;
  }
  .whyus .why-item p {
    font-size: 0.9rem;
  }
  .whyus .why-item h3 {
    padding-right: 20px;
  }
  .reviews .swiper-slide img {
    height: 85%;
  }
  .reviews .review {
    padding-left: 0;
  }
  .reviews .review:before {
    top: -70px;
    left: 0;
    letter-spacing: 0;
    font-size: 3rem;
  }
  .footer h2 br {
    display: none;
  }
  .footer .cta-text {
    width: 100%;
    margin-left: 0;
    font-size: 1rem;
  }
  .footer .illustration {
    margin-top: 0;
    border-bottom: none;
  }
  .footer .illustration img {
    margin-left: 50%;
  }
  .service-scroll #service-list {
    display: none;
  }
  .service-scroll .scroll-section {
    padding-top: 0;
    margin-top: 50px;
  }
  .service-scroll .col-8 {
    width: 100%;
  }
  .footer ul li {
    margin-bottom: 8px;
  }
  .techstack .tech-item.me-5 {
    margin-right: 0 !important;
  }
  .process .col {
    flex: 0 0 100%;
  }
  .process .block {
    margin-bottom: 2rem;
  }
  .process .block__content h3 {
    font-size: 1.3rem;
  }
  .process .block__content p {
    font-size: 1rem;
  }
  .process .block__content ul li {
    font-size: 1rem;
  }
  .banner-short {
    height: 50vh;
  }
  .banner-inner__wrapper-content h2 {
    font-size: 1.8rem;
  }
  .banner-short__wrapper-content {
    width: 100%;
  }
  .banner-short {
    height: 50vh;
  }
  .banner-short__wrapper-content h4 {
    font-size: 1.2rem;
  }
  .projects-2 .content {
    padding-left: 0 !important;
    padding-top: 3rem;
  }
  .projects-2 .content p {
    font-size: 1rem;
  }
  .projects-2 .mt-lg {
    margin-top: 5rem !important;
  }
  .banner-company__wrapper-content h2 {
    font-size: 1.8rem;
  }
  .facts .fact-item.me-5 {
    margin-right: 0 !important;
  }
  .facts .fact-item h3 {
    padding-right: 0;
    text-align: left;
  }
  .facts .fact-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .story {
    background-size: 150%;
  }
  .values .hoverbox__content p {
    font-size: 1.2rem;
  }
  .contact-form {
    margin-left: 0;
    margin-top: -153px;
    padding: 24px;
  }
  .zf-nameWrapper .lname-sm {
    margin-top: 1rem;
  }
  .clients {
    text-align: center;
    margin-top: 3rem;
  }
  .banner-short__wrapper-content h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .banner-short__wrapper-content p {
    font-size: 1rem;
  }
  .banner-short__wrapper {
    width: 90%;
  }
  .single-1 {
    padding-bottom: 0;
  }
  .single-2 .col {
    flex: 0 0 100%;
  }
  .single-2 .reviews .review:before {
    top: -100px;
  }
  .single-2 .reviews {
    height: auto !important;
  }
  .border-box {
    min-height: auto;
    margin-bottom: 1rem;
  }
  .sidebar-sticky {
    position: relative;
    top: 0;
  }
  .sol-points {
    margin-right: 0;
  }
  .thankyou h1 {
    font-size: 2.5rem !important;
    margin-top: 2rem !important;
  }
  .thankyou img {
    margin-bottom: 1rem;
  }
  .thankyou br {
    display: none;
  }
  .single.single-post .entry-header {
    padding: 30px;
    font-size: 2.25rem;
  }
	.services-banner h1 {
		font-size:2rem !important;
	}
	.hero__content h1 {
		font-size:2rem !important;
	}
	.single-technologies .gutter {
		padding:0 !important;
	}
}
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  .navbar-bg .menu-toggle.active span {
    background: #fff !important;
  }
  .navbar .navbar-nav .nav-link,
  .mobile-nav-items .nav-link {
    color: #fff !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #footerNav {
    margin-top: 3rem;
  }
  #footerNav .f-about {
    margin-top: 2rem;
  }
  #footerNav .f-about .button {
    display: none;
  }
  #footerNav .f-legal, #footerNav .f-connect {
    margin-top: 2rem;
  }
  #footerNav ul li a {
    font-size: 1rem;
  }
  .button {
    font-size: 1rem;
  }
  .desktop-nav {
    display: none;
  }
  .about-content {
    margin-top: 2rem;
    margin-left: 0;
  }
  .services__item {
    margin-bottom: 2rem;
  }
  .whyus .why-item:first-child {
    border-top: none !important;
  }
  .whyus .why-item.me-5 {
    margin-right: 0 !important;
  }
  .whyus .why-item.ms-5 {
    margin-left: 0 !important;
  }
  .reviews .review {
    padding-left: 0;
    padding-top: 5rem;
  }
  .reviews .review:before {
    top: -20px;
    letter-spacing: 0;
  }
}/*# sourceMappingURL=style.css.map */
@media (max-width: 767px) {
  .blog-pagination {
    gap: 8px;
  }
  .blog-pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    font-size: 14px;
    padding: 0 14px;
  }
}

/* ========================= Dev CSS  ============================= */
.services-banner h1 {
  font-size: clamp(3.5rem, 2vw, 2.25rem);
  line-height: 1.3;
  font-weight: 600;
}
.single-service .navbar .navbar-nav .nav-item .nav-link, .single-technology .navbar .navbar-nav .nav-item .nav-link, .single-developer .navbar .navbar-nav .nav-item .nav-link{
  color: #000;
}
.single-service .logo-light, .single-technology .logo-light, .single-developer .logo-light {
  display: none;
}
.single-service .logo-dark, .single-technology .logo-dark, .single-developer .logo-dark {
  display: block;
}

    /* Heading */
.section-heading {
  font-size: 42px;
  font-weight: 600;
}

/* Item */
.service-item {
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.service-item:first-of-type {
    border-top: 1px solid #ddd;
}

/* Text */
.service-number {
  font-size: 16px;
}

.service-title {
  font-size: 30px;
  font-weight: 600;
}

.service-plus {
  font-size: 24px;
  transition: all 0.3s ease;
}

/* Content hidden */
.service-content {
  opacity: 0;
  /*transform: translateY(15px);
  transition: all 0.4s ease;*/
  font-size: 15px;
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 768px) {

  .service-item:hover {
    background: #FF4100;
    color: #fff;
    padding: 40px 10px 40px 20px;
  }

  .service-item:hover .service-content {
    opacity: 1;
    transform: translateY(0);
  }

  .service-item:hover .service-title,
  .service-item:hover .service-number,
  .service-item:hover .service-plus {
    color: #fff;
  }

  /* Hide + on hover */
  .service-item:hover .service-plus {
    opacity: 0;
    visibility: hidden;
  }

}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

  .service-item {
    padding: 20px;
  }

  .service-title {
    font-size: 22px;
  }

  .service-number {
    font-size: 14px;
  }

  .service-content {
    margin-top: 10px;
    font-size: 14px;
  }

  /* Active accordion */
  .service-item.active {
    background: #FF4100;
    color: #fff;
    padding: 25px;
  }

  .service-item.active .service-content {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hide + on open */
  .service-item.active .service-plus {
    opacity: 0;
    visibility: hidden;
  }

}



.section-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FF4100;
  margin-top: 10px;
  font-weight: bold;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem) !important;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.section-subtitle {
   margin-bottom: 5rem;
   /*color: #4d5266;*/
   max-width: 85%;
   font-size: clamp(1.2rem, 1.4vw, 1.5rem);
}
.section-subtitle .dark-text {
  color: #000;
}
.expertise-stats {
  margin-top: 80px;
}

.stat-number {
  font-size: 72px;
  font-weight: 600;
  color: #FF4100;
}

.stat-text {
  font-size: 16px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 42px;
  }

  .esection-label {
    margin-bottom: 20px;
  }
}
.services-client-logos .logo-track img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.services-client-logos .logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.services-client-logos .logo-marquee:before {
  width: 30px;
}
.services-client-logos .logo-marquee:after {
  width: 30px;
}

.services-banner {
  height: 80vh;
}
.services-banner__wrapper {
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}


.services-banner p {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  /*color: rgba(255, 255, 255, 0.8);*/
  font-weight: 500;
}
.services-banner-image {
  min-height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;;
}
.service-single-page .navbar .navbar-nav .nav-item .nav-link {
  color: #000;
}
.service-single-page .logo-light {
  display: none;
}
.service-single-page .logo-dark {
  display: block;
}
.red-text {
  color: #FF4100;
}

.faq-section {
  padding: 80px 0;
}

.faq-sub a {
  color: #FF4100;
  text-decoration: none;
}

/* Accordion */
.custom-accordion .accordion-item {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  border-color: #ccc;
}

/* Accordion Button */
.custom-accordion .accordion-button {
  background: transparent;
  font-weight: 500;
  padding: 20px;
  box-shadow: none;
  position: relative;
  padding-right: 60px;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #f5f5f5;
  color: #FF4100;
}

/* Remove default arrow */
.custom-accordion .accordion-button::after {
  display: none;
}

/* Custom + icon */
.custom-accordion .accordion-button::before {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  font-weight: 300;
  transition: all 0.3s ease;
}

/* Change to − when active */
.custom-accordion .accordion-button:not(.collapsed)::before {
  content: "−";
  transform: rotate(180deg);
}

/* Hover effect */
.custom-accordion .accordion-button:hover::before {
  color: #ff6a00;
}

/* Accordion Body */
.custom-accordion .accordion-body {
  padding: 0 20px 20px;
}

/* Smooth collapse animation */
.custom-accordion .accordion-collapse {
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Fade + slight slide animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remove focus outline */
.accordion-button:focus {
  box-shadow: none;
}
.services-industries .section-header {
  display: none;
}
.service_testimonial .section-header {
  display: none;
}
.single-service .recent-posts .section-title, .single-technology .recent-posts .section-title {
  margin-top: 0px;
}

 :root {
    --closed: 11rem;
    --open: 40rem;
    --speed: 0.4s;
    --accent: #ff824f;
    --gap: 10px;
  }

  /* ── Hero ── */
  .masthead h2 {
    font-size: clamp(14px, 0.9vw, 16px);
    text-transform: uppercase;
    padding-left: 30px;
    color: #000;
    font-weight: bold;
    padding-bottom: 8px;
    position: relative;
  }
  .masthead h2:before {
    content: "";
    position: absolute;
    width: clamp(16px, 0.9vw, 20px);
    height: clamp(16px, 0.9vw, 20px);
    background: #FF4100;
    border-radius: 50%;
    top: 0;
    left: 0;
  }
  .masthead h3 {
    font-size: clamp(24px, 2.5vw, 48px);
    font-weight: 600;
    color: #000;
  }
  .masthead p {
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 500;
    color: rgba(0,0,0,0.7);
  }
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: clamp(60px, 1.2vw, 85px);
  }
  .hero__content {
    width: 80%;
    margin: 0 auto;
  }
  .hero__content h1 {
    font-size: clamp(3.5rem, 2vw, 2.25rem);
    font-weight: bold;
    width: 88%;
    margin: 0 auto;
    margin-top: clamp(4rem, 4.75vw, 8rem);
    line-height: 1.3;
  }
  .hero__content h1 em { display: block; }
  .hero__content p {
    font-size: clamp(16px, 1.25vw, 24px);
    color: rgba(0,0,0,0.7);
    width: 70%;
    font-weight: 500;
    margin: 2rem auto;
  }
  .single-technologies .expertise-stats .stat-number { font-size: 45px; }
  .single-technologies .expertise-stats p {
    width: 100%;
    margin: 1rem auto;
    font-size: clamp(16px, 1vw, 24px);
  }
  .single-technologies .gutter { padding: 0 6.25rem; }
  .growline {
    width: 100%;
    height: 1px;
    background-color: black;
    transition: width 2s ease-in-out;
  }

  /* ── Cards (Overview) ── */
  .carded {
    background-color: #F3F3F3;
    min-height: clamp(300px, 38vh, 400px);
    border-radius: 16px;
    margin-top: 20px;
    padding: clamp(20px, 2vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .carded h4 { font-size: clamp(18px, 1.5vw, 32px); font-weight: 600; }
  .carded p  { font-size: clamp(12px, 1.1vw, 18px); width: 85%; }

  .problems .carded {
    border-radius: 24px;
}

.problems .clients .col-lg-4:nth-child(1) .carded,
.problems .clients .col-lg-4:nth-child(4) .carded {
    background: rgba(255,126,185,0.1);
}
.problems .clients .col-lg-8 .carded{
    background: rgba(255,101,163,0.2);
}
.problems .clients .col-lg-4:nth-child(2) .carded {
    background: rgba(122,252,255,0.2);
}

.problems .clients .col-lg-4:nth-child(3) .carded {
    background: rgba(254,255,156,0.2);
}
.problems .clients .col-lg-4:nth-child(5) .carded {
    background: rgba(255,247,64,0.2);
}
  /* ── Solution points ── */
  .solution-points {
    display: flex;
    border-bottom: 1px solid #DDD;
    padding-bottom: 10px;
  }
  .solution-points:last-child { border-bottom: none; }
  .solution-points .sp-content h4 {
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 600;
  }
  .solution-points .sp-content p {
    margin-top: 10px;
    font-size: clamp(12px, 1.2vw, 20px);
    color: #777;
  }
  .solution-points .sp-icon { min-width: clamp(70px, 4vw, 100px); }
  .solution-points h4 { margin: 0; }
  .sol-bg { background-color: #f6f4f0; border-radius: 16px; }

  /* ── Process-new / Why cards ── */
  .process-new .project-card {
    position: relative;
    flex: 0 0 var(--closed);
    height: clamp(420px, 50vh, 600px);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: flex-basis var(--speed), transform var(--speed);
    background-color: #f6f4f0;
  }
  .process-new .project-card[active] { flex-basis: var(--open); }
  .process-new .project-card__content {
    position: absolute;
    inset: 0;
    padding: clamp(20px, 2vw, 40px);
    background: #f6f4f0;
    z-index: 2;
    padding-top: 3rem;
  }
  .process-new .project-card__content div { height: 100%; }
  .process-new .project-card__title {
    font-weight: bold;
    font-size: clamp(16px, 1.25vw, 24px);
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
  }
  .process-new .project-card__thumb,
  .process-new .project-card__desc,
  .process-new .project-card__btn,
  .process-new .compliance-list,
  .process-new .project-card h4 { display: none; }
  .process-new .project-card[active] .project-card__content {
    flex-direction: row;
    align-items: center;
    padding: 50px;
    gap: 1.1rem;
    opacity: 1;
  }
  .process-new .project-card[active] .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(18px, 1.25vw, 32px);
    margin-bottom: 2rem;
    height: auto;
    display: block;
  }
  .process-new .project-card[active] .project-card__thumb,
  .process-new .project-card[active] .project-card__desc,
  .process-new .project-card[active] .project-card__btn,
  .process-new .project-card[active] ul,
  .process-new .project-card[active] h4 { display: block; }
  .process-new .project-card h4 {
    font-size: clamp(16px, 1.25vw, 18px);
    margin-top: 32px;
  }
  .process-new .project-card__desc { font-size: clamp(14px, 1vw, 18px); opacity: 0.7; }
  .process-new .dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding: 20px 0;
  }
  .process-new .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: 0.3s;
  }
  .process-new .dot.active { background: var(--accent); transform: scale(1.2); }
  .process-new .compliance-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
  }
  .process-new .compliance-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-weight: 500;
    font-size: clamp(14px, 1vw, 16px);
    color: #000;
  }
  .process-new .check-icon {
    min-width: clamp(20px, 1.5vw, 30px);
    min-height: clamp(20px, 1.5vw, 30px);
    background: #34c759;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .process-new .check-icon::after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 14px;
  }
  .process-new .head {
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 2rem;
    padding: 10px 20px 40px;
  }
  .process-new .nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .process-new .nav-btn:hover { filter: brightness(0.95); }
  .process-new .nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
  .process-new .slider {
  max-width: 100%;
  margin: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* old Edge/IE */
}
.process-new .slider::-webkit-scrollbar { display: none; }  /* Chrome/Safari/new Edge */
  .process-new .controls { display: flex; flex-direction: row; gap: 0.5rem; }
  .process-new .track {
    display: flex;
    gap: var(--gap);
    align-items: flex-start;
    justify-content: flex-start;
    /*width: fit-content;*/
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
  }
  .process-new .track::-webkit-scrollbar { display: none; }

  /* ── Responsive ── */
  @media (max-width: 767px) {
    :root { --closed: 4rem; --open: 22rem; }
    .hero { height: 80vh; padding-top: 20px; }
    .hero__content h1 { width: 100%; margin-top: 4rem; }
    .hero__content p { width: 100%; }
    .process-new .head { display: none; }
    .process-new .slider { padding: 0; }
    .process-new .track {
      flex-direction: column;
      scroll-snap-type: y mandatory;
      gap: 0.8rem;
      padding-bottom: 20px;
    }
    .process-new .project-card {
      min-height: 100px;
      flex: 0 0 auto;
      width: 100%;
      scroll-snap-align: start;
      height: auto;
    }
    .process-new .project-card[active] { min-height: 520px; box-shadow: none; }
    .process-new .project-card__content {
      flex-direction: row;
      justify-content: flex-start;
      padding: 1rem;
      align-items: center;
      gap: 1rem;
    }
	  
    .process-new .project-card__title { text-align: left; font-size: 1.2rem; margin-right: auto; }
    .process-new .project-card[active] .project-card__title { font-size: 24px; }
    .process-new .project-card[active] .project-card__content { align-items: flex-start; padding: 1.5rem; }
    .process-new .project-card h4 { margin-top: 20px; }
  }
  @media (max-width: 768px) {
    .carded { min-height: auto; }
    .carded.mt-0 { margin-top: 20px !important; }
    .carded.mmt-0 { margin-top: 0 !important; }
    .carded h4 { font-size: 24px; margin-bottom: 20px; }
    .carded p { font-size: 16px; width: 100%; }
    .hero { height: auto; min-height: 70vh; }
    .hero__content h1, .hero__content p { width: 100%; }
    .solution .pt-5 { padding-top: 0 !important; }
    .solution .solution-points:first-child { margin-top: 3rem; }
    .solution .solution-points .sp-content h4 { font-size: 20px; }
    .solution .solution-points .sp-content p { font-size: 16px; }
    .solution .sol-bg { border-radius: 0; }
  }
  @media (min-width: 992px) {
    .five-column-menu > .mega-menu-list {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
.blog_cta {
    background-color: #FF4100;
    padding: 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-size: cover;
    margin-top: 30px;
}
.blog_cta h4 {
    font-size: 32px;
    font-weight: 800 !important;
    margin-bottom: 0 !important;
    color: #FFF;
    width: 62%;
    line-height: 48px;
    margin-top: 0 !important;
}
.blog_cta_button .button{
    color: #000 !important;
    background-color: #fff !important;
    font-weight: 600;
    padding: 0.7rem 2rem;
    font-size: 1rem;
}

/* Hire developer page */
.hire-banner {
  min-height: 88vh;
  padding: 8rem 0;
  background: linear-gradient(180deg, #f8f8f6 0%, #ffffff 100%);
}
.hire-banner h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 600;
}
.hire-banner__wrapper {
  min-height: calc(88vh - 6rem);
  display: flex;
  align-items: center;
}
.hire-banner-badge,
.hire-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ff4100;
  background: rgba(255, 65, 0, 0.08);
  border-radius: 999px;
  padding: 0.55rem 1rem;
}
.hire-banner-title {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.95;
  font-weight: 700;
  margin: 1.3rem 0 1.25rem;
}
.hire-banner-copy {
  max-width: 620px;
  color: #4d5266;
  font-weight: 500;
  font-size:1.1rem;
}
.hire-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hire-banner-stats {
  margin-top: 4rem;
}
.hire-banner-stats .col-md-4 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hire-banner .button-bordered {
  border: 1px solid #ff4100;
  color: #ff4100;
}
.hire-banner .button-bordered:hover {
  background: #ff4100;
  color: #fff;
}
.hire-stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ff4100;
}
.hire-stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4d5266;
  font-weight: 600;
}
.hire-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.hire-card-title {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 600;
  margin: 1.25rem 0 1rem;
}
.hire-card-copy {
  color: #4d5266;
  margin-bottom: 2rem;
  line-height: 1.8;
}
/* .hire-card-grid {
  gap: 1rem;
} */
.hire-card-metric {
  background: #fafafa;
  border: 1px solid #f2f2f2;
  /* border-radius: 18px; */
  padding: 1.3rem 1rem;
}
.hire-card-metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #ff4100;
}
.hire-card-metric-label {
  color: #4d5266;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  margin-top: 0.65rem;
  display: block;
}
.hire-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.hire-card-list li {
  position: relative;
  padding-left: 2rem;
  color: #4d5266;
  line-height: 1.8;
}
.hire-card-list li::before {
  content: "\F272";
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0.3rem;
  color: #ff4100;
}
.hire-card .button {
  width: 100%;
}

.hire-why-tech {
  padding: 8rem 0;
}
.hire-why-features .hire-feature-card {
  min-height: 360px;
}
.hire-why-features .hire-feature-card .hire-feature-icon {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  display:flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 65, 0, 0.12);
}
.hire-why-label {
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}
.hire-why-title {
  font-size: clamp(2.5rem, 3.8vw, 3.8rem);
  line-height: 1.05;
  font-weight: 700;
  margin-top: 1rem;
}
.hire-why-copy {
  max-width: 600px;
  color: #4d5266;
  margin-top: 1rem;
  font-weight: 500;
  font-size:1.1rem;
}
.hire-why-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hire-why-subtitle {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hire-expertise-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  padding: 1.5rem;
}
.hire-expertise-item {
  padding: 2.5rem 1rem 1.5rem 0;
  min-height: 180px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-top: 1px solid #ddd;
}
.hire-expertise-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 65, 0, 0.12);
  color: #ff4100;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hire-expertise-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hire-expertise-item p {
  color: #4d5266;
  margin: 0;
  line-height: 1.7;
  font-size: 1.1rem;
}
.hire-why-list {
  display: grid;
  gap: 1.5rem;
}
.hire-why-list-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
}
.hire-why-list-item:last-child {
  border-bottom: none;
}
.hire-why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 65, 0, 0.12);
  color: #ff4100;
  font-weight: 700;
}
.hire-why-list-item h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
.hire-why-list-item p {
  margin: 0;
  color: #4d5266;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .hire-banner {
    padding: 5rem 0;
  }
  .hire-banner__wrapper {
    min-height: auto;
  }
  .hire-banner-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  .hire-card {
    padding: 1.75rem;
  }
}
@media (max-width: 767px) {
  .hire-banner {
    padding: 4rem 0;
  }
  .hire-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hire-banner-actions .button {
    width: 100%;
    justify-content: center;
  }
  .hire-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .hire-card-metric {
    padding: 1rem;
  }
  .hire-why-tech {
    padding: 4rem 0;
  }
  .hire-why-list-item {
    grid-template-columns: auto 1fr;
  }
}

.hire-pipeline {
  padding: 7rem 0;
  background: #f8f7f3;
}
.hire-pipeline-title {
  font-size: clamp(2.75rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  margin-top: 1rem;
}
.hire-pipeline-copy {
  max-width: 700px;
  color: #4d5266;
  font-weight: 500;
}
.hire-pipeline-steps {
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.hire-pipeline-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4.5%;
  right: 4.5%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 0;
}
.hire-pipeline-step {
  position: relative;
  z-index: 1;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
.hire-pipeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #ff4100;
  color: #ff4100;
  font-size: 1.1rem;
  font-weight: 700;
  background: #fff;
}
.hire-pipeline-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 2rem;
  min-height: 300px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}
.hire-pipeline-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 65, 0, 0.1);
  color: #ff4100;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hire-pipeline-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.4rem;
  margin-bottom: 1rem;
}
.hire-pipeline-card p {
  margin: 0;
  color: #4d5266;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .hire-pipeline-steps {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .hire-pipeline {
    padding: 4.5rem 0;
  }
  .hire-pipeline-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .hire-pipeline-steps::before {
    top: 48%;
    left: 10%;
    right: 10%;
  }
  .hire-pipeline-card {
    min-height: auto;
  }
}
.hire-dev-projects .section-header{
  display:none;
}
.hire-dev-projects .hire-dev-projects-header .section-header{
  display:block !important;
}
.hire-why-techmakers {
  padding: 7rem 0 8rem;
}
.hire-why-techmakers .hire-why-title {
  margin-bottom: 3rem;
}
.hire-feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 16px;
}
.why_stats .hire-feature-card {
  border-radius: 0 !important;
  min-height:150px;
}
.hire-feature-icon {
  display: inline-flex;
  color: #ff4100;
  font-size: 1.8rem;
  font-weight: 600;
}
.hire-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.hire-feature-card p {
  margin: 0;
  color: #4d5266;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .hire-why-techmakers {
    padding: 4.5rem 0 5rem;
  }
  .hire-feature-card {
    min-height: auto;
  }
}

.hire-stack-library {
  padding: 7rem 0 8rem;
}
.hire-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.hire-stack-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  min-height: 120px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  position: relative;
}
.hire-stack-card:hover,
.hire-stack-card.active {
  background: rgba(255, 65, 0, 0.08);
  border-color: rgba(255, 65, 0, 0.22);
}
.hire-stack-title {
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
  padding-right: 2.4rem;
}
.hire-stack-arrow {
  position: absolute;
  top: 36%;
  right: 4%;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff4100;
}
.hire-stack-count {
  margin-top: 0.8rem;
  color: #6b7280;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
}
@media (max-width: 991px) {
  .hire-stack-library {
    padding: 5rem 0 6rem;
  }
}
@media (max-width: 767px) {
  .hire-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* stack library card border control */
.hire-stack-card {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.hire-stack-card:nth-child(3n) {
  border-right: none;
}
.hire-stack-card:nth-last-child(-n+3) {
  border-bottom: none;
}
@media (max-width: 991px) {
  .hire-stack-card:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
}

/* Final CTA */
.hire-cta {
  padding: 6.5rem 0 8rem;
  background: radial-gradient(circle at center, rgba(255,65,0,0.06) 0%, rgba(255,255,255,0) 40%), linear-gradient(180deg, #f8f7f3 0%, #ffffff 100%);
}
.hire-cta-inner {
  max-width: 880px;
  margin: 0 auto;
}
.hire-cta-kicker {
  color: #ff7a4d;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}
.hire-cta-title {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.02;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}
.hire-cta-title span { color: #ff4100; font-size: 1.05em; }
.hire-cta-sub { color: #6b7280; max-width: 720px; margin: 25px auto; font-size: clamp(1.2rem, 1.4vw, 1.5rem); }
.hire-cta-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2.25rem; }
.hire-cta .button { padding: 0.9rem 1.6rem; }
.hire-cta .button-bordered { border: 1px solid rgba(0,0,0,0.12); background: transparent; color: #000; }
@media (max-width: 767px) {
  .hire-cta { padding: 3.5rem 0; }
  .hire-cta-title { font-size: clamp(1.6rem, 7vw, 2.25rem); }
  .hire-cta-actions { flex-direction: column; }
  .hire-cta .button { width: 100%; }
}
