/* Global Reset */
body {
  margin: 0;
  padding: 0;
  font-family: "Work Sans", Sans-serif;
  overflow-x: hidden;
  /* Dark background */
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-family: "Montserrat", Sans-serif;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  /* Supports all weights */
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/WorkSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  /* Supports all weights */
  font-style: normal;
}

/* Header Styling */


/* Sticky Contact Button  */

.sticky-phone {
  position: fixed;
  top: 45%;
  left: 0;
  background-image: linear-gradient(to right, hsl(273, 54%, 48%), hsl(234, 55%, 41%));
  color: white;
  padding: 15px 15px;
  border-radius: 0px 0px 10px 10px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-weight: bold;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.sticky-phone.show {
  opacity: 1;
  visibility: visible;
}

/* Sticky Contact Button End */

/* Make full header sticky */

img.message-icon,
img.phone-icon,
.dropdown-icon {
  width: 20px;
  height: 20px;
}

img.white-arrow-icon,
img.purple-arrow-icon {
  width: 16px !important;
  height: 13.7px !important;
}

/* Animated topbar */
.topbar {
  overflow: hidden;
  max-height: 60px;
  /* adjust based on your design */
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease-in-out;
}

/* When scrolled down - hide topbar smoothly */
.custom-header.hide-topbar .topbar {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  padding: 0;
}

.header-home {
  background: transparent;
}

.header-inner {
  background-image: url(../images/header/Hero-bg.webp);
  background-size: cover;
}

header.custom-header.hide-topbar {
  padding: 5px 0px 0px 0px;
  background-image: url(../images/header/Hero-bg.webp);
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 999;
}

.banner-btn button {
  position: relative;
}

.custom-header .container {
  overflow: visible;
}

.logo img {
  width: 59.5%;
}

.topbar {
  padding: 10px 0;
}

/* Navbar Links */
.nav-links li {
  margin: 0 9px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
  transition: color 0.3s;
  padding: 10px 12px;
  font-family: 'Montserrat';
}

/* .nav-links a:hover {
  color: #FFD700;
} */

/* Hamburger Button (Hidden by Default) */
.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
  /* Hide on desktop */
}

/* Close Button (Hidden by Default) */
.close-menu {
  font-size: 30px;
  color: white;
  cursor: pointer;
  text-align: right;
  margin-bottom: 10px;
  padding-right: 20px;
  display: none;
  /* Hide by default */
}

/* Dropdown Styling */

/* Basic Dropdown CSS */
.dropdown {
  position: relative;
}

/* Show on Hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  background: white;
  border: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  min-width: 100%;
  width: auto;
  padding: 0px;
  border-radius: 4px;
  overflow: hidden;
}

ul.dropdown-menu li {
  margin: 0 !important;
  text-align: left;
}

.dropdown-menu a {
  color: black;
  padding: 10px 20px;
  font-size: 13px;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a:hover {
  background: #F9F3FF;
  color: black;
}

.nav-links li a.active {
  background-color: #F9F3FF;
  /* ✅ Change as per your theme */
  color: black;
}

.live-chat,
.contact {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

.live-chat i,
.contact i {
  margin-right: 5px;
  color: white;
}

.hire-us {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 12px 23px 12px 23px;
  border-radius: 10px 10px 10px 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 16px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hire-us img {
  margin-left: 5px;
}

.snake-button:before {
  content: '';
}

.snake-button:hover::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: -1px;
  bottom: 0px;
  border: 1px solid #ffffff;
  animation: clippath 4s infinite linear;
  border-radius: 10px;
  background: unset;
  z-index: 999;
}

@keyframes clippath {

  0%,
  100% {
    clip-path: inset(0 0 98% 0);
  }

  25% {
    clip-path: inset(0 98% 0 0);
  }

  50% {
    clip-path: inset(98% 0 0 0);
  }

  75% {
    clip-path: inset(0 0 0 98%);
  }
}

.navigation-bar {
  padding: 15px 0px 25px 0px;
  border-bottom: 1px solid #ffffff99;
  position: relative;
}

.hire-us i {
  margin-left: 5px;
}

.hire-us:hover {
  background-image: linear-gradient(266deg, #173B9C 0%, #8639BE 100%);
  color: white;
  border-color: #02010100;
}

/* Sticky Header */


/* Sticky Header End*/


/* MOBILE VIEW (CSS Fix) */
@media all and (max-width: 992px) {

  /* Show Hamburger */
  .hamburger {
    display: block;
  }

  /* Hide Default Navigation */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 17%;
    right: 0;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    background: white;
    z-index: 9;
  }

  /* Show When Active */
  .nav-menu.active {
    transform: translateX(0);
    display: flex;
  }

  /* Show Close Button When Menu is Active */
  .nav-menu.active .close-menu {
    display: block;
    position: absolute;
    top: -25px;
    right: 5%;
    font-size: 50px;
    color: black;
  }

  .nav-menu.active li a {
    font-size: 14px;
    color: black;
  }

  .nav-menu.active li {
    padding: 10px 0px;
    font-family: 'Montserrat';
    text-align: left;

  }

  ul.dropdown-menu li {
    padding: 0 !important;
  }

  ul.dropdown-menu li a {
    font-size: 16px !important;
    padding: 13px 15px !important;
  }


}


@media all and (max-width: 500px) {


  .dropdown-menu {
    width: 100%;
  }

  ul.dropdown-menu li a {
    font-size: 14px !important;
    white-space: normal;
  }

  .row.d-flex.topbar {
    display: none !important;
  }

  .navigation-bar {
    padding: 15px 0px 20px 0px;
  }

  .header-inner,
  header.custom-header.hide-topbar {
    background-image: url(../images/header/Hero-bg.webp) !important;
    background-size: cover;
  }

  .nav-menu {
    top: 13%;
  }

}


/* Home Banner  */


.hero-main-banner {
  padding: 225px 0px 60px 0px;
  background-image: url(../images/hero-img/hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: -160px;
}

.hero-main-banner h2 {
  color: #FFFFFF;
  font-family: "Work Sans", Sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 55px;
  text-transform: capitalize;
}

.hero-main-banner p {
  font-size: 16px;
  font-weight: 500;
  color: white;
  width: 80%;
}

.hero-main-banner button {
  background-image: linear-gradient(to right, hsl(273, 54%, 48%), hsl(234, 55%, 41%)) !important;
  transition: opacity 0.5s linear, border-radius 0.5s ease !important;
  border-radius: 10px !important;
  color: white !important;
  padding: 13px 16px 13px 16px !important;
  gap: 0 !important;
}

.hero-main-banner .col.banner-btn {
  padding: 0;
}

.hero-main-banner button img {
  margin-left: 5px;
}

.hero-main-banner .banner-img img {
  width: 100%;
  transform: scale(1.1);
  transform-origin: 160% 50%;
}

.hero-arrow {
  width: 100%;
  position: relative;
  left: 8%;
}

.brand-image-grid {
  margin-top: 30px !important;
}


/* Home Banner End */


/* Trusted by Global Enterprises */

:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}


* {
  box-sizing: border-box;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  /* mask-image: linear-gradient(var(--mask-direction, to right),
      hsl(0 0% 0% / 0),
      hsl(0 0% 0% / 1) 20%,
      hsl(0 0% 0% / 1) 80%,
      hsl(0 0% 0% / 0)); */
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* gap: var(--gap); */
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite forwards;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }

  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }

  to {
    transform: translateY(var(--scroll-end));
  }
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 75vw;
}

section.trusted-partners {
  margin: 75px 0px 50px 0px;
}

section.trusted-partners h4 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 24px;
  font-weight: 600;
}


.brand-img {
  position: relative;
  width: 230px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-logo-first .brand-img {
  border-bottom: 1px solid #cfcfcf;
}

.brand-logo-first .brand-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background-image: url(../images/brands/Vector-42.webp);
  background-repeat: no-repeat;
  background-size: contain;
}


.brand-logo-second .brand-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background-image: url(../images/brands/Vector-41.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

/* Trusted by Global Enterprises End*/


/* Premier Services Boxes */

section.premier-services {
  padding: 50px 0px;
}

.premier-services-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  width: 100%;
  padding: 50px 0;
  cursor: pointer;
}

.sevices-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 0 0 330px;
  padding: 30px;
  border: 1px solid transparent;
  transition: 0.8s;
  cursor: pointer;
}

.sevices-cards:hover {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  box-shadow: 20px 30px 25px 10px #e5e5e5;
  transition: 0.8s;
}

.sevices-cards img {
  margin-bottom: 25px;
}

section.premier-services h3 {
  font-size: 36px;
  color: #2f2f2f;
  font-weight: 600;
}

button.card-btn {
  border: none;
  background: none;
  color: #2f2f2f;
  font-weight: 500;
  text-decoration: underline;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

button.card-btn img {
  margin: 0;
}

button.card-btn i.fas.fa-arrow-up-right-from-square {
  color: #8639BE;
  margin-left: 6px;
}

/* width */
.premier-services-cards::-webkit-scrollbar {
  height: 10px;
}

/* Track */
.premier-services-cards::-webkit-scrollbar-track {
  background-color: #E5E5E5;
  border-radius: 10px;
}

/* Handle */
.premier-services-cards::-webkit-scrollbar-thumb {
  background: #8639BE;
  border-radius: 10px;
}

.sevices-cards h5 {
  font-size: 20px;
  color: #2f2f2f;
  font-weight: 600;
}

.sevices-cards p {
  font-size: 16px;
  color: #575757;
}

/* Premier Services Boxes End*/


/* Software Development Icons  */


section.software-development-icons {
  padding: 50px 0px 30px 0px;
}

section.software-development-icons h4 {
  font-size: 36px;
  color: #2f2f2f;
  font-weight: 600;
  width: 45%;
  text-align: center;
}

section.software-development-icons p {
  font-size: 16px;
  color: #575757;
  width: 43%;
  text-align: center;
}

.software-img {
  border: 1px solid #e1e1e1;
  height: 100px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

button.btn1:hover {
  color: white;
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  background-size: 200% 100%;
  background-position: right;
}

button.btn1:hover img {
  filter: brightness(0) invert(1);
}

button.btn1 {
  border: 1px solid #8639BE;
  padding: 15px 20px;
  border-radius: 10px;
  background: transparent;
  transition: background 1s ease-in;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

button.btn2 {
  background-image: linear-gradient(to right, hsl(273, 54%, 48%), hsl(234, 55%, 41%));
  color: white;
  border: 1px solid transparent;
  padding: 15px 20px;
  border-radius: 10px;
  transition: background 0.5s ease-in;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

button.btn3 {
  border: none;
  background: transparent;
  text-decoration: underline;
  font-size: 16px;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #2f2f2f;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

button.btn2:hover {
  color: white;
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  background-size: 200% 100%;
  background-position: right;
}

button.btn2 i,
button.btn3 i {
  margin-left: 5px;
}

.software-development-btn {
  margin-top: 30px;
}

button.btn1 i.fas.fa-arrow-up-right-from-square,
button.btn3 i.fas.fa-arrow-up-right-from-square {
  color: #8639BE;
}

button.btn1:hover i.fas.fa-arrow-up-right-from-square {
  color: white;
}

/* Software Development Icons End */


/* We Help You */

.help-box-one,
.help-box-two {
  height: 350px;
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  padding: 30px;
}

.help-box-one .btn1,
.help-box-two .btn1 {
  margin-top: 15px;
}

section.we-help-you h4 {
  font-size: 36px;
  font-family: "Work Sans", sans-serif;
  color: #2f2f2f;
  font-weight: 600;
}

section.we-help-you p {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #575757;
  margin-bottom: 0;
}

section.we-help-you {
  padding: 50px 0px;
}

.help-box-one h5,
.help-box-two h5 {
  font-size: 28px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  color: #2f2f2f;
  width: 85%;
}

.help-box-one {
  background-image: url(../images/we-help-you/Vector-Img-1.webp);
  background-size: 72%;
  background-repeat: no-repeat;
  background-position: bottom right;
  transition: 0.5s;
}


.help-box-one:hover,
.help-box-two:hover {
  box-shadow: 30px 30px 30px 15px #f1f1f1;
  transition: 0.8s;
}


.help-box-two {
  background-image: url(../images/we-help-you/Vector-Img-2.webp);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: bottom right;
  transition: 0.8s;
}

.styled-heading {
  display: flex;
  align-items: center;
  width: 100%;
}

.styled-heading::before,
.styled-heading::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #e9e9e9;
}

.styled-heading h6 {
  margin: 0 15px;
  white-space: nowrap;
  font-size: 16px;
  font-family: "Montserrat", Sans-serif;
  font-weight: 400;
  color: #575757;
}

.radio-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  width: 100%;
}

.radio-card {
  width: 237px;
  height: 132px;
  border: 1px solid #A0A0A0;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
}

.radio-card:hover {
  border-color: #555;
}

.radio-card input {
  display: none;
}

.radio-card input:checked+.content::before {
  border-color: #173B9C;
  background-color: #173B9C;
}

.radio-card .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  padding: 25px;
}

.radio-card .content::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #5a5a5a;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
}

section.we-help-you button.btn2 {
  margin-top: 20px;
}

/* We Help You End*/

/* Our Pricing Tab */

.pricing-container h2 {
  font-size: 36px;
  text-align: center;
  font-family: 'Work Sans';
  color: #2f2f2f;
  font-weight: 600;
}

.pricing-container>p {
  font-size: 16px;
  font-family: 'Montserrat';
  color: #575757;
  text-align: center;
}

.toggle-container span {
  font-size: 18px;
  color: #333333;
  font-family: 'Work Sans';
  font-weight: 500;
}

.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.toggle-container:before {
  content: "";
  position: absolute;
  top: -35%;
  right: 37%;
  background-image: url(../images/our-pricing/dis-arrow-icon.webp);
  width: 40px;
  height: 17px;
  background-size: auto;
  background-repeat: no-repeat;
}

img.discount-tree {
    width: 8%;
}

.discount-box p {
    margin: 0 !important;
}

.toggle-container:after {
  content: "Save Upto 20%";
  position: absolute;
  top: -50%;
  right: 26.5%;
  font-size: 16px;
  font-family: 'Work Sans';
  color: #7E3ABC;
  font-weight: 500;
}

label.switch:before {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 285px;
  background-image: url(../images/our-pricing/christmas-cap.webp);
  width: 57px;
  height: 49px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  transition: .4s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 28px;
  width: 28px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #4CAF50;
}

input:checked+.slider:before {
  transform: translateX(26px);
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-button {
  margin: 0 5px;
  border-radius: 66px;
  padding: 8px 16px;
  border: 1px solid #8639BE;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: white;
  line-height: 33px;
}

.tab-button.active {
  color: white;
  font-size: 16px;
  font-family: "Montserrat";
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  border-radius: 66px;
  transition: opacity 0.3s ease;
}

button.tab-button:hover {
  background: linear-gradient(66.02deg, #173B9C 31.31%, #8639BE 100.08%);
  color: white;
  transition: 0.2s;
}

.pricing-table {
  display: flex;
  gap: 24px;
}

.pricing-card {
  position: relative;
  padding: 20px 16px;
  max-width: 395px !important;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  transition: 0.5s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  box-shadow: 60px 50px 100px 0px #00000014;
  background: linear-gradient(66.02deg, #173B9C 31.31%, #8639BE 100.08%);
  transition: 0.5s;
}

.pricing-card:hover h3,
.pricing-card:hover p.price,
.pricing-card:hover p.description,
.pricing-card:hover button.btn,
.pricing-card:hover ul.feature-list li,
.pricing-card:hover p.plusPackage {
  color: white;
  transition: 0.2s;
}

ul.feature-list li p {
  margin: 0;
  width: 85%;
}

.pricing-card:hover button.btn img {
  filter: grayscale(100%) brightness(0);
}

.pricing-card:hover ul.feature-list i.fas.fa-check {
  background-color: #91c709;
  color: white;
}

.pricing-card:hover button.btn {
  background: white;
  color: black;
}

.pricing-card h3 {
  color: #2f2f2f;
  font-size: 28px;
  font-family: 'Work Sans';
  font-weight: 600;
}

.discount-box {
  color: #763ABA;
  font-family: "Montserrat", Sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  width: 205px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #F4E8FF;
  padding: 3px 5px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #A864DF;
  border-radius: 64px 64px 64px 64px;
}

.pricing-card p.description {
  margin: 0;
  font-size: 16px;
  font-family: 'Montserrat';
  font-weight: 400;
  line-height: 24px;
  padding: 20px 0;
}

.pricing-card p.price {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 79.2px;
  letter-spacing: -0.3px;
}

span.perhour {
  font-size: 18px;
  font-weight: 400;
  color: #2f2f2f;
  font-family: 'Work Sans';
}

.pricing-card button.btn {
  width: 100%;
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pricing-card button.btn i.fas.fa-arrow-up-right-from-square {
  margin-left: 6px;
}

ul.feature-list li {
  display: flex;
  align-items: center;
  padding: 6px 0;
}

ul.feature-list i.fas.fa-check {
  width: 32px;
  height: 32px;
  background: #E8EDFB;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #8639BE;
  margin-right: 13px;
}

ul.feature-list {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
  height: 280px;
  overflow-y: scroll;
}

section.our-pricing {
  padding: 80px 0px;
  background: #F8F9FF;
}

ul.feature-list li {
  font-size: 16px;
  font-family: 'Montserrat';
  color: #575757;
  font-weight: 500;
}

ul.feature-list::-webkit-scrollbar {
  width: 5px;
}

/* Track */
ul.feature-list::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* Handle */
ul.feature-list::-webkit-scrollbar-thumb {
  background: #D0DBF7;
  border-radius: 10px;
}

p.plusPackage {
  font-size: 16px;
  color: #2f2f2f;
  font-family: 'Work Sans';
  font-weight: 500;
  margin-top: 15px;
}

span.best-seller {
  position: relative;
}

span.best-seller {
  position: absolute;
  top: 25px;
  right: -40px;
  rotate: 45deg;
  background: red;
  color: white;
  width: 170px;
  text-align: center;
  line-height: 40px;
}

/* Our Pricing Tab End*/

/* Testmonials Section */

.testimonials-section .testimonials h2 {
  font-size: 28px;
}

.testimonials-section .swiper-slide {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  border: 1px solid #E5E5E5;
  height: auto;
}

img.testmonials-stars {
  width: 131px;
  height: 18px;
}

.testimonials-section .review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-direction: row;
}

.testimonials-section .review-header .user-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonials-section .review-content {
  font-size: 16px;
  font-family: 'Montserrat';
  line-height: 25px;
}

.testimonials-section .review-content p {
  margin-top: 35px;
}

.testimonials-section .user-profile {
  display: flex;
  gap: 20px;
}

.testimonials-section .user-profile strong {
  font-family: 'Work Sans';
  font-size: 16px;
  color: #2f2f2f;
  font-weight: 600;
}

.testimonials-section .user-profile small {
  font-size: 14px;
  font-family: 'Montserrat';
  color: #2f2f2f;
}

.testimonials-section .review-content {
  text-align: left;
  margin-top: 10px;
}

.testimonials-section .stars {
  color: #F0AD4E;
  font-size: 25px;
  padding: 18px 0px 0px 0px;
}

.testimonials-section .testimonial-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.testimonials-section .test-hed {
  width: 50%;
}

.testimonials-section .test-hed h2 {
  font-size: 36px;
  font-family: 'Work Sans';
  font-weight: 600;
  color: #2f2f2f;
}

.testimonials-section .brand-rating {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: end;
}

.testimonials-section .brand-rating .star img {
  width: 40px;
  height: 40px;
}

.testimonials-section span.rating-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonials-section .rating {
  font-size: 40px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
}

section.testimonials-section {
  padding: 60px 0px 20px 0px;
}

.testimonials-section .swiper.mySwiper {
  margin-top: 50px;
  padding: 0px 0px 125px 0px;
}

.testimonials-section .brand-box {
  width: 205px;
  height: 87px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonials-section .brand-box.line {
  position: relative;
}

.testimonials-section .brand-box.line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/testmonials/Line-326.webp);
  height: 72px;
  width: 2px;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonials-section .brand-box.line:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../images/testmonials/Line-326.webp);
  height: 72px;
  width: 2px;
  background-size: cover;
  background-repeat: no-repeat;
}


.testimonials-section .swiper-slide.swiper-slide-next {
  box-shadow: 60px 50px 100px 0px #00000014;
}

.testimonials-section span.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid black;
  background: transparent;
  opacity: 0.5;
}

.testimonials-section span.swiper-pagination-bullet.swiper-pagination-bullet-active,
section.premier-services span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #173B9C;
  opacity: 1;
  border: none;
  margin: 0 8px !important;
  position: relative;
  width: 10px;
  height: 10px;
}

.testimonials-section span.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
section.premier-services span.swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  border: 1px solid #173B9C;
  height: 20px;
  width: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

section.premier-services .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px;
}

.testimonials-section .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 45px;
}

.swiper-container-wrapper {
  position: relative;
}

/* Arrows ko container wrapper per position karo */
.testimonials-section .swiper-button-prev,
.testimonials-section .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Move arrows outside the swiper area */
.testimonials-section .swiper-button-prev {
  left: -80px;
  /* Adjust as needed */
}

.testimonials-section .swiper-button-next {
  right: -80px;
}


/* Testmonials Section End*/

/* Blog Section */

.blogSwiper {
  padding: 60px 0px 40px 0px;
  overflow: visible;
}

.Blogs-section .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-family: 'Work Sans';
  text-align: center;
  font-weight: 600;
}

.blog-section p {
  color: #575757;
  font-size: 16px;
  font-family: 'Montserrat';
  text-align: center;
  margin: 20px 0px 0px 0px;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 32px 24px;
  box-shadow: 60px 50px 100px 0px #00000014;
  border: 1px solid #ededed;
  border-radius: 15px;
  margin-top: -65px;
  z-index: 999 !important;
  position: relative;
  background: white;
  width: 560px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 55px;
}

.blog-card img {
  width: 480px;
  height: 313px;
  object-fit: cover;
  border-radius: 15px;
}

.blog-img {
  width: 480px;
  height: 313px;
}

.blog-img {
  position: relative;
}

.blog-img:before {
  content: '';
  position: absolute;
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  width: 425px;
  height: 348px;
  border-radius: 12px;
  opacity: 10%;
  z-index: -1;
  left: 6%;
  top: -16px;
}

.blog-title {
  font-size: 20px;
  font-family: 'Work Sans';
  font-weight: 600;
  margin-bottom: 10px;
  color: #2f2f2f;
  text-decoration: none;
}

.blog-desc,
p.blog-desc {
  font-size: 16px;
  font-family: 'Montserrat';
  color: #575757;
  text-align: left;
}

.blog-link {
  color: #2f2f2f;
  text-decoration: underline;
  font-weight: bold;
  font-size: 16px;
  font-family: 'Montserrat';
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.Blogs-section .swiper-button-next {
  display: none;
}

.Blogs-section .swiper-button-prev {
  display: none;
}

section.Blogs-section {
  padding: 0px 0px 100px 0px;
  overflow-x: hidden;
}

.blog-section button.btn2 {
  display: block;
  margin: 0 auto;
}

/* Blog Section End */

/* Footer  */

.footer-section.footer-col-one img {
  width: 194px !important;
}

.footer-section.footer-col-one {
  width: 25%;
}

.footer-section.footer-col-two {
  width: 15%;
}

.footer-section.footer-col-three {
  width: 20%;
}

.footer-section.footer-col-four {
  width: 20%;
}

.footer-section.footer-col-five {
  width: 20%;
}

.footer {
  background-color: #0a3192;
  color: white;
  padding: 40px 0px 0px 0px;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1250px;
  margin: 0 auto;
  gap: 25px;
}

.footer-section {
  margin: 10px;
}

.footer-section.footer-col-one p {
  width: 95%;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-family: 'Work Sans';
  font-weight: 600;
}

.footer-section a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 5px 0;
}

.footer-section>p {
  font-size: 16px;
  font-family: 'Montserrat';
  color: white;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  text-decoration: none;
  font-size: 20px;
  color: white;
}

.footer-bottom {
  text-align: center;
  background-color: #EEF0FF;
  color: black;
  padding: 30px 0;
  margin-top: 20px;
  border-radius: 30px 30px 0px 0px;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1250px;
  margin: 0 auto;
}

.footer-bottom-content p {
  margin: 0;
  font-size: 16px;
  font-family: 'Montserrat';
  color: #2f2f2f;
}

.footer-section a {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.3px;
  margin: 20px 0;
}

.footer-section img {
  margin-bottom: 30px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  text-decoration: none !important;
  transition: transform 0.3s ease;
  background-color: transparent !important;
  margin: 5px 0 20px 0;
}

.social-icons a:hover {
  transform: scale(1.1);
  /* Optional zoom on hover */
  background-color: transparent !important;
  /* ✅ No background on hover too */
  color: white;
  /* No color change */
  border-color: white;
  transform: translateY(-10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  color: gray !important;
  font-weight: 600;
}

p.us-address img {
  margin: 0px 10px 0px 0px;
}

/* Footer End */


/* LapTop Screen Responsive */

@media all and (max-width: 1450px) {

  .container {
    max-width: 1250px;
  }

  .container-fluid {
    max-width: 1250px;
  }

  .blog-img {
    width: 350px;
  }

  .blog-img:before {
    width: 330px;
  }

  .testimonials-section .swiper-button-prev {
    left: -45px;
  }

  .testimonials-section .swiper-button-next {
    right: -45px;
  }

  .hed-col-first {
    width: 20%;
  }

  .hed-col-second {
    width: 65%;
  }

  .hed-col-third {
    width: 15%;
  }

  .logo img {
    width: 80%;
  }

  .nav-links li {
    margin: 0 7px;
  }

  .live-chat,
  .contact {
    font-size: 14px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .hire-us {
    font-size: 14px;
  }

  .hero-main-banner h2 {
    font-size: 43px;
    line-height: 50px;
  }

  .hero-main-banner p {
    font-size: 16px;
  }

  .wrapper {
    max-width: 85vw;
  }

  .brand-img {
    width: 210px;
    height: 100px;
  }

  section.premier-services {
    padding: 30px 0px;
  }

  .sevices-cards {
    gap: 5px;
    flex: 0 0 300px;
    padding: 20px;
  }

  .sevices-cards img {
    margin-bottom: 20px;
  }

  .sevices-cards p {
    font-size: 16px;
  }

  .sevices-cards h5 {
    font-size: 20px;
  }

  button.card-btn {
    font-size: 14px;
  }

  section.premier-services h3 {
    font-size: 30px;
  }

  section.software-development-icons h4 {
    font-size: 36px;
    width: 62%;
  }

  section.software-development-icons p {
    font-size: 16px;
    width: 65%;
  }

  section.software-development-icons .marquee__group {
    gap: 20px;
  }

  .software-img {
    height: 90px;
    width: 90px;
  }

  button.btn1 {
    font-size: 16px;
  }

  button.btn2,
  button.btn3 {
    font-size: 16px;
  }

  section.we-help-you h4 {
    font-size: 36px;
  }

  section.we-help-you p {
    font-size: 16px;
  }

  .help-box-one,
  .help-box-two {
    height: 340px;
  }

  .help-box-one h5,
  .help-box-two h5 {
    font-size: 25px;

  }

  .radio-card .content {
    font-size: 18px;
    padding: 0;
  }

  .radio-card {
    width: 100%;
    height: 125px;
  }

  section.our-pricing {
    padding: 50px 0px;
  }

  .pricing-container h2 {
    font-size: 36px;
  }

  .pricing-container>p {
    font-size: 14px;
  }

  .toggle-container span {
    font-size: 18px;
  }

  .switch {
    width: 55px;
    height: 30px;
  }

  .slider:before {
    height: 25px;
    width: 25px;
  }

  .tab-button {
    padding: 5px 16px;
    font-size: 14px;
  }

  .tab-button.active {
    font-size: 16px;
  }

  .pricing-table {
    gap: 20px;
  }

  .pricing-card h3 {
    font-size: 28px;
  }

  .discount-box {
    font-size: 12px;
    width: 180px;
  }

  .pricing-card p.description {
    font-size: 16px;
  }


  .pricing-card p.price {
    font-size: 72px;
    line-height: 65px;
  }

  .pricing-card button.btn {
    font-size: 14px;
  }

  ul.feature-list li {
    font-size: 16px;
  }

  ul.feature-list i.fas.fa-check {
    width: 30px;
    height: 30px;
  }

  .testimonials-section .test-hed h2 {
    font-size: 36px;
  }

  .testimonials-section .rating {
    font-size: 40px;
  }

  .testimonials-section .review-content {
    font-size: 14px;
  }

  .testimonials-section .review-content p {
    margin-top: 25px;
    font-size: 16px;
  }

  .testimonials-section .swiper-slide {
    height: auto;
  }

  .blog-section h2 {
    font-size: 36px;
    width: 70%;
    margin: 0 auto;
  }

  .blog-section p {
    font-size: 16px;
  }

  .blog-card img {
    width: 100%;
    height: 250px;
  }

  .blog-content {
    margin-top: -100px;
    width: 372px;
    height: 230px;
    gap: 30px;
  }

  .blog-title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .blog-desc,
  p.blog-desc {
    font-size: 16px;
  }

  .blog-link {
    font-size: 14px;
  }

  .blog-img:before {
    width: 100%;
    height: 250px;
  }

  .footer-container {
    width: 1250px;
    gap: 20px;
  }

  .footer-section.footer-col-one img {
    width: 90%;
  }

  .footer-section h3 {
    font-size: 22px;
  }

  .footer-section a {
    font-size: 14px;
    line-height: 14px;
  }

  .social-icons a {
    font-size: 20px !important;
    margin: 0 5px 12px 0;
    padding: 10px 11px;
  }

  .footer-bottom-content {
    width: 1250px;
    margin: 0 auto;
  }

  .footer-bottom {
    padding: 25px 0;
  }

  .footer-bottom-content p {
    font-size: 14px;
  }

}

/* LapTop Screen Responsive End */

/* Table Screen Responsive */

@media all and (max-width: 800px) {

  .live-chat,
  .contact {
    font-size: 12px;
  }

  .topbar {
    padding: 5px 0;
  }

  .hed-col-first {
    width: 30%;
  }

  .hed-col-second {
    width: 50%;
  }

  .hed-col-third {
    width: 20%;
  }

  .footer-container {
    width: 700px;
    gap: 20px;
    flex-direction: column;
  }

  .footer-bottom-content {
    width: 700px;
  }

  .hero-main-banner {
    padding: 180px 0px 60px 0px;
  }

  .hero-main-banner .banner-img img {
    width: 100%;
    transform: scale(1);
    margin-top: 50px;
  }

  section.trusted-partners h4 {
    text-align: center;
  }



  .sevices-cards {
    flex: 0 0 230px;
    padding: 15pcx;
  }

  .premier-services-cards {
    gap: 10px;
    padding: 30px 0;
  }

  section.software-development-icons h4 {
    width: 60%;
  }

  section.software-development-icons p {
    font-size: 14px;
    width: 60%;
  }

  .radio-card {
    padding: 10px;
    height: 100px;
  }

  .radio-card .content {
    font-size: 12px;
    padding: 0;
    line-height: 18px;
    gap: 15px;
  }

  .toggle-container:before {
    top: -42%;
    right: 31%;

  }

  .toggle-container:after {
    top: -67%;
    right: 16.5%;
    font-size: 14px;
  }

  label.switch:before {
    bottom: 40px;
    left: 245px;
  }

  .pricing-table {
    gap: 5px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .discount-box {
    font-size: 10px;
    width: 140px;
  }

  .pricing-card p.description {
    font-size: 12px;
    line-height: 18px;
  }

  .pricing-card p.price {
    font-size: 50px;
    line-height: 45px;
  }

  ul.feature-list li {
    font-size: 12px;
  }

  p.plusPackage {
    font-size: 14px;
  }

  section.testimonials-section {
    padding: 50px 0px 20px 0px;
  }

  .testimonials-section .test-hed {
    width: 40%;
  }

  .testimonials-section .brand-rating {
    width: 60%;
  }

  .testimonials-section .rating {
    font-size: 30px;
  }

  .star img {
    width: 75%;
  }

  .testimonials-section .review-content p {
    margin-top: 20px;
  }

  .blog-card img {
    width: 70%;
    height: 200px;
  }

  .blog-content {
    margin-top: -135px;
    width: 390px;
    gap: 20px;
  }

  .blogSwiper {
    padding: 60px 0px 50px 0px;
  }

  section.Blogs-section {
    padding: 0px 0px 60px 0px;
  }

  .footer-section.footer-col-one img {
    width: 30%;
  }


}

/* Table Screen Responsive End*/


/* Mobile Responsive */

@media all and (max-width: 500px) {

  .testimonials-section .swiper-button-prev {
    display: none;
  }

  .testimonials-section .swiper-button-next {
    display: none;
  }

  a#stickyPhone {
    display: none;
  }

  .container {
    width: 390px !important;
  }

  .container-fluid {
    width: 390px !important;
  }

  .footer-bottom-content {
    width: 380px;
    flex-direction: column;
    gap: 20px;
  }

  .pricing-table {
    gap: 30px;
    flex-direction: column;
  }


  .radio-group {
    flex-direction: column;
  }

  .footer-container {
    width: 430px;
    gap: 10px;
  }

  .footer-section.footer-col-one {
    width: 100%;
  }

  .footer-section.footer-col-two {
    width: 100%;
  }

  .footer-section.footer-col-three {
    width: 100%;
  }

  .footer-section.footer-col-four {
    width: 100%;
  }

  .footer-section.footer-col-five {
    width: 100%;
  }

  .logo img {
    width: 100%;
  }

  .hed-col-first {
    width: 50%;
  }

  .hed-col-second {
    width: 50%;
  }

  .hed-col-third {
    width: 50%;
  }

  .hire-us {
    display: none !important;
  }

  .hamburger {
    font-size: 30px;
  }

  .hero-main-banner{
    padding: 200px 0px 60px 0px;
  }

  .hero-main-banner .banner-img img {
    margin-top: 10px;
  }

  .hero-main-banner h2 {
    font-size: 28px;
    line-height: 39px;
    text-align: center;
  }

  .hero-main-banner p {
    font-size: 14px;
    text-align: center;
    width: 100%;
  }

  .col.banner-btn {
    width: 100%;
  }

  .col.hero-arrow {
    display: none;
  }

  .hero-main-banner button {
    font-size: 14px;
    display: block;
    margin: 0 auto;
  }

  section.content.hero-main-banner .brand-image-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px !important;
    place-items: center;
  }

  section.trusted-partners h4 {
    font-size: 20px;
    font-weight: 600;
    width: 90%;
  }

  section.home-trusted-partners {
    margin: 50px 0px;
  }

  section.trusted-partners {
    margin: 50px 0px 50px 0px;
  }

  section.trusted-partners .container-fluid {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  section.trusted-partners .wrapper {
    max-width: 100vw;
  }

  .brand-img {
    width: 33.33%;
    height: 100px;
  }

  .brand-img img {
    width: 80%;
  }

  section.premier-services h3 {
    font-size: 24px;
    text-align: center;
  }

  .sevices-cards {
    flex: 0 0 100%;
  }

  section.software-development-icons h4 {
    width: 100%;
    font-size: 20px;
  }

  section.software-development-icons p {
    font-size: 14px;
    width: 100%;
  }

  .software-img {
    height: 75px;
    width: 75px;
  }

  section.software-development-icons .marquee__group {
    gap: 10px;
  }

  .software-development-btn {
    flex-direction: column !important;
    width: 100%;
  }

  .software-development-btn button {
    width: 100%;
  }

  section.we-help-you h4 {
    font-size: 24px;
    text-align: center;
  }

  section.we-help-you p {
    font-size: 14px;
    text-align: center;
  }

  section.we-help-you .row {
    flex-direction: column !important;
  }

  .help-box-one,
  .help-box-two {
    width: 100%;
    height: 438px;
    background-size: 100%;
  }

  .help-box-one h5,
  .help-box-two h5 {
    font-size: 22px;
  }


  .radio-card .content {
    flex-direction: row;
    font-size: 16px;
  }

  .radio-card {
    width: 100%;
    height: 60px;
    align-items: start;
    text-align: left;
    padding: 0px 15px;
  }

  section.we-help-you button.btn2 {
    margin-top: 20px;
    width: 100%;
  }

  .pricing-container h2 {
    font-size: 24px;
    font-weight: 600;
  }

  .pricing-container>p {
    font-size: 16px;
  }

  .pricing-card h3 {
    font-size: 28px;
  }

  .discount-box {
    font-size: 12px;
    width: 175px;
  }

  .pricing-card p.description {
    font-size: 14px;
    line-height: 25px;
  }

  .pricing-card p.price {
    font-size: 60px;
    line-height: 40px;
  }

  ul.feature-list li {
    font-size: 14px;
  }

  .testimonials-section .testimonial-top {
    flex-direction: column;
  }

  .testimonials-section .test-hed {
    width: 100%;
  }

  .testimonials-section .test-hed h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  section.process-uiux.process-uiux-ai-ml-development {
    padding: 50px 0px;
    margin: 0 !important;
  }

  section.process-uiux.process-uiux-ai-ml-development button.btn2 {
    margin-top: 100px !important;
  }

  .testimonials-section .brand-rating {
    width: 100%;
  }

  .brand-box:nth-child(3) img {
    width: 100%;
  }

  .brand-box:nth-child(1) img {
    width: 90%;
  }

  .testimonials-section .brand-box {
    width: 100% !important;
    height: auto !important;
    justify-content: space-evenly;
  }

  .testimonials-section .rating {
    font-size: 24px;
  }

  .star img {
    width: 24px !important;
    height: 24px !important;
  }

  .testimonials-section .review-content {
    font-size: 14px;
  }

  .blog-section h2 {
    font-size: 24px;
  }

  .blog-section p {
    font-size: 14px;
  }


  .blog-img {
    width: 100%;
    height: 335px;
  }

  .blog-content {
    margin-top: -110px;
    width: 100%;
  }

  .blogSwiper {
    padding: 30px 0px 30px 0px;
  }

  .blog-section button.btn2 {
    width: 100%;
  }

  .footer-section.footer-col-one img {
    width: 65%;
  }

  .footer-section a {
    font-size: 16px;
    line-height: 20px;
  }

  .toggle-container:after {
    top: -68%;
    right: -4.5%;
  }

  .toggle-container:before {
    top: -56%;
    right: 29%;
  }

  .blog-card img {
    width: 100%;
    height: 250px;
  }

  label.switch:before {
    width: 55px;
    height: 60px;
    bottom: 45px;
    left: 145px;
  }


}

/* Mobile Responsive End*/



/* Innerpages Css */

/* How We Work */


/* Banner Section */


.brand-img-star {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.brand-img-star img {
  width: 100%;
}

.brand-image-grid {
  margin: 30px 0 20px 0 !important;
  gap: 30px !important;
}

.brand-img-star:nth-child(2) {
  position: relative;
}

.brand-img-star:nth-child(2):before {
  content: "";
  position: absolute;
  top: -7px;
  left: -20px;
  background-image: url(../images/how-we-work/rating-divider.webp);
  width: 1px;
  height: 67px;
}

.brand-img-star:nth-child(2):after {
  content: "";
  position: absolute;
  top: -7px;
  right: -20px;
  background-image: url(../images/how-we-work/rating-divider.webp);
  width: 1px;
  height: 67px;
}

section.how-we-work-sec {
  padding: 100px 0px 70px 0px;
}

.work-col-1 h2 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.3px;
}

.work-col-1 h5 {
  color: #173B9C;
  font-family: "Montserrat", Sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.work-col-1 p {
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.work-col-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-right: 95px;
}


/* Banner Section End*/


/* Here’s How It Works Section */

.setps-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  width: 121px;
  height: 121px;
  position: relative;
}

.setps-box:before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 153px;
  height: 153px;
  background: url(../images/how-we-work/round-border-.webp);
}


section.how-it-works h3 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.3px;
  text-align: center;
}

.step-box-middle {
  gap: 240px;
  position: relative;
}

.step-box-middle:before {
  content: '';
  position: absolute;
  background: url(../images/how-we-work/work-road-element-1.webp) no-repeat;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
  height: 100%;
}

section.how-it-works {
  padding: 100px 0px;
  background: #F8F9FF;
}

.setps-box h4.title {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: -0.3px;
  margin: 0;
}

.setps-box p.description {
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}

.content-box {
  width: 412px;
  height: auto;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  gap: 20px;
  border-radius: 12px;
  border: 1px solid #E5E5E5;
  transition: 0.5s;
}

.content-box:hover{
    background: linear-gradient(86deg, #173B9C, #8639BE);
    transition: 0.5s;
}

.content-box:hover h5, .content-box:hover p {
  color: white;
  transition: 0.2s;
}

p.content-box-description {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #575757;
  font-family: 'Montserrat';
}

h5.content-box-title {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.3px;
  margin: 0;
}

.content-box-col1 {
  gap: 460px;
  padding-top: 130px;
  position: relative;
}

.content-box-col1:before {
  content: "";
  position: absolute;
  top: -30px;
  right: -9%;
  background: url(../images/how-we-work/Line-8.webp) no-repeat;
  height: 1721px;
  width: 1px;
}

.content-box-col2 {
  gap: 470px;
  justify-content: center;
  position: relative;
}

.content-box-col2:before {
  content: "";
  position: absolute;
  top: -30px;
  left: -9%;
  background: url(../images/how-we-work/Line-8.webp) no-repeat;
  height: 1721px;
  width: 1px;
}

.setps-box.line-left {
  position: relative;
}

.setps-box.line-left:after {
  content: "";
  position: absolute;
  background: url(../images/how-we-work/Line-15.webp);
  height: 1px;
  width: 494px;
  right: 137px;
}

.setps-box.line-right {
  position: relative;
}

.setps-box.line-right:after {
  content: '';
  position: absolute;
  background: url(../images/how-we-work/Line-328-right.webp) no-repeat;
  height: 1px;
  width: 494px;
  left: 137px;
}

/* Here’s How It Works Section End*/



/* Software Solutions */

.software-solutions-cols {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section.software-solutions {
  padding: 100px 0px;
}

section.software-solutions h2 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.3px;
  text-align: center;
}

section.software-solutions p {
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.software-solutions-boxes4,
.software-solutions-boxes3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.software-content-boxes4 h3,
.software-content-boxes3 h3 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.3px;
}

.software-content-boxes4 p,
.software-content-boxes3 p {
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px;
  text-align: left !important;
  margin: 0px !important;
}

.software-content-boxes4 {
  padding: 24px;
  width: 297px;
  height: 268px;
  border: 1px solid #C9C9C9;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: 0.8s;
}

.software-content-boxes4:hover,
.software-content-boxes3:hover {
  box-shadow: 30px 30px 30px 15px #f1f1f1;
  transition: 0.8s;
}

.software-content-boxes3 {
  padding: 24px;
  width: 403px;
  height: 246px;
  border: 1px solid #C9C9C9;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: 0.8s;
}

/* Software Solutions End*/

/* Counter Box Section */

section#counterSection {
  padding-bottom: 50px;
}

.content-counter-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid #8639BE;
  padding: 40px;
  border-radius: 12px;
}

.content-counter-box-col1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.content-counter-box-col2 {
  width: 50%;
  position: relative;
}

.content-counter-box-col2:before {
  content: '';
  position: absolute;
  background: url(../images/how-we-work/Vector-11.webp) no-repeat;
  width: 2px;
  height: 360px;
  z-index: 9;
  left: -170px;
  right: 0;
  margin: 0 auto;
}

.content-counter-box-col2:after {
  content: '';
  position: absolute;
  background: url(../images/how-we-work/Vector-11.webp) no-repeat;
  width: 2px;
  height: 360px;
  z-index: 9;
  left: 180px;
  right: 0;
  margin: 0 auto;
  top: 0;
}

.counter-box-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.counter-box-main:nth-child(2):before {
  content: '';
  position: absolute;
  background: url(../images/how-we-work/Vector-13.webp) no-repeat;
  width: 540px;
  height: 2px;
  z-index: 9;
  left: 0px;
  right: 0;
  margin: 0 auto;
  top: 0;
}

.counter-box-main:nth-child(2):after {
  content: '';
  position: absolute;
  background: url(../images/how-we-work/Vector-13.webp) no-repeat;
  width: 540px;
  height: 2px;
  z-index: 9;
  left: 0px;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}

.counter-box {
  width: 100%;
  padding: 30px;
}

.counter-icon {
  width: 100%;
}

.counter-box h5 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.counter-box p {
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.content-counter-box-col1 h3 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.3px;
}

.content-counter-box-col1 p {
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}


/* LapTop Screen Responsive */

@media all and (max-width: 1450px) {

  section.how-we-work-sec {
    padding: 50px 0px 30px 0px;
  }

  .work-col-1 h2 {
    font-size: 36px;
  }

  .work-col-1 h5 {
    font-size: 22px;
    line-height: 25px;
  }

  .work-col-1 p {
    font-size: 16px;
  }

  section.how-it-works {
    padding: 50px 0px;
  }

  section.how-it-works h3 {
    font-size: 36px;
  }

  .content-box {
    width: 400px;
    padding: 20px;
    gap: 10px;
  }

  h5.content-box-title {
    font-size: 20px;
  }

  p.content-box-description {
    font-size: 16px;
    line-height: 22px;
  }

  .content-box-col1 {
    gap: 500px;
    padding-top: 100px;
  }

  section.software-solutions {
    padding: 50px 0px;
  }

  section.software-solutions h2 {
    font-size: 36px;
  }

  section.software-solutions p {
    font-size: 16px !important;
  }

  .software-solutions-cols {
    gap: 10px;
  }

  .software-content-boxes4 h3,
  .software-content-boxes3 h3 {
    font-size: 20px;
  }

  .software-content-boxes4 p,
  .software-content-boxes3 p {
    font-size: 14px !important;
    line-height: 22px;
  }

  .software-content-boxes4 {
    height: 250px;
  }

  .software-content-boxes3 {
    height: 225px;
  }

  .content-counter-box-col1 h3 {
    font-size: 36px;
  }

  .content-counter-box-col1 p {
    font-size: 16px;
    line-height: 25px;
  }

  .counter-box h5 {
    font-size: 20px;
  }

  .counter-box p {
    font-size: 15px;
    line-height: 20px;
  }


}

/* LapTop Screen Responsive End*/

/* Table Screen Responsive */

@media all and (max-width: 800px) {

  .content-box-col1 {
    gap: 25px;
    padding-top: 0;
  }

  .step-box-middle {
    display: none !important;
  }

  .content-box-col2 {
    gap: 25px;
    margin-top: 25px;
  }

  .content-box-col1:before,
  .content-box-col1:after {
    display: none;
  }

  .software-solutions-boxes4,
  .software-solutions-boxes3 {
    flex-wrap: wrap;
  }

  .software-content-boxes3 {
    width: 297px;
  }

  .content-counter-box {
    padding: 25px;
  }

  .content-counter-box-col1 h3 {
    font-size: 25px;
    line-height: 32px;
  }

  .counter-box {
    padding: 10px;
  }

  .counter-box-main:nth-child(2):before,
  .counter-box-main:nth-child(2):after {
    background-size: 100% 100%;
    width: 100%;
  }

  .content-counter-box-col2:before {
    height: 100%;
    left: -110px;
  }

  .content-counter-box-col2:after {
    height: 100%;
    left: 110px;
  }

  .counter-box h5 {
    font-size: 16px;
  }

  .counter-icon {
    width: 33.333%;
  }

  .counter-box {
    width: 33.333%;
  }

  .counter-box p {
    font-size: 10px;
    line-height: 14px;
  }

}

/* Table Screen Responsive End*/

/* Mobile Screen Responsive */

@media all and (max-width: 500px) {

  .work-col-1 {
    padding-right: 0;
  }

  .work-col-2 img {
    width: 100%;
  }

  .work-col-1 h2 {
    font-size: 28px;
  }

  section.how-it-works h3 {
    font-size: 28px;
  }

  section.software-solutions h2 {
    font-size: 28px;
  }

  .content-counter-box {
    padding: 25px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .content-counter-box button.btn2 {
    width: 100%;
  }

  .content-counter-box-col1 h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .content-counter-box-col1 {
    width: 100%;
    gap: 15px;
  }

  .content-counter-box-col2 {
    width: 100%;
  }

  .counter-icon img {
    width: 100%;
  }

  section.how-we-work-sec {
    text-align: center;
  }

  section.how-we-work-sec button.btn2 {
    width: 100%;
  }

  .software-content-boxes4,
  .software-content-boxes3 {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  section.software-solutions p {
    font-size: 16px !important;
    text-align: center !important;
  }


}

/* Mobile Screen Responsive */

/* How We Work End*/


/* Blogs Page */

section.blogs-tile-section {
  padding: 50px 0px 100px 0px;
}

.category-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-masonry-grid1 .featured-blog {
  width: 100%;
  height: 548px;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.blog-masonry-grid2 .featured-blog {
  width: 100%;
  height: 262px;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.featured-blog:before {
  content: '';
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.35%, rgba(0, 0, 0, 0.670066) 63.9%, rgba(0, 0, 0, 0.9) 82.06%);
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.featured-blog img.blog-image {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
  border-radius: 10px;
}

img.author-image {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.blog-page-card {
  width: 30%;
  background-color: #333;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
}

.blog-content-box {
  z-index: 1;
}

.blog-masonry-grid1 .blog-content-box h2 a {
  color: #FFFFFF;
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.3px;
}

.blog-masonry-grid2 .blog-content-box h2 a {
  color: #FFFFFF;
  font-family: "Work Sans", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.3px;
}

.blog-content-box p {
  font-size: 14px;
  font-family: 'Montserrat';
}

.blog-category {
  background: #fff;
  padding: 0px 10px;
  border-radius: 5px;
  font-family: 'Montserrat';
  z-index: 9;
  font-size: 14px;
  font-weight: 500;
  line-height: 33px;
  color: #2f2f2f;
}

.blog-meta {
  color: #ccc;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.read-more {
  display: block;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.blog-masonry-grid2 {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Blogs Page End*/

/*Web Devlopment page*/

body.page-web-dev header.custom-header {
  background: url(../images/web-development/web-dev-hero.webp) no-repeat;
  padding-bottom: 0;
}

section.webdesign-banner {
  padding: 26px 0;
  position: relative;
}

section.webdesign-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/web-development/uiux-hero-bg.webp);
  background-size: cover;
  background-position: bottom center;
  width: 100%;
  height: 100%;
  z-index: -1;
}

section.webdesign-banner .banner-col1 {
    width: 56%;
    padding: 20px 90px 0px 0px;
    gap: 40px;
    display: flex;
    flex-direction: column;
}

section.webdesign-banner .banner-col1 h1.banner-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 52px;
}

section.webdesign-banner .banner-col1 p.banner-txt {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  color: #575757;
  line-height: 24px;
}

section.webdesign-banner .banner-cta-btn {
  display: flex;
  gap: 24px;
  align-items: center;
  position: relative;
}

section.webdesign-banner .banner-cta-btn:before {
  content: "";
  position: absolute;
  top: -100%;
  right: 0;
  background: url(../images/web-development/web-dev-vecrtor.png) no-repeat;
  background-size: cover;
  width: 106px;
  height: 104px;
}


section.webdesign-banner .banner-cta-btn a.cta-btn {
  width: 247px;
}

span.cta-btn-icon img {
  width: 15px;
}

.exp-team {
  display: flex;
  flex-direction: column;
  width: 177px;
}

.exp-team .team-imgs {
  display: flex;
  align-items: center;
}

.exp-team .team-imgs img {
  width: 25px;
  height: 25px;
}

.exp-team .exp-title {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.exp-team .team-imgs p {
  font-family: "Work Sans", Sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  padding-right: 10px;
}

.review-platform {
  display: flex;
  gap: 50px;
  align-items: center;
}

.review-platform .review-p-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-p-box.center-box:before {
  content: '';
  background: url(../images/web-development/rating-divider.webp) no-repeat;
  position: absolute;
  width: 1px;
  height: 67px;
  left: -18px;
  top: -5px;
}

.review-p-box.center-box:after {
  content: '';
  background: url(../images/web-development/rating-divider.webp) no-repeat;
  position: absolute;
  width: 1px;
  height: 67px;
  right: -20px;
  top: -5px;
}

.review-p-box.center-box {
  position: relative;
}

section.webdesign-banner .banner-col2 {
  padding: 0;
  width: 44%;
}

section.webdesign-banner .banner-col2 .expertise-team {
    width: 68%;
    padding: 0px 16px;
    background: url(../images/web-development/expertise-team-bg.webp) no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 20px;
    position: relative;
    border-radius: 25px;
}

section.webdesign-banner .banner-col2 .expertise-team:before {
  content: "";
  position: absolute;
  top: 45%;
  left: -20%;
  background: url(../images/web-development/creative.svg) no-repeat;
  background-size: cover;
  width: 110px;
  height: 55px;
}

section.webdesign-banner .banner-col2 .expertise-team img {
  width: 302px;
}

section.webdesign-banner .banner-col2 .expertise-team .expertise-team-h {
  background: #E1BAFD;
  width: 213px;
  border-radius: 80px;
  border: 2px solid #8639BE;
  padding: 4px 4px 4px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

section.webdesign-banner .banner-col2 .expertise-team .expertise-team-h span.expertise-team-icon img {
  width: 47px;
}

section.webdesign-banner .banner-col2 .expertise-team .expertise-team-h span.h-txt {
  color: #053047;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 600;
}

section.webdesign-banner .banner-col2 .expertise-team h4 {
  color: #541980;
  font-family: "Work Sans", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
}

section.webdesign-banner .banner-col2 .tech-boxes-right {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

section.webdesign-banner .banner-col2 .tech-boxes-right .exp-tech-box {
  border: 2px solid #8BAAFA;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #F4F8FF;
  padding: 16px 16px 4px 16px;
  height: 153px;
  transition: all 0.2s ease-in;
}

section.webdesign-banner .banner-col2 .tech-boxes-right .exp-tech-box img {
  width: 60px;
  margin-bottom: 15px;
}

section.webdesign-banner .banner-col2 .tech-boxes-right .exp-tech-box p {
  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2F2F2F;
}

section.webdesign-banner .banner-col2 .tech-boxes-right .exp-tech-box:hover {
  box-shadow: 21px 18px 72px 0px rgba(0, 0, 0, 0.13);
}

section.webdesign-banner .banner-col2 .col2-inner-col1 {
  padding: 0;
  display: flex;
  gap: 12px;
}

section.webdesign-banner .banner-col2 .exp-tech-box {
  border: 2px solid #8BAAFA;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 16px 16px 4px 16px;
  height: 143px;
  transition: all 0.2s ease-in;
}

.col2-inner-col2 {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.col2-inner-col2 .exp-tech-box {
  width: 184px;
}

.col2-inner-col2 .exp-tech-box img {
  width: 60px;
  margin-bottom: 15px;
}

section.webdesign-banner .banner-col2 .exp-tech-box p {
  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2F2F2F;
}

section.webdesign-banner .banner-col2 .exp-tech-box:hover {
  box-shadow: 21px 18px 72px 0px rgba(0, 0, 0, 0.13);
}

section.solution-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

section.solution-section h2.sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2F2F2F;
  text-align: center;
  width: 55%;
  margin: 0 auto;
  margin-bottom: 20px;
}

p.sec-txt {
  text-align: center;
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  width: 55%;
  margin: 0 auto;
}

.row.solution-row1 .solution-box {
  display: flex;
  padding: 24px 24px 14px 24px;
  gap: 16px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  transition: all 0.5s ease-in;
}

.row.solution-row1 .solution-box .s-box-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row.solution-row1 .solution-box .s-box-content h4.box-h {
  margin: 0;
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: #2F2F2F;
}

.row.solution-row1 .solution-box:hover {
  box-shadow: 41px 37px 37px -7px rgba(0, 0, 0, 0.07);
  border: 1px solid #C9C9C9;
}

.row.solution-row1 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 20px;
}

.row.solution-row1 .col-md-4 {
  width: 100%;
}

.row.solution-row1 .solution-box .s-box-content p.box-txt {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.row.solution-row1 {
  margin-top: 20px;
}

/*services section*/
.services-section h3.sub-title {
  width: 137px;
}

.services-section .row.services-row1 {
  justify-content: center;
  flex-direction: column !important;
  align-items: center;
  gap: 20px;
}

.services-section .row.services-row1 h2 {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  width: 763px;
}

.services-section .row.services-row1 p.ser-txt {
  text-align: center;
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  width: 763px;
}

.services-section .row.services-row1 .lp-cta-btns {
  justify-content: center;
  margin: 0;
}

.services-section {
  padding: 100px 0;
  background: #F8F9FF;
}

.service-cards .service-card {
  width: 415px;
  height: 290px !important;
  border-radius: 10px;
  border-width: 1px;
  padding: 32px 24px;
  background: white;
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 20%;
}

.service-cards .service-card .num-icon {
  display: flex;
  justify-content: space-between;
}

.service-cards .service-card .num-icon h4 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -0.3px;
  transition: 0.5s;
}

.service-cards .service-card .service-title p {
  font-family: Boska;
  font-weight: 700;
  font-size: 24px;
  line-height: 26.4px;
  letter-spacing: 0px;
  margin: 0;
}

.services-section .service-cards {
  padding-bottom: 340px;
}

.service-cards .service-card:nth-child(2) {
  transform: translateY(60px) translateX(115px);
  transition-delay: 0.1s;
}

.service-cards .service-card:nth-child(3) {
  transform: translateY(120px) translateX(231px);
  transition-delay: 0.2s;
}

.service-cards .service-card:nth-child(4) {
  transform: translateY(180px) translateX(346px);
  transition-delay: 0.3s;
}

.service-cards .service-card:nth-child(5) {
  transform: translateY(240px) translateX(461px);
  transition-delay: 0.4s;
}

.service-cards .service-card:nth-child(6) {
  transform: translateY(300px) translateX(578px);
  transition-delay: 0.5s;
}

.service-cards .service-card:nth-child(7) {
  transform: translateY(340px) translateX(693px);
  transition-delay: 0.6s;
}

.service-cards .service-card:nth-child(8) {
  transform: translateY(400px) translateX(809px);
  transition-delay: 0.7s;
}

.service-cards .service-card:before {
  content: '';
  position: absolute;
  width: 415px;
  height: 290px;
  left: 0;
  top: 0;
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  transition: all 0.4s ease-in;
  opacity: 0;
  border-radius: 10px;
  z-index: -1;
}

.service-cards .service-card:hover:before {
  opacity: 1;
}

.service-cards .service-card:hover .num-icon h4,
.service-cards .service-card:hover .service-title p,
.service-cards .service-card:hover h4.service-title,
.service-cards .service-card:hover p.service-txt {
  color: #ffffff;
  transition: 0.5s;
}

.service-cards .service-card:hover {
  z-index: 9;
}

.service-cards .service-card h4.service-title {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.3px;
  transition: 0.5s;
}

.service-cards .service-card p.service-txt {
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  transition: 0.5s;
}

.service-cards .service-card span.ser-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid #E5E5E5;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  background: #ffffff;
}

/*services section*/

/*CTA BANNER*/

.cta-section {
  padding-bottom: 80px;
}

section.cta-section .banner-row {
  border: 1.5px solid #173B9C;
  border-radius: 12px;
  padding: 40px;
}

section.cta-section .banner-row .cta-col1 {
  padding: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

section.cta-section .banner-row .cta-col1 h2 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}

.cta-col1 .item-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.cta-col1 .item-list ul li {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #575757;
  margin-top: 6px;
  padding-bottom: 6px;
}

.cta-col1 .item-list ul li span.item-icon {
  padding-right: 10px;
}

section.cta-section .banner-row .cta-col1 a.cta-btn {
  position: relative;
  background-image: linear-gradient(to right, hsl(234, 55%, 41%), hsl(273, 54%, 48%));
  z-index: 1;
  border-radius: 10px;
  transition: border-radius 0.5s ease;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  padding: 16px 16px 16px 16px;
  text-decoration: none;
}

section.cta-section .banner-row .cta-ol2 {
  padding: 0;
  display: flex;
  width: 50%;
  justify-content: flex-end;
  position: relative;
}

section.cta-section .banner-row .cta-ol2:before {
  content: '';
  position: absolute;
  background: url(../images/web-development/Vector.webp) no-repeat;
  width: 268px;
  height: 269px;
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
  z-index: -1;
}

/*CTA BANNER*/

/*Technology Tabs*/
#tabs-sec .tabs-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

#tabs-sec .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  scrollbar-width: none;
}

#tabs-sec .tabs-div .tab {
  padding: 10px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 64px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

#tabs-sec .tabs-div .tab:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 64px;
  background: linear-gradient(70deg, #173B9C, #8639BE);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#tabs-sec .tabs-div .tab:hover:before {
  opacity: 1;
}

#tabs-sec .tabs-div .tab:hover {
  color: #fff;
}

#tabs-sec .tabs-div .tab.active {
  background: linear-gradient(70deg, #173B9C, #8639BE);
  color: #fff;
}

#tabs-sec .tabs::-webkit-scrollbar {
  display: none;
}

#tabs-sec .grid-container {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin-top: 40px;
}

#tabs-sec .grid-container.active {
  display: grid;
}

#tabs-sec .grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  height: 138px;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
  box-shadow: none;
}

#tabs-sec .grid-item img {
  max-width: 50px;
  height: auto;
}

#tabs-sec .grid-item p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-top: 10px;
  color: #575757;
}

#tabs-sec .grid-item:hover {
  background-color: white;
  border: 1px solid #8639BE;
  border-radius: 12px;
  box-shadow: 60px 50px 100px 0px #00000014;
}

@media (max-width: 768px) {
  #tabs-sec .grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 0px;
  }

  #tabs-sec .tabs-div {
    width: auto;
  }

  #tabs-sec .grid-item-non {
    display: none;
  }

  #tabs-sec .grid-item {
    width: 20vh;
  }

  #tabs-sec .tabs {
    flex-wrap: wrap;
    overflow-x: auto;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 500px) {

  #tabs-sec .tabs {
    flex-wrap: unset !important;
    overflow-x: scroll;
    flex-direction: row;
    justify-content: left;
}

}

.tech-tabs {
  padding-bottom: 80px;
}

.tech-tabs h2.sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2F2F2F;
  width: 763px;
  margin: 0 auto;
  text-align: center;
}

.tech-tabs p.sec-txt {
  text-align: center;
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

/*Technology Tabs*/

.dev-method-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F8F9FF;
}

.dev-method-sec .method-col1 {
  padding: 0;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.dev-method-sec .method-col1 h2.sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}

.dev-method-sec .method-col1 p.sec-txt {
  text-align: left;
  width: 95%;
  margin: 0;
}

.dev-method-sec a.cta-btn {
  position: relative;
  background-image: linear-gradient(to right, hsl(234, 55%, 41%), hsl(273, 54%, 48%));
  z-index: 1;
  border-radius: 10px;
  transition: border-radius 0.5s ease;
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  padding: 16px 16px 16px 16px;
  text-decoration: none;
}

.dev-method-sec .method-col2 {
  padding: 0;
  width: 60%;
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.dev-method-sec .method-col2 .method-boxes {
  display: grid;
  grid-template-columns: auto auto;
  gap: 24px;
}

.dev-method-sec .method-col2 .method-boxes .method-box {
  width: 100%;
  padding: 24px;
  border: 1px solid #C9C9C9;
  border-radius: 10px;
  gap: 24px;
  display: flex;
  flex-direction: column;
  transition: 0.8s;
}

.dev-method-sec .method-col2 .method-boxes .method-box:hover {
  box-shadow: 20px 30px 25px 10px #e5e5e5;
  background-color: white;
  transition: 0.8s;
}

.dev-method-sec .method-col2 .method-boxes .m-box-head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dev-method-sec .method-col2 .method-boxes .m-box-head span.m-box-icon {
  width: 50px;
  height: 50px;
  display: flex;
  border: 2px solid #8639BE;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
}

.dev-method-sec .method-col2 .method-boxes .m-box-head h4.m-box-heading {
  margin: 0;
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.dev-method-sec .method-col2 .method-boxes .method-box p.m-boc-content {
  text-align: left;
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/*contact form section*/
.contact-section form.contact-form label.form-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 33px;
  font-family: "Montserrat", sans-serif;
  color: #575757;
  margin: 0;
  padding: 0;
}

.contact-section input::placeholder, .contact-section textarea.form-control::placeholder{
  font-size: 14px !important;
  font-family: "Montserrat", sans-serif !important;
  color: #C6C6C6 !important;
  font-weight: 400 !important;
}

.calendly-inline-widget {
  max-height: 500px;
}

.contact-section form.contact-form input.form-control {
  width: 100%;
  height: 50px;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 20px 16px;
}

  div#fileDropArea img {
    width: 25px;
    height: 22.5px;
    margin: 0 auto;
}

.contact-section form.contact-form input.form-control:focus {
  box-shadow: 0 0 0 1px #173B9C;
}

.contact-section form.contact-form textarea.form-control:focus {
  box-shadow: 0 0 0 1px #173B9C;
}

.contact-section form.contact-form input.form-control::placeholder {
  font-family: Cabinet Grotesk;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #c2c2c2;
}

.contact-section form.contact-form textarea.form-control {
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 20px 16px;
  height: 166px;
  resize: none;
}

.contact-section form.contact-form textarea.form-control::placeholder {
  font-family: Cabinet Grotesk;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #c2c2c2;
}

.contact-section form.contact-form button.btn.btn-primary {
  width: 230px !important;
  height: 50px;
  border-radius: 10px;
  border: 0.5px solid;
  background-image: linear-gradient(to right, hsl(273, 54%, 48%), hsl(234, 55%, 41%));
  transition: background 1s ease-in;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 33px;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding: 0;
}

.contact-section form.contact-form button.btn.btn-primary:hover {
  color: white;
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  background-size: 200% 100%;
  background-position: right;
}


.contact-section .file-upload {
  border: 2px dashed #e5e5e5;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}



.file-upload #uploadText strong {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.file-instruction {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.file-instruction small {
  font-size: 12px;
  font-weight: 400;
  line-height: 33px;
  color: #575757;
  font-family: "Montserrat", sans-serif;
}

.contact-section button.btn.btn-primary.w-100 {
  text-transform: uppercase;
}


.contact-section .contact-col1 textarea.form-control {
  height: 117px !important;
}

.contact-section .file-upload label.upload-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-upload.dragover {
  background: #f3e6ff;
}

#fileList p strong {
  font-family: Cabinet Grotesk;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

span#uploadText {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.contact-form-col2 {
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 40px 20px;
  width: 48%;
}

.contact-section .contact-from-row1 h2.sec-heading {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.contact-section .contact-from-row1 p {
  text-align: center;
  color: #575757;
  font-size: 16px;
  font-weight: 400;
  padding-top: 24px;
  padding-bottom: 40px;
}

.contact-section {
  padding-bottom: 80px;
}

.contact-section .contact-from-row2 .contact-form-col1 {
  padding: 0;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 52%;
}

.contact-section .contact-from-row2 .contact-form-col1:before {
  content: '';
  background: url(../images/web-development/Union-1.webp) no-repeat;
  position: absolute;
  width: 562px;
  height: 572px;
  z-index: -1;
  top: 0;
}


/*contact form section*/


/* Why Haloid Tech Development Companies */


.trust-haloid-sec .trust-haloid-row1 {
  gap: 24px;
}

.trust-haloid-sec .trust-haloid-row1 h2.sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #2F2F2F;
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.trust-haloid-sec .trust-haloid-row1 p.sec-txt {
  text-align: center;
  color: #575757;
  font-size: 16px;
  font-weight: 400;
}

.trust-haloid-sec .trust-haloid-row2 {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* 6 equal columns */
  gap: 20px;
  max-width: 100%;
}

.trust-haloid-box:nth-child(1),
.trust-haloid-box:nth-child(2),
.trust-haloid-box:nth-child(3) {
  grid-column: span 2 !important;
}

.trust-haloid-sec .trust-haloid-box:nth-child(4),
.trust-haloid-sec .trust-haloid-box:nth-child(5) {
  grid-column: span 3 !important;
}


.trust-haloid-sec .trust-haloid-box {
  border: 1px solid #C9C9C9;
  border-radius: 10px;
  padding: 24px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease-in;
}

.trust-haloid-box .trust-haloid-b-head {
  display: flex;
  gap: 16px;
  align-items: center;
}

.trust-haloid-box .trust-haloid-b-head span.box-icon {
  border: 2px solid #8639BE;
  border-radius: 100%;
  padding: 8px;
}

.trust-haloid-box .trust-haloid-b-head h4.box-title {
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.trust-haloid-box p.box-content {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.trust-haloid-sec {
  padding: 80px;
  background-color: #F8F9FF;
  margin-bottom: 100px;
}

.trust-haloid-sec .trust-haloid-box:hover {
  box-shadow: 41px 37px 37px -7px rgba(0, 0, 0, 0.07);
  background-color: white;
}

/* Why Haloid Tech Development Companies End*/

/* Laptop Screen Responsive */

@media all and (max-width: 1450px) {

  section.webdesign-banner .banner-col2 .expertise-team:before {
    top: 40%;
    left: -15%;
    width: 100px;
    height: 50px;
  }

  section.webdesign-banner .banner-cta-btn:before {
    top: -55%;
    right: -2%;
    width: 90px;
    height: 88px;
  }

  section.webdesign-banner .banner-col1 h1.banner-heading {
    font-size: 42px;
  }

  section.webdesign-banner .banner-col1 p.banner-txt {
    font-size: 16px;
  }

  section.webdesign-banner .banner-col1 {
    gap: 20px;
  }

  section.solution-section h2.sec-heading {
    font-size: 36px;
    width: 70%;
  }

  p.sec-txt {
    font-size: 16px;
    width: 69%;
  }

  .row.solution-row1 .solution-box .s-box-content h4.box-h {
    font-size: 20px;
  }

  .row.solution-row1 .solution-box .s-box-content p.box-txt {
    font-size: 16px;
  }

  .services-section .row.services-row1 h2 {
    font-size: 36px;
    width: 700px;
  }

  .services-section .row.services-row1 p.ser-txt {
    font-size: 16px;
    width: 70%;
  }

  .service-cards .service-card .num-icon h4 {
    font-size: 40px;
  }

  .service-cards .service-card h4.service-title {
    font-size: 20px;
  }

  .service-cards .service-card p.service-txt {
    font-size: 16px;
  }

  .service-cards .service-card {
    width: 415px;
    height: 270px !important;
  }

  .service-cards .service-card:before {
    width: 415px !important;
    height: 270px;
  }

  section.cta-section .banner-row .cta-col1 h2 {
    font-size: 36px;
  }

  .cta-col1 .item-list ul li {
    font-size: 16px;
  }

  .tech-tabs h2.sec-heading {
    font-size: 36px;
  }

  .tech-tabs p.sec-txt {
    font-size: 16px;
  }

  #tabs-sec .tabs-div .tab {
    font-size: 16px;
  }

  .dev-method-sec .method-col2 .method-boxes {
    gap: 20px;
  }

  .dev-method-sec .method-col1 h2.sec-heading {
    font-size: 36px;
  }

  .dev-method-sec .method-col2 .method-boxes .m-box-head h4.m-box-heading {
    font-size: 20px;
  }

  .dev-method-sec .method-col2 .method-boxes .method-box p.m-boc-content {
    font-size: 16px;
  }

  .contact-section .contact-from-row1 h2.sec-heading {
    font-size: 36px;
    width: 920px;
  }

  .contact-section .contact-from-row1 p {
    font-size: 16px;
  }

  .contact-section form.contact-form input.form-control {
    height: 45px;
  }

  .contact-section form.contact-form button.btn.btn-primary {
    font-size: 16px;
  }

  .trust-haloid-sec .trust-haloid-row1 h2.sec-heading {
    font-size: 36px;
    width: 70%;
  }

  .trust-haloid-sec .trust-haloid-row1 p.sec-txt {
    font-size: 16px;
  }

  .trust-haloid-box .trust-haloid-b-head h4.box-title {
    font-size: 20px;
  }

  .trust-haloid-box p.box-content {
    font-size: 16px;
    margin: 0;
  }

  .trust-haloid-sec {
    margin-bottom: 50px;
  }

}

/* Laptop Screen Responsive End*/

/* Table Screen Responsive */

@media all and (max-width: 800px) {

  section.webdesign-banner .banner-col2 .expertise-team:before {
    top: 35%;
  }

  section.webdesign-banner .banner-cta-btn:before {
    top: 25%;
    right: 10%;
  }

  section.webdesign-banner .banner-col1 h1.banner-heading {
    font-size: 30px;
    line-height: 35px;
  }

  section.webdesign-banner .banner-cta-btn {
    align-items: flex-start;
    flex-direction: column;
  }

  section.webdesign-banner .banner-col2 .tech-boxes-right .exp-tech-box p,
  section.webdesign-banner .banner-col2 .exp-tech-box p {
    font-size: 10px;
  }

  section.webdesign-banner .banner-col2 .tech-boxes-right .exp-tech-box img,
  .col2-inner-col2 .exp-tech-box img {
    width: 50px;
    margin-bottom: 10px;
  }

  .review-platform {
    gap: 10px;
  }

  span.platform-logo img {
    width: 100%;
  }

  span.rating-star img {
    width: 100%;
  }

  .review-p-box.center-box:before {
    left: -5px;
  }

  .review-p-box.center-box:after {
    right: -5px;
  }

  section.ui-ux-design-banner {
    padding: 50px 0px 50px 0px;
  }

  section.webdesign-banner .banner-col2 .expertise-team {
    width: 80%;
  }

  section.webdesign-banner .banner-col2 .tech-boxes-right {
    width: 20%;
  }

  section.webdesign-banner .banner-col2 .expertise-team .expertise-team-h span.expertise-team-icon img {
    width: 30px;
  }

  section.webdesign-banner .banner-col2 .expertise-team .expertise-team-h span.h-txt {
    font-size: 14px;
  }

  section.webdesign-banner .banner-col2 .expertise-team .expertise-team-h {
    width: 170px;
    padding: 4px 4px 4px 4px;
  }

  section.webdesign-banner .banner-col2 .tech-boxes-right .exp-tech-box,
  section.webdesign-banner .banner-col2 .exp-tech-box {
    border-radius: 15px;
    padding: 10px;
    height: 120px;
  }

  section.webdesign-banner .banner-col2 .expertise-team h4 {
    font-size: 30px;
    line-height: 35px;
  }

  .col2-inner-col2 .exp-tech-box {
    width: 33.33%;
  }

  section.solution-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  section.solution-section h2.sec-heading {
    width: 80%;
  }

  p.sec-txt {
    width: 80%;
  }

  .row.solution-row1 {
    grid-template-columns: auto auto;
  }

  .services-section {
    padding: 50px 0;
  }

  .service-cards .service-card {
    width: 220px !important;
  }

  .service-cards .service-card p.service-txt {
    font-size: 12px;
    margin: 0;
  }

  .service-cards .service-card:nth-child(2) {
    transform: translateY(30px) translateX(60px);
    transition-delay: 0.1s;
  }

  .service-cards .service-card:nth-child(3) {
    transform: translateY(60px) translateX(126px);
    transition-delay: 0.2s;
  }

  .service-cards .service-card:nth-child(4) {
    transform: translateY(87px) translateX(191px);
    transition-delay: 0.3s;
  }

  .service-cards .service-card:nth-child(5) {
    transform: translateY(114px) translateX(255px);
    transition-delay: 0.4s;
  }

  .service-cards .service-card:nth-child(6) {
    transform: translateY(139px) translateX(320px);
    transition-delay: 0.5s;
  }

  .service-cards .service-card:nth-child(7) {
    transform: translateY(164px) translateX(385px);
    transition-delay: 0.6s;
  }

  .service-cards .service-card:nth-child(8) {
    transform: translateY(188px) translateX(450px);
    transition-delay: 0.7s;
  }

  .services-section .service-cards {
    padding-bottom: 200px;
  }

  .col-md-6.cta-ol2 img {
    width: 100%;
  }

  #tabs-sec .grid-item p {
    font-size: 14px;
  }

  .dev-method-sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .dev-method-sec .method-col2 .method-boxes .method-box {
    padding: 15px;
  }

  .dev-method-sec .method-col2 .method-boxes .m-box-head {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .dev-method-sec .method-col2 .method-boxes .m-box-head h4.m-box-heading {
    font-size: 16px;
  }

  .dev-method-sec .method-col2 .method-boxes .method-box p.m-boc-content {
    font-size: 12px;
  }

  .col-md-6.contact-form-col1 img {
    width: 100%;
  }

  .contact-section .contact-from-row2 .contact-form-col1:before {
    background-size: contain;
    width: 100%;
    height: 100%;
  }

  .contact-section form.contact-form input.form-control {
    height: 40px !important;
  }

  .contact-section form.contact-form textarea.form-control {
    height: 100px;
  }

  .contact-section form.contact-form button.btn.btn-primary {
    width: 100% !important;
  }

  .trust-haloid-sec .trust-haloid-row2 {
    grid-template-columns: auto auto;
  }

  .trust-haloid-box .trust-haloid-b-head h4.box-title {
    font-size: 16px;
  }

  .trust-haloid-box p.box-content {
    font-size: 12px;
    margin: 0;
  }

  .service-cards .service-card:before {
    width: 220px !important;
  }

}

/* Table Screen Responsive End*/

/* Mobile Screen Responsive */

@media all and (max-width: 500px) {

  section.webdesign-banner .banner-cta-btn:before {
    display: none;
  }

  section.webdesign-banner .banner-cta-btn {
    width: 100%;
  }

  section#webdesign button.btn2 {
    width: 100%;
  }

  .exp-team {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  section.webdesign-banner .banner-col2 .expertise-team:before {
    top: 35%;
    left: -5%;
  }

  section.webdesign-banner .banner-col1 {
    width: 100%;
    padding: 0px 0px 25px 0px;
    align-items: center;
    text-align: center;
  }

  section.webdesign-banner .banner-col2 {
    padding: 0;
    width: 100%;
  }

  section.webdesign-banner .banner-col1 h1.banner-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .review-platform {
    gap: 10px;
  }

  span.platform-logo img {
    width: 100%;
  }

  .review-p-box.center-box:before {
    left: -6px;
  }

  .review-p-box.center-box:after {
    right: -7px;
  }

  span.rating-star img {
    width: 100%;
  }

  section.solution-section h2.sec-heading {
    font-size: 24px;
    line-height: 30px;
    width: 100%;
  }

  p.sec-txt {
    width: 100% !important;
  }

  section.solution-section .solution-box {
    flex: none;
  }

  section.solution-section .row.solution-row1 .solution-box {
    box-shadow: 41px 37px 37px -7px rgba(0, 0, 0, 0.07);
    border: 1px solid #C9C9C9;
    margin: 0px 5px 0px 5px !important;
    background: white;
    height: auto;
  }

  section.solution-section span.swiper-pagination-bullet {
    background: transparent;
    border: 1px solid black;
    opacity: 0.5;
  }

  section.solution-section span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #173B9C;
    opacity: 1;
    border: none;
    margin: 0 10px !important;
    position: relative;
  }

  .agency-solution-web {
    padding-bottom: 100px !important;
  }

  .services-section .row.services-row1 h2 {
    font-size: 24px;
    line-height: 30px;
  }

  section.cta-section .banner-row .cta-col1 {
    width: 100%;
  }

  section.cta-section .banner-row .cta-ol2 {
    width: 100%;
  }

  section.cta-section .banner-row .cta-col1 h2 {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }

  section#cta-banner button.btn2 {
    margin: 0 auto;
  }

  section.cta-section .banner-row {
    padding: 25px;
  }

  .cta-section {
    padding-bottom: 50px !important;
  }

  .cta-col1 .item-list ul li {
    font-size: 13px;
  }

  .tech-tabs h2.sec-heading {
    font-size: 24px;
    line-height: 30px;
  }

  #tabs-sec .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }

  #tabs-sec .grid-item {
    width: 20vh;
  }

  .dev-method-sec .method-col1 {
    width: 100%;
  }

  .dev-method-sec .method-col2 {
    width: 100%;
    padding-top: 30px;
  }

  .dev-method-sec .method-col2 .method-boxes .m-box-head h4.m-box-heading {
    font-size: 18px;
  }

  .dev-method-sec .method-col2 .method-boxes .m-box-head {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .dev-method-sec .method-col2 .method-boxes .method-box p.m-boc-content {
    font-size: 14px;
  }

  .method-box {
    background: white;
  }

  .dev-method-sec {
    padding-bottom: 100px;
  }

  .dev-method-sec .method-col1 h2.sec-heading {
    font-size: 24px;
    line-height: 30px;
  }

  .contact-section .contact-from-row1 h2.sec-heading {
    font-size: 22px;
    width: 100%;
  }

  .contact-section .contact-from-row2 .contact-form-col1 {
    width: 100%;
  }

  .contact-form-col2 {
    width: 100%;
    margin-top: 0px;
    padding: 40px 24px !important;
  }

  .contact-form-col1 {
    margin-top: 50px !important;
  }

  section#contact-form .row.contact-from-row2 {
    flex-direction: column-reverse;
  }

  .contact-section form.contact-form input.form-control {
    width: 100%;
    height: 50px !important;
  }

  .trust-haloid-sec {
    padding: 50px 0px 100px 0px;
  }

  .service-cards .service-card:nth-child(2),
  .service-cards .service-card:nth-child(3),
  .service-cards .service-card:nth-child(4),
  .service-cards .service-card:nth-child(5),
  .service-cards .service-card:nth-child(6),
  .service-cards .service-card:nth-child(7),
  .service-cards .service-card:nth-child(8) {
    transform: translateY(0px) translateX(0px);
    transition-delay: 0.1s;
  }

  .service-cards .service-card {
    width: 100% !important;
    height: 235px !important;
  }

  .service-cards .service-card:before {
    width: 100% !important;
    height: 235px;
  }

  .services-section .service-cards {
    padding-bottom: 45px;
  }

  .trust-haloid-box {
    height: auto;
  }

  .row.solution-row1 .solution-box {
    padding: 24px;
  }

  /* Mobile View: Convert to Swiper */

  .solution-box,
  .method-box,
  .trust-haloid-box {
    flex: 0 0 100%;
  }

  section.solution-section span.swiper-pagination-bullet,
  .method-boxes span.swiper-pagination-bullet,
  .trust-haloid-row2 span.swiper-pagination-bullet,
  .service-cards span.swiper-pagination-bullet,
  .process-mobile-app-row2 span.swiper-pagination-bullet,
  .emerging-technologies-row2 span.swiper-pagination-bullet,
  .enhance-your-business-row2 span.swiper-pagination-bullet,
  .process-uiux-row2 span.swiper-pagination-bullet,
  .blog-masonry-grid1 span.swiper-pagination-bullet {
    background: transparent;
    border: 1px solid black;
    opacity: 0.5;
  }

  section.solution-section span.swiper-pagination-bullet.swiper-pagination-bullet-active,
  .method-boxes span.swiper-pagination-bullet.swiper-pagination-bullet-active,
  .trust-haloid-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active,
  .service-cards span.swiper-pagination-bullet.swiper-pagination-bullet-active,
  .process-mobile-app-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active,
  .emerging-technologies-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active,
  .enhance-your-business-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active,
  .process-uiux-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active,
  .blog-masonry-grid1 span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #173B9C;
    opacity: 1;
    border: none;
    margin: 0 10px !important;
    position: relative;
  }

  section.solution-section span.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
  .method-boxes span.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
  .trust-haloid-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
  .service-cards span.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
  .process-mobile-app-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
  .emerging-technologies-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
  .enhance-your-business-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
  .process-uiux-row2 span.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
  .blog-masonry-grid1 span.swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    content: "";
    position: absolute;
    border: 1px solid #173B9C;
    height: 20px;
    width: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }

  section.solution-section .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal,
  .method-boxes .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal,
  .trust-haloid-row2 .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal,
  .process-mobile-app-row2 .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal,
  .emerging-technologies-row2 .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal,
  .enhance-your-business-row2 .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal,
  .process-uiux-row2 .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal,
  .blog-masonry-grid1 .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -40px;
    z-index: 9999 !important;
  }

  section.solution-section .swiper-wrapper,
  .method-boxes .swiper-wrapper,
  .trust-haloid-row2 .swiper-wrapper,
  .process-mobile-app-row2 .swiper-wrapper,
  .emerging-technologies-row2 .swiper-wrapper,
  .enhance-your-business-row2 .swiper-wrapper,
  .process-uiux-row2 .swiper-wrapper,
  .blog-masonry-grid1 .swiper-wrapper {
    padding: 0px;
  }

  section.solution-section .solution-row1,
  .method-boxes,
  .trust-haloid-row2,
  .emerging-technologies-row2,
  .enhance-your-business-row2,
  .process-uiux-row2,
  .blog-masonry-grid1 {
    overflow: visible;
    width: 100%;
  }

  section#agency-solution button.btn2,
  section#process-mobile-app button.btn2 {
    margin-top: 80px !important;
  }

  .dev-method-sec .method-col2 .method-boxes {
    width: 100%;
  }

  section.webdesign-banner .banner-col2 .col2-inner-col1 {
    flex-direction: column;
  }

  section.webdesign-banner .banner-col2 .expertise-team {
    width: 100%;
    background-size: 100% 100%;
    padding: 25px 16px 25px 16px;
  }

  section.webdesign-banner .banner-col2 .tech-boxes-right {
    flex-direction: row;
    width: 100%;
  }

  section.webdesign-banner .banner-col2 .tech-boxes-right .exp-tech-box,
  section.webdesign-banner .banner-col2 .exp-tech-box {
    width: 100%;
    background: #F4F8FF;
    align-items: center;
    justify-content: center;
  }

  section.webdesign-banner .banner-col2 .tech-boxes-right .exp-tech-box p,
  section.webdesign-banner .banner-col2 .exp-tech-box p {
    font-size: 14px;
    margin: 0;
  }

  .services-section .row.services-row1 p.ser-txt {
    width: 100%;
  }

  .service-cards .service-card h4.service-title {
    margin-top: 10px;
  }

  section#trusted-partners-web {
    margin: 50px 0 !important;
  }

  .dev-method-sec .method-col1 p.sec-txt,
  .dev-method-sec .method-col1 h2.sec-heading {
    text-align: center !important;
  }

  section#dev-method button.btn2 {
    margin: 0 auto;
  }

  .contact-section form.contact-form button.btn.btn-primary {
    margin-top: 30px;
  }

}

/* Mobile Screen Responsive End*/

/*Web Devlopment page End*/


/*Mobile App Development */


/* Process Mobile App Development */

section#agency-solution button.btn2,
section#process-mobile-app button.btn2 {
  margin-top: 50px;
}

.process-mobile-app .process-mobile-app-row1 {
  gap: 24px;
}

.process-mobile-app .process-mobile-app-row1 h2.process-mobile-app-sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #2F2F2F;
  text-align: left;
}

.process-mobile-app .process-mobile-app-row1 p.process-mobile-app-sec-txt {
  text-align: left;
  color: #575757;
  font-size: 16px;
  font-weight: 400;
  width: auto !important;
}

.process-mobile-app .process-mobile-app-row2 {
  padding-top: 40px;
  gap: 15px;
  max-width: 100%;
}

.process-mobile-app-box:nth-child(n+1):nth-child(-n+4) {
  width: 23.7%;
}

.process-mobile-app-box:nth-child(n+5) {
  width: 32.3% !important;
}

.process-mobile-app .process-mobile-app-box {
  border: 1px solid #C9C9C9;
  border-radius: 10px;
  padding: 24px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease-in;
}

.process-mobile-app-box .process-mobile-app-b-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.process-mobile-app-box .process-mobile-app-b-head span.box-icon {
  border: 2px solid #8639BE;
  border-radius: 100%;
  padding: 8px;
}

.process-mobile-app-box .process-mobile-app-b-head h4.box-title {
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.process-mobile-app-box p.box-content {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.process-mobile-app {
  padding: 80px 0px 80px 0px;
  background-color: #F8F9FF;
  margin-bottom: 100px;
}

.process-mobile-app .process-mobile-app-box:hover {
  box-shadow: 41px 37px 37px -7px rgba(0, 0, 0, 0.07);
  background-color: white;
}

.tech-stacks {
  padding-top: 80px;
}

section#tabs-sec button.btn2 {
  margin: 50px auto 0 auto;
}

/* Process Mobile App Development End*/

/* Emerging technologies Section */

.emerging-technologies-sec .emerging-technologies-row1 {
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emerging-technologies-sec .emerging-technologies-row1 h2.emerging-technologies-sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #2F2F2F;
  width: 55%;
  margin: 0 auto;
  text-align: center;
}

.emerging-technologies-sec .emerging-technologies-row1 p.emerging-technologies-sec-txt {
  text-align: center;
  color: #575757;
  width: 55%;
  font-size: 16px;
  font-weight: 400;
}

.emerging-technologies-sec .emerging-technologies-row2 {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 6 equal columns */
  gap: 20px;
  max-width: 100%;
}

.emerging-technologies-sec .emerging-technologies-box {
  border: 1px solid #C9C9C9;
  border-radius: 10px;
  padding: 24px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease-in;
}

.emerging-technologies-box .emerging-technologies-b-head {
  display: flex;
  gap: 16px;
  align-items: center;
}

.emerging-technologies-box .emerging-technologies-b-head span.box-icon {
  border: 2px solid #8639BE;
  border-radius: 100%;
  padding: 8px;
}

.emerging-technologies-box .emerging-technologies-b-head h4.box-title {
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.emerging-technologies-box p.box-content {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.emerging-technologies-sec {
  padding: 0px 0px 80px 0px;
  background-color: white;
}

section#emerging-technologies-sec button.btn2 {
  margin-top: 50px;
}

.emerging-technologies-sec .emerging-technologies-box:hover {
  background: linear-gradient(to right, #173B9C 30%, #8639BE 100%);
  background-size: 200% 100%;
  background-position: right;
}

.emerging-technologies-box:hover .emerging-technologies-b-head span.box-icon {
  border: 2px solid white;
  transition: 0.3s;
}

.emerging-technologies-box:hover .emerging-technologies-b-head h4.box-title {
  color: white;
  transition: 0.3s;
}

.emerging-technologies-box:hover p.box-content {
  color: white;
  transition: 0.3s;
}

.emerging-technologies-box:hover span.box-icon img {
  transition: 0.3s;
}

.emerging-technologies-sec-quality-assurance .emerging-technologies-box:hover span.box-icon img {
  filter: none;
  transition: 0.3s;
}

/* Emerging technologies Section End*/


/* Engagement Models */

.engagement-models-one,
.engagement-models-two,
.engagement-models-three {
  height: 400px;
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 15px;
  padding: 30px;
}

.engagement-models-one p,
.engagement-models-two p,
.engagement-models-three p {
  font-size: 16px;
  font-family: 'Montserrat';
  margin-bottom: 15px !important;
  line-height: 25px;
}

section.engagement-models h4 {
  font-size: 36px;
  font-family: "Work Sans", sans-serif;
  color: #2f2f2f;
  font-weight: 600;
  width: 50%;
  text-align: center;
}

.engagement-models-hed {
  margin-bottom: 50px;
}

section.engagement-models p {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #575757;
  margin-bottom: 0;
}

section.engagement-models {
  padding: 50px 0px;
}

.engagement-models-one h5,
.engagement-models-two h5,
.engagement-models-three h5 {
  font-size: 28px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  color: #2f2f2f;
}

.engagement-models-one {
  background-image: url(../images/we-help-you/Vector-Img-1.webp);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: bottom center;
  transition: 0.5s;
}


.engagement-models-one:hover,
.engagement-models-two:hover,
.engagement-models-three:hover {
  box-shadow: 30px 30px 30px 15px #f1f1f1;
  transition: 0.8s;
}


.engagement-models-two {
  background-image: url(../images/mobile-application-development/expert-required.webp);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: bottom center;
  transition: 0.8s;
}

.engagement-models-three {
  background-image: url(../images/mobile-application-development/fixed-cost-services.webp);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: bottom center;
  transition: 0.8s;
}

/* Engagement Models End*/

/* App Cost Sec*/

section#app-cost-sec {
  padding: 80px 0px 100px 0px;
}

#app-cost-sec .tabs-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

#app-cost-sec .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  scrollbar-width: none;
}

#app-cost-sec .tabs-div .tab {
  padding: 10px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 64px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

#app-cost-sec .tabs-div .tab:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 64px;
  background: linear-gradient(70deg, #173B9C, #8639BE);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#app-cost-sec .tabs-div .tab:hover:before {
  opacity: 1;
}

#app-cost-sec .tabs-div .tab:hover {
  color: #fff;
}

#app-cost-sec .tabs-div .tab.active {
  background: linear-gradient(70deg, #173B9C, #8639BE);
  color: #fff;
}

#app-cost-sec .tabs::-webkit-scrollbar {
  display: none;
}

#app-cost-sec .grid-container {
  display: none;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin-top: 40px;
}

#app-cost-sec .grid-container.active {
  display: flex;
  border: 1px solid #173B9C;
  padding: 40px;
  border-radius: 15px;
}

.tabs-content-box {
  width: 60%;
}

.tabs-contact-info {
  width: 40%;
  background-color: transparent;
  background-image: linear-gradient(90deg, #173B9C 0%, #8639BE 100%);
  border-radius: 10px;
  padding: 25px;
}

.contact-detailes-one,
.contact-detailes-two {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-detailes-one h5,
.contact-detailes-two h5 {
  color: #FFFFFF;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  text-align: center;
  font-weight: 600;
  line-height: 40px;
}

.contact-detailes-one p,
.contact-detailes-two p {
  font-size: 16px;
  font-family: 'Montserrat';
  color: white;
  text-align: center;
}

.seprator {
  border: 1px solid white;
  margin: 30px 0px 30px 0px;
}

.tabs-content-box h5 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  width: 85%;
}

.tabs-content-box p {
  font-size: 16px;
  font-family: 'Montserrat';
  width: 85%;
}

.tabs-content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}


@media (max-width: 768px) {

  #app-cost-sec .tabs-div {
    width: auto;
  }

  #app-cost-sec .tabs {
    flex-wrap: wrap;
    overflow-x: auto;
    justify-content: center;
    gap: 10px;
  }
}

.app-cost h2.sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2F2F2F;
  width: 763px;
  margin: 0 auto;
  text-align: center;
}

.app-cost p.sec-txt {
  text-align: center;
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

section#trust-haloid .btn2 {
  margin-top: 50px;
}

/* App Cost Sec End*/

/* Enhance Your Business Section */

.enhance-your-business .enhance-your-business-row1 {
  gap: 24px;
}

.enhance-your-business .enhance-your-business-row1 h2.enhance-your-business-sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #2F2F2F;
  text-align: left;
}

.enhance-your-business .enhance-your-business-row1 p.enhance-your-business-sec-txt {
  text-align: left;
  color: #575757;
  font-size: 16px;
  font-weight: 400;
  width: auto !important;
}

.enhance-your-business .enhance-your-business-row2 {
  padding-top: 40px;
  display: flex;
  gap: 20px;
  max-width: 100%;
}

.enhance-your-business-box:nth-child(n+1):nth-child(-n+3) {
  width: 32.3%;
}

.enhance-your-business .enhance-your-business-box {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 24px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease-in;
}

.enhance-your-business-box .enhance-your-business-b-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.enhance-your-business-box .enhance-your-business-b-head span.box-icon {
  border: 2px solid #8639BE;
  border-radius: 100%;
  padding: 8px;
}

.enhance-your-business-box .enhance-your-business-b-head h4.box-title {
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.enhance-your-business-box p.box-content {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.enhance-your-business {
  padding-top: 60px;
  background-color: white;
  margin-bottom: 100px;
}

.enhance-your-business .enhance-your-business-box:hover {
  border: 1px solid #C9C9C9;
  box-shadow: 41px 37px 37px -7px rgba(0, 0, 0, 0.07);
  background-color: white;
}

.trust-haloid-sec-quality-assurance button.btn2 {
  margin: 50px auto 0 auto !important;
}


/* Enhance Your Business Section End*/



/*Mobile App Development End*/

/* Laptop Screen Responsive */

@media all and (max-width:1450px) {

  .process-mobile-app .process-mobile-app-row1 h2.process-mobile-app-sec-heading,
  .emerging-technologies-sec .emerging-technologies-row1 h2.emerging-technologies-sec-heading,
  .enhance-your-business .enhance-your-business-row1 h2.enhance-your-business-sec-heading,
  .process-uiux .process-uiux-row1 h2.process-uiux-sec-heading {
    font-size: 36px !important;
    width: 70%;
  }

  .process-mobile-app .process-mobile-app-row1 p.process-mobile-app-sec-txt,
  .emerging-technologies-sec .emerging-technologies-row1 p.emerging-technologies-sec-txt,
  .enhance-your-business .enhance-your-business-row1 p.enhance-your-business-sec-txt,
  .process-uiux .process-uiux-row1 p.process-uiux-sec-txt {
    font-size: 16px !important;
    width: 70% !important;
  }

  .process-mobile-app-box .process-mobile-app-b-head h4.box-title,
  .emerging-technologies-box .emerging-technologies-b-head h4.box-title,
  .enhance-your-business-box .enhance-your-business-b-head h4.box-title,
  .process-uiux-box .process-uiux-b-head h4.box-title {
    font-size: 20px !important;
  }

  .process-mobile-app-box p.box-content,
  .emerging-technologies-box p.box-content,
  .enhance-your-business-box p.box-content,
  .process-uiux-box p.box-content {
    font-size: 16px !important;
    margin: 0 !important;
  }

  .process-mobile-app,
  .enhance-your-business,
  .process-uiux {
    margin-bottom: 50px !important;
  }

  .process-mobile-app-box:nth-child(n+1):nth-child(-n+4) {
    width: 23.6%;
  }

  .process-mobile-app-box:nth-child(n+5),
  .enhance-your-business-box:nth-child(n+1):nth-child(-n+3) {
    width: 32.1% !important;
  }

  section.engagement-models h4 {
    font-size: 36px;
    width: 70%;
  }

  section.engagement-models p {
    font-size: 14px;
  }

  .engagement-models-one,
  .engagement-models-two,
  .engagement-models-three {
    height: 380px;
  }

  .engagement-models-one p,
  .engagement-models-two p,
  .engagement-models-three p {
    font-size: 14px;
  }

  .engagement-models-one h5,
  .engagement-models-two h5,
  .engagement-models-three h5 {
    font-size: 28px;

  }


  .app-cost h2.sec-heading {
    font-size: 36px;
  }

  .app-cost p.sec-txt {
    font-size: 16px;
  }

  #app-cost-sec .tabs-div .tab {
    font-size: 16px;
  }

  #app-cost-sec .tabs {
    gap: 20px;
  }

  .tabs-content-box h5 {
    font-size: 36px;
  }

  .tabs-content-box p {
    font-size: 16px;
  }

  .contact-detailes-one h5,
  .contact-detailes-two h5 {
    font-size: 36px;
  }

  .contact-detailes-one p,
  .contact-detailes-two p {
    font-size: 16px;
  }

  .engagement-models-hed {
    margin-bottom: 25px;
  }

  .engagement-models-one,
  .engagement-models-two,
  .engagement-models-three {
    padding: 20px;
  }

  section.engagement-models p {
    font-size: 16px;
    line-height: 25px;
  }

}

/* Laptop Screen Responsive End*/


/* Table Screen Responsive */

@media all and (max-width:800px) {

  .process-mobile-app-box .process-mobile-app-b-head h4.box-title,
  .enhance-your-business-box .enhance-your-business-b-head h4.box-title,
  .process-uiux-box .process-uiux-b-head h4.box-title {
    font-size: 16px !important;
  }

  .process-mobile-app-box p.box-content,
  .enhance-your-business-box p.box-content,
  .process-uiux-box p.box-content {
    font-size: 12px !important;
    margin: 0 !important;
  }

  .process-mobile-app-box:nth-child(n+1):nth-child(-n+7) {
    width: 48% !important;
  }

  .emerging-technologies-sec .emerging-technologies-row1 h2.emerging-technologies-sec-heading,
  .emerging-technologies-sec .emerging-technologies-row1 p.emerging-technologies-sec-txt,
  section.engagement-models h4,
  .trust-haloid-sec .trust-haloid-row1 h2.sec-heading {
    width: 85%;
  }

  .process-mobile-app-box:nth-child(n+5),
  .enhance-your-business-box:nth-child(n+1):nth-child(-n+3) {
    width: 31% !important;
  }

  section#app-cost-sec {
    padding: 50px 0px 80px 0px;
  }

  .tabs-content-box h5 {
    font-size: 24px;
    line-height: 30px;
  }

  .contact-detailes-one h5,
  .contact-detailes-two h5 {
    font-size: 24px;
  }

  .contact-detailes-one,
  .contact-detailes-two {
    gap: 0px;
  }

  .seprator {
    margin: 15px 0px 15px 0px;
  }

  .engagement-models-one button.btn1,
  .engagement-models-two button.btn1,
  .engagement-models-three button.btn1 {
    font-size: 10px;
    padding: 10px 20px;
  }

  .engagement-models-one h5,
  .engagement-models-two h5,
  .engagement-models-three h5 {
    font-size: 18px;
  }

  section.engagement-models p {
    font-size: 11px;
    line-height: 20px;
  }

  .engagement-models-one,
  .engagement-models-two,
  .engagement-models-three {
    height: 310px;
  }

}

/* Table Screen Responsive End*/

/* Mobile Screen Responsive */

@media all and (max-width:500px) {

  .process-mobile-app-main-hed,
  .enhance-your-business-main-hed,
  .process-uiux-main-hed {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .process-mobile-app .process-mobile-app-row1 h2.process-mobile-app-sec-heading,
  .emerging-technologies-sec .emerging-technologies-row1 h2.emerging-technologies-sec-heading,
  .enhance-your-business .enhance-your-business-row1 h2.enhance-your-business-sec-heading,
  .process-uiux .process-uiux-row1 h2.process-uiux-sec-heading {
    font-size: 24px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .process-mobile-app .process-mobile-app-row1 p.process-mobile-app-sec-txt,
  .emerging-technologies-sec .emerging-technologies-row1 p.emerging-technologies-sec-txt,
  .enhance-your-business .enhance-your-business-row1 p.enhance-your-business-sec-txt,
  .process-uiux .process-uiux-row1 p.process-uiux-sec-txt {
    width: 100% !important;
    text-align: center !important;
  }

  .process-mobile-app-box:nth-child(n+1):nth-child(-n+7),
  .enhance-your-business-box:nth-child(n+1):nth-child(-n+3) {
    width: 100% !important;
  }

  .enhance-your-business {
    padding-top: 50px;
  }

  .process-mobile-app .process-mobile-app-row2,
  .process-uiux .process-uiux-row2 {
    padding-top: 40px;
    gap: 20px;
    max-width: 100%;
    flex-direction: row;
    overflow: visible;
    width: 100%;
  }

  .emerging-technologies-sec .emerging-technologies-row1 h2.emerging-technologies-sec-heading,
  .emerging-technologies-sec .emerging-technologies-row1 p.emerging-technologies-sec-txt,
  section.engagement-models h4,
  .trust-haloid-sec .trust-haloid-row1 h2.sec-heading {
    width: 100%;
  }

  .emerging-technologies-sec .emerging-technologies-row2 {
    grid-template-columns: repeat(1, 1fr);
    display: flex !important;
  }

  .emerging-technologies-sec {
    padding: 0px 0px 30px 0px;
  }

  .engagement-models-hed {
    margin-bottom: 20px;
  }

  section.engagement-models h4 {
    font-size: 24px;
    text-align: center;
  }

  section.engagement-models p {
    font-size: 14px;
    text-align: left;
    line-height: 25px;
  }

  .engagement-models-boxes {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .engagement-models-one,
  .engagement-models-two,
  .engagement-models-three {
    width: 100%;
    height: 438px;
    background-size: 100%;
  }

  .engagement-models-one h5,
  .engagement-models-two h5,
  .engagement-models-three h5 {
    font-size: 22px;
  }

  .engagement-models-one button.btn1,
  .engagement-models-two button.btn1,
  .engagement-models-three button.btn1 {
    font-size: 14px;
    padding: 15px 20px;
  }

  .engagement-models-one,
  .engagement-models-two,
  .engagement-models-three {
    padding: 25px;
  }

  section.emerging-technologies-sec.emerging-technologies-sec-quality-assurance {
    padding: 0px 0px 50px 0px !important;
  }

  section.emerging-technologies-sec.emerging-technologies-sec-quality-assurance button.btn2 {
    margin-top: 100px;
  }

  #app-cost-sec .tabs {
    flex-wrap: nowrap;
    justify-content: left;
  }

  section#app-cost-sec {
    padding: 30px 0px 50px 0px;
  }

  .app-cost h2.sec-heading {
    font-size: 24px;
    line-height: 30px;
    width: 100% !important;
  }

  #app-cost-sec .grid-container.active {
    flex-direction: column;
    padding: 35px 20px;
  }

  .tabs-content-box button.btn2 {
    margin: 0 auto;
  }

  .tabs-content-box {
    width: 100%;
  }

  .tabs-contact-info {
    width: 100%;
    margin-top: 20px;
  }

  .tabs-content-box h5,
  .tabs-content-box p {
    width: 100%;
    text-align: center;
  }

  .trust-haloid-sec .trust-haloid-row1 h2.sec-heading {
    font-size: 24px;
  }

  section#trust-haloid .btn2 {
    margin-top: 65px;
  }

  .process-mobile-app {
    padding: 50px 0px 50px 0px;
  }

  .process-mobile-app-box .process-mobile-app-b-head {
    flex-direction: row;
    align-items: center;
  }

  section#emerging-technologies-sec button.btn2 {
    margin-top: 100px;
  }

  .tech-stacks {
    padding: 50px 0px !important;
  }

  section.trust-haloid-sec.prominent-mobile-app {
    padding: 50px 0px;
    margin: 0;
  }

  section.trust-haloid-sec.trust-haloid-sec-quality-assurance {
    margin: 0 !important;
  }

  .emerging-technologies-box .emerging-technologies-b-head {
    align-items: start;
    flex-direction: column;
  }



}

/* Mobile Screen Responsive End*/


/* UI/UX Design Page */

section.ui-ux-design-banner {
  padding: 80px 0px 50px 0px;
  position: relative;
}

section.ui-ux-design-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/web-development/uiux-hero-bg.webp);
  background-size: cover;
  background-position: bottom center;
  width: 100%;
  height: 100%;
  z-index: -1;
}

section.ui-ux-design-banner .banner-col1 {
  width: 50%;
  padding: 20px 50px 0px 0px;
  gap: 40px;
  display: flex;
  flex-direction: column;
}

section.ui-ux-design-banner .banner-col1 h1.banner-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 52px;
}

section.ui-ux-design-banner .banner-col2 p.banner-txt {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  color: #575757;
  line-height: 24px;
  width: 85%;
}

section.ui-ux-design-banner .banner-cta-btn {
  display: flex;
  gap: 24px;
  align-items: center;
}


section.ui-ux-design-banner .banner-col2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  padding: 0;
  width: 50%;
}

section.ui-ux-design-banner .banner-col2 .expertise-team {
  width: 380px;
  padding: 10px 16px 0px 16px;
  background: url(../images/web-development/expertise-team-bg.webp) no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

section.ui-ux-design-banner .banner-col2 .expertise-team img {
  width: 302px;
}

section.ui-ux-design-banner .banner-col2 .expertise-team .expertise-team-h {
  background: #E1BAFD;
  width: 213px;
  border-radius: 80px;
  border: 2px solid #8639BE;
  padding: 4px 4px 4px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

section.ui-ux-design-banner .banner-col2 .expertise-team .expertise-team-h span.expertise-team-icon img {
  width: 47px;
}

section.ui-ux-design-banner .banner-col2 .expertise-team .expertise-team-h span.h-txt {
  color: #053047;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 600;
}

section.ui-ux-design-banner .banner-col2 .expertise-team h4 {
  color: #541980;
  font-family: "Work Sans", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
}

section.ui-ux-design-banner .banner-col2 .tech-boxes-right {
  width: 184px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

section.ui-ux-design-banner .banner-col2 .tech-boxes-right .exp-tech-box {
  border: 2px solid #8BAAFA;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 16px 16px 4px 16px;
  height: 143px;
  transition: all 0.2s ease-in;
}

section.ui-ux-design-banner .banner-col2 .tech-boxes-right .exp-tech-box img {
  width: 60px;
  margin-bottom: 15px;
}

section.ui-ux-design-banner .banner-col2 .tech-boxes-right .exp-tech-box p {
  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2F2F2F;
}

section.ui-ux-design-banner .banner-col2 .tech-boxes-right .exp-tech-box:hover {
  box-shadow: 21px 18px 72px 0px rgba(0, 0, 0, 0.13);
}

section.ui-ux-design-banner .banner-col2 .col2-inner-col1 {
  padding: 0;
  display: flex;
  gap: 12px;
}

section.ui-ux-design-banner .banner-col2 .exp-tech-box {
  border: 2px solid #8BAAFA;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 16px 16px 4px 16px;
  height: 143px;
  transition: all 0.2s ease-in;
}

section.ui-ux-design-banner .banner-col2 .exp-tech-box p {
  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2F2F2F;
}

section.ui-ux-design-banner .banner-col2 .exp-tech-box:hover {
  box-shadow: 21px 18px 72px 0px rgba(0, 0, 0, 0.13);
}

.portfolio-img {
  position: relative;
  width: 260px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portfolio-img img {
  object-fit: cover;
  width: 100%;
}

/* Design Services Slider */

:root {
  --portfolio-size: clamp(10rem, 1rem + 40vmin, 30rem);
  --portfolio-gap: calc(var(--portfolio-size) / 8);
  --portfolio-duration: 150s;
  --portfolio-scroll-start: 0;
  --portfolio-scroll-end: calc(-100% - var(--portfolio-gap));
}


* {
  box-sizing: border-box;
}

.portfolio-marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0px;
  mask-image: linear-gradient(var(--portfolio-mask-direction, to right),
      hsl(0 0% 0% / 0),
      hsl(0 0% 0% / 1) 10%,
      hsl(0 0% 0% / 1) 90%,
      hsl(0 0% 0% / 0));
}

.portfolio-marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0px;
  min-width: 70%;
  animation: scroll-x var(--portfolio-duration) linear infinite forwards;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-marquee__group {
    animation-play-state: paused;
  }
}

.portfolio-marquee--vertical {
  --portfolio-mask-direction: to bottom;
}

.portfolio-marquee--vertical,
.portfolio-marquee--vertical .portfolio-marquee__group {
  flex-direction: column;
}

.portfolio-marquee--vertical .portfolio-marquee__group {
  animation-name: scroll-y;
}

.portfolio-marquee--reverse .portfolio-marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--portfolio-scroll-start));
  }

  to {
    transform: translateX(var(--portfolio-scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--portfolio-scroll-start));
  }

  to {
    transform: translateY(var(--portfolio-scroll-end));
  }
}

/* Parent wrapper */
.portfolio-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--portfolio-gap);
  margin: auto;
  max-width: 100vw;
}

section#ui-ux-design .row.banner-row {
  margin-bottom: 50px;
}

.process-uiux-mainpage .process-uiux-box {
  height: auto !important;
}

.process-uiux-mainpage .process-uiux-box:nth-child(1) {
  width: 30% !important;
}

.process-uiux-mainpage .process-uiux-box:nth-child(2) {
  width: 40% !important;
}

.process-uiux-mainpage .process-uiux-box:nth-child(3) {
  width: 26% !important;
}

.process-uiux-mainpage .process-uiux-box:nth-child(4) {
  width: 40% !important;
}

.process-uiux-mainpage .process-uiux-box:nth-child(5) {
  width: 25% !important;
}

.process-uiux-mainpage .process-uiux-box:nth-child(6) {
  width: 31% !important;
}

/* Process Ui/Ux Section*/

section#agency-solution button.btn2,
section#process-uiux button.btn2 {
  margin-top: 50px;
}

.process-uiux .process-uiux-row1 {
  gap: 24px;
}

.process-uiux .process-uiux-row1 h2.process-uiux-sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #2F2F2F;
  text-align: left;
}

.ai-ml-software-development .process-uiux-row1 h2.process-uiux-sec-heading {
  width: 40%;
}

.ai-ml-software-development .process-uiux-row1 p.process-uiux-sec-txt {
  width: 60%;
}

.process-uiux .process-uiux-row1 p.process-uiux-sec-txt {
  text-align: left;
  color: #575757;
  font-size: 16px;
  font-weight: 400;
  width: auto;
}

.process-uiux .process-uiux-row2 {
  padding-top: 40px;
  gap: 20px;
  max-width: 100%;
}

.process-uiux-box:nth-child(n+1):nth-child(-n+3) {
  width: 32.3%;
}

.process-uiux-box:nth-child(n+4) {
  width: 32.3% !important;
}

.process-uiux .process-uiux-box {
  border: 1px solid #C9C9C9;
  border-radius: 10px;
  padding: 24px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease-in;
}

.process-uiux-box .process-uiux-b-head {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

p.process-uiux-number {
  background: -webkit-linear-gradient(#173B9C, #8639BE) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 600 !important;
  font-size: 26px;
  font-family: "Work Sans", Sans-serif;
  margin: 0;
}

.process-uiux-box .process-uiux-b-head span.box-icon {
  border: 2px solid #8639BE;
  border-radius: 100%;
  padding: 8px;
}

.process-uiux-box .process-uiux-b-head h4.box-title {
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.process-uiux-box p.box-content {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.process-uiux {
  padding: 80px 0px 80px 0px;
  background-color: #F8F9FF;
  margin-bottom: 100px;
}

.process-uiux .process-uiux-box:hover {
  box-shadow: 41px 37px 37px -7px rgba(0, 0, 0, 0.07);
  background-color: white;
}

/* Process UI/UX End*/

/* Components UI/UX Section */

section.components-uiux-design {
  padding: 50px 0px 100px 0px;
}

.components-uiux-design-row {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.components-uiux-design-col1 {
  width: 30%;
}

.components-uiux-design-col2 {
  width: 70%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.components-uiux-design-col1 h2 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
}

.components-uiux-design-col1 p {
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.components-uiux-design-box {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #E5E5E5;
  padding: 30px 24px;
  border-radius: 10px;
  width: 258px;
  transition: 0.5s;
}

.components-uiux-design-box:hover {
  box-shadow: 30px 25px 100px 0px rgba(0, 0, 0, 0.19);
  transition: 0.5s;
}


.components-uiux-design-col-one,
.components-uiux-design-col-two,
.components-uiux-design-col-three {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.components-uiux-design-box p {
  font-family: "Work Sans", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2F2F2F;
  margin: 0;
}

.components-uiux-design-box img {
  width: 50px;
}

/* Components UI/UX Section End*/

/* Technologies Haloid Section */

section.technologies-haloid-section {
  background: #F8F9FF;
  padding: 100px 0;
}

.brand-icons-grid {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: #f8f8f8;
}

.brand-icon-content {
  width: 232px;
  height: 160px;
  background-color: #ffffff;
  border: 1px solid #E5E5E5;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-direction: column;
  gap: 20px;
  transition: 0.5s;
}

.brand-icon-content:hover {
  border: 1px solid #8639BE;
  box-shadow: 21px 18px 72px 0px rgba(0, 0, 0, 0.13);
  transition: 0.5s;
}

.brand-icon-content p {
  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.technologies-haloid-col h3 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.technologies-haloid-col p {
  text-align: center;
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  width: 60%;
}

.technologies-haloid-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.brand-icon-content img {
  width: 50px;
  height: 50px;
}


.container .brand-icon-content:nth-child(1) {
  order: 1;
}

.container .brand-icon-content:nth-child(2) {
  order: 2;
}

.container .brand-icon-content:nth-child(3) {
  order: 3;
}

.container .brand-icon-content:nth-child(4) {
  order: 4;
}

.container .brand-icon-content:nth-child(5) {
  order: 5;
}

.container .brand-icon-content:nth-child(6) {
  order: 6;
}

.container .brand-icon-content:nth-child(7) {
  order: 7;
}

.container .brand-icon-content:nth-child(8) {
  order: 8;
}

.container .brand-icon-content:nth-child(9) {
  order: 9;
}

.container .brand-icon-content:nth-child(10) {
  order: 10;
}

.container .brand-icon-content:nth-child(11) {
  order: 11;
}

/* Technologies Haloid Section End*/



/*UI/UX Design Page End*/

/* Laptop Screen Responsive */

@media all and (max-width: 1450px) {

  .portfolio-img {
    width: 200px;
  }

  section.ui-ux-design-banner .banner-col1 h1.banner-heading {
    font-size: 42px;
  }

  section.ui-ux-design-banner .banner-col2 p.banner-txt {
    font-size: 16px;
  }

  section.ui-ux-design-banner .banner-col2 {
    gap: 20px;
  }

  .process-uiux-box:nth-child(n+1):nth-child(-n+3) {
    width: 32%;
  }

  .process-uiux-box:nth-child(n+4) {
    width: 32% !important;
  }

  .components-uiux-design-col1 h2 {
    font-size: 36px;
  }

  .components-uiux-design-col1 p {
    font-size: 16px;
  }

  .components-uiux-design-box p {
    font-size: 16px;
  }

  .components-uiux-design-box {
    padding: 25px 25px;
    width: 220px;
  }

  section.technologies-haloid-section {
    padding: 70px 0;
  }

  .technologies-haloid-col h3 {
    font-size: 24px;
  }

  .technologies-haloid-col p {
    font-size: 16px;
  }

}

/* Laptop Screen Responsive End*/

/* Table Screen Responsive */

@media all and (max-width: 800px) {

  .portfolio-img {
    width: 150px;
  }

  .process-uiux-mainpage .process-uiux-box {
    height: auto !important;
  }

  .portfolio-marquee__group,
  .portfolio-marquee {
    gap: 15px;
  }

  section.ui-ux-design-banner .banner-col1 h1.banner-heading {
    font-size: 30px;
    line-height: 35px;
  }

  section.ui-ux-design-banner .banner-cta-btn {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-uiux-box:nth-child(n+1):nth-child(-n+7) {
    width: 48% !important;
  }


  .process-uiux-box:nth-child(n+5) {
    width: 31% !important;
  }

  .components-uiux-design-col1 h2 {
    font-size: 24px;
  }

  .components-uiux-design-box {
    gap: 5px;
    padding: 20px 10px;
    width: 150px;
  }

  .components-uiux-design-box img {
    width: 25px;
  }

  .components-uiux-design-col-one,
  .components-uiux-design-col-two,
  .components-uiux-design-col-three {
    gap: 10px;
  }

  .components-uiux-design-col2 {
    gap: 10px;
  }

  .components-uiux-design-box p {
    font-size: 11px;
  }

  section.components-uiux-design {
    padding: 0px 0px 50px 0px;
  }

  section.technologies-haloid-section {
    padding: 50px 0;
  }

  .technologies-haloid-col p {
    width: 80%;
  }

  .brand-icons-grid {
    width: 100%;
  }



}


/* Table Screen Responsive End */


/* Mobile Screen Responsive */

@media all and (max-width: 500px) {

  section.ui-ux-design-banner {
    padding: 50px 0px 50px 0px;
    position: relative;
  }

  .process-uiux {
    padding: 50px 0px 100px 0px;
  }

  section.ui-ux-design-banner .banner-col1 {
    width: 100%;
    padding: 0px 0px 25px 0px;
    text-align: center;
  }

  section.ui-ux-design-banner .banner-col2 {
    padding: 0;
    width: 100%;
    align-items: center;
  }

  section.ui-ux-design-banner .banner-cta-btn {
    width: 100%;
  }

  section#ui-ux-design button.btn2 {
    width: 100%;
  }

  section#ui-ux-design .container-fluid {
    width: 100% !important;
  }

  .portfolio-img {
    width: 170px;
  }

  section.ui-ux-design-banner .banner-col2 p.banner-txt {
    text-align: center;
    width: 100%;
  }

  section.ui-ux-design-banner .banner-col1 h1.banner-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .process-uiux-box:nth-child(n+1):nth-child(-n+7) {
    width: 100% !important;
  }

  .components-uiux-design-row {
    flex-direction: column;
  }

  .components-uiux-design-col1 {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .components-uiux-design-col1 h2 {
    text-align: center;
  }

  .components-uiux-design-col1 p {
    text-align: center;
  }

  .components-uiux-design-col2 {
    width: 100%;
    flex-direction: column;
  }

  .technologies-haloid-col p {
    font-size: 14px;
    width: 100%;
  }

  .brand-icons-grid {
    padding: 0;
  }

  .brand-icon-content {
    width: 150px;
  }

  .components-uiux-design-box {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .components-uiux-design-box img {
    width: 50px;
  }

  .components-uiux-design-box p {
    font-size: 16px;
  }

  div#components-uiux-design-col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }


}

/* Mobile Screen Responsive End */


/* E-Commerce Developement Page */

/*Web Devlopment page*/

section.ecommerce-web-dev-banner {
  padding: 60px 0px 60px 0px;
  position: relative;
}

section#ecommerce-web-dev .banner-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

section.ecommerce-web-dev-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/ecommerce/web-dev-hero.webp);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  z-index: -1;
}

section#ecommerce-web-dev:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #0000009c;
  width: 100%;
  height: 100%;
  z-index: -1;
}

section.ecommerce-web-dev-banner .banner-col1 {
  width: 50%;
  padding: 20px 50px 0px 0px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

section.ecommerce-web-dev-banner .banner-col1 h1.banner-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 52px;
  color: white;
}

section.ecommerce-web-dev-banner .banner-col1 p.banner-txt {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  color: white;
  line-height: 24px;
}

section.ecommerce-web-dev-banner .banner-cta-btn {
  display: flex;
  gap: 24px;
  align-items: center;
}

section.ecommerce-web-dev-banner .banner-cta-btn a.cta-btn {
  width: auto;
}

span.cta-btn-icon img {
  width: 15px;
}

#ecommerce-web-dev .review-platform {
  display: flex;
  gap: 25px;
  align-items: center;
}

.review-platform .review-p-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-p-box.center-box:before {
  content: '';
  background: url(../images/web-development/rating-divider.webp) no-repeat;
  position: absolute;
  width: 1px;
  height: 67px;
  left: -18px;
  top: -5px;
}

.review-p-box.center-box:after {
  content: '';
  background: url(../images/web-development/rating-divider.webp) no-repeat;
  position: absolute;
  width: 1px;
  height: 67px;
  right: -20px;
  top: -5px;
}

.review-p-box.center-box {
  position: relative;
}

section.ecommerce-web-dev-banner .banner-col2 {
  padding: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ecommerce-web-dev-content-box {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 40px;
  border-radius: 15px;
  width: 590px;
}

.ecommerce-web-dev-content-box h3 {
  font-family: "Work Sans", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.ecommerce-web-dev-content-box h5 {
  color: #303BA4;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.ecommerce-web-dev-content-box p {
  text-align: center;
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
}

ul.check-list-content {
  list-style-type: none;
  padding: 0;
}

ul.check-list-content li {
  display: flex;
  flex-direction: row;
  align-items: center;
}

ul.check-list-content li {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #575757;
  margin-bottom: 15px;
  transition: 0.3s;
}

ul.check-list-content i.fa-regular.fa-circle-check {
  background: linear-gradient(45deg, #6a5acd, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  margin-right: 8px;
  transition: 0.3s;
}

.emerging-technologies-box:hover ul.check-list-content li {
  color: white;
  transition: 0.3s;
}

.emerging-technologies-box:hover ul.check-list-content i.fa-regular.fa-circle-check {
  filter: brightness(0) invert(1);
  transition: 0.3s;
}



/* E-Commerce Developement Page End */

/* Laptop Screen Responsive */

@media all and (max-width: 1450px) {

  section.ecommerce-web-dev-banner .banner-col1 h1.banner-heading {
    font-size: 42px;
  }

  section.ecommerce-web-dev-banner .banner-col1 p.banner-txt {
    font-size: 16px;
  }

  section.ecommerce-web-dev-banner .banner-col1 {
    gap: 20px;
  }

  .ecommerce-web-dev-content-box h3 {
    font-size: 32px;
  }

  .ecommerce-web-dev-content-box h5 {
    font-size: 18px;
  }

  .ecommerce-web-dev-content-box p {
    font-size: 16px;
  }

  .ecommerce-web-dev-content-box {
    width: 550px;
  }

}

/* Laptop Screen Responsive End*/

/* Table Screen Responsive */

@media all and (max-width: 800px) {

  section.ecommerce-web-dev-banner .banner-col1 h1.banner-heading {
    font-size: 30px;
    line-height: 35px;
  }

  section.ecommerce-web-dev-banner .banner-cta-btn {
    align-items: flex-start;
    flex-direction: column;
  }

  section.ecommerce-web-dev-banner .banner-col2 .tech-boxes-right .exp-tech-box p,
  section.ecommerce-web-dev-banner .banner-col2 .exp-tech-box p {
    font-size: 10px;
  }

  section.ecommerce-web-dev-banner .banner-col2 .tech-boxes-right .exp-tech-box img,
  .col2-inner-col2 .exp-tech-box img {
    width: 50px;
    margin-bottom: 10px;
  }

  .ecommerce-web-dev-content-box {
    width: 350px;
  }

  section.ecommerce-web-dev-banner .banner-col1 {
    padding: 20px 20px 0px 0px;
  }

  .ecommerce-web-dev-content-box {
    padding: 25px;
  }

  .ecommerce-web-dev-content-box h3 {
    font-size: 25px;
  }

  section.ecommerce-web-dev-banner {
    padding: 30px 0px 50px 0px;
    position: relative;
  }



}

/* Table Screen Responsive End*/

/* Mobile Screen Responsive */

@media all and (max-width: 500px) {

  section.ecommerce-web-dev-banner .banner-col1 {
    width: 100%;
    padding: 0px 0px 25px 0px;
    align-items: center;
  }

  section.ecommerce-web-dev-banner .banner-col2 {
    padding: 0;
    width: 100%;
  }

  section.ecommerce-web-dev-banner .banner-col1 h1.banner-heading {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }

  section.ecommerce-web-dev-banner .banner-col1 p.banner-txt {
    text-align: center;
  }

  #ecommerce-web-dev .review-platform {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px !important;
    place-items: center;
    width: 100%;
  }

}

/* Mobile Screen Responsive End*/


/* Contact Page */

section.contact-section.contactus-page {
  padding: 80px 0px 0px 0px;
}

section.contact-section.contactus-page {
  padding: 80px 0px 0px 0px;
}

.contactus-page h5 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.contactus-page p {
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
}

.contact-booking-col2,
.contact-booking-form {
  border: 1px solid #D8D8D8;
  border-radius: 15px;
  padding: 40px 24px;
}

section.contact-section.contactus-page form.contact-form input.form-control {
  width: 100%;
}

.Email-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.Email-box i {
  font-size: 35px;
  /* icon size */
  background: linear-gradient(79deg, #173B9C, #8639BE);
  /* gradient colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid #E5E5E5;
  padding: 15px;
  border-radius: 50%;
}

.Email-box h5 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.3px;
}

.Email-box h3 {
  color: #2F2F2F;
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}

.Email-content-box {
  padding-left: 10px;
}

/* Contact Page End*/

/* Table Screen Responsive */

@media all and (max-width: 800px) {

  section.contact-section.contactus-page {
    padding: 50px 0px 0px 0px;
  }

  .contactus-page h5 {
    font-size: 24px;
  }

  .contactus-page p {
    font-size: 14px;
  }

  .col-lg-7.contact-booking-col2 {
    width: 95%;
    margin: 0 auto;
  }

  .col-lg-5.contact-booking-col1 {
    padding: 0;
  }

  .contactus-page .contact-from-row2 {
    gap: 20px;
  }

  .Email-box h5 {
    font-size: 16px;
  }

  .Email-box h3 {
    font-size: 18px;
  }


}

/* Table Screen Responsive End*/

/* Mobile Screen Responsive*/
@media all and (max-width: 500px) {

  section#trusted-partners-contact {
    margin: 50px 0px !important;
  }

  .col-lg-7.contact-booking-col2 {
    width: 100%;
  }
}

/* Mobile Screen Responsive End*/


/*Blog Tabs Page Css*/

.blog-tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-tab-card img,
.blog-tab-cards img {
  width: 100%;
  border-radius: 15px;
}

.blog-card-content h4 {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
}

.blog-card-content p {
  font-size: 16px;
  font-family: Montserrat;
  color: #575757;
  margin: 20px 0px 60px 0px;
}

.blog-card-content button {
  background: none;
  border: none;
  font-size: 16px;
  font-family: Montserrat;
  text-decoration: underline;
  font-weight: 600;
  color: #2f2f2f;
}

.blog-card-content {
  width: 93%;
  border: 1px solid #E5E5E5;
  padding: 30px;
  border-radius: 15px;
  margin-top: -35px;
  position: relative;
  background: white;
}

h2.blog-page-tab-title {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.3px;
  margin-bottom: 50px;
}

h2.blog-page-title {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: 0.3px;
  text-align: center;
  margin-bottom: 50px;
}

#blog-tabs-sec .blog-tabs-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

#blog-tabs-sec .tabs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  scrollbar-width: none;
}

#blog-tabs-sec .blog-tabs-div .tab {
  padding: 10px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 64px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  color: #2F2F2F;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

#blog-tabs-sec .blog-tabs-div .tab:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 64px;
  background: linear-gradient(70deg, #173B9C, #8639BE);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#blog-tabs-sec .blog-tabs-div .tab:hover:before {
  opacity: 1;
}

#blog-tabs-sec .blog-tabs-div .tab:hover {
  color: #fff;
}

#blog-tabs-sec .blog-tabs-div .tab.active {
  background: linear-gradient(70deg, #173B9C, #8639BE);
  color: #fff;
}

#blog-tabs-sec .tabs::-webkit-scrollbar {
  display: none;
}

#blog-tabs-sec .grid-container {
  display: none;
  margin-top: 40px;
}

#blog-tabs-sec .grid-container.active {
  display: block;
}

@media (max-width: 768px) {
  #blog-tabs-sec .grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 0px;
  }

  #blog-tabs-sec .blog-tabs-div {
    width: auto;
  }

  #blog-tabs-sec .tabs {
    flex-wrap: wrap;
    overflow-x: auto;
    justify-content: center;
    gap: 10px;
  }
}

.blog-tech-tabs {
  padding-bottom: 80px;
}

.blog-tech-tabs h2.sec-heading {
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #2F2F2F;
  width: 763px;
  margin: 0 auto;
  text-align: center;
}

.blog-tech-tabs p.sec-txt {
  text-align: center;
  color: #575757;
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

/*Blog Tabs Page Css End*/

/* Laptop Screen Responsive */

/* Mobile Screen Responsive */

.blog-tab-card img,
.blog-tab-cards img {
  height: 300px;
  object-fit: cover;
}

/* Mobile Screen Responsive End*/

@media screen and (max-width: 1450px) {

  section.blogs-tile-section {
    padding: 70px 0px;
  }

  h2.blog-page-title {
    font-size: 36px;
  }

  .blog-masonry-grid1 .featured-blog {
    height: 500px;
  }

  .blog-category {
    font-size: 12px;
  }

  .blog-masonry-grid1 .blog-content-box h2 a {
    font-size: 20px;
  }

  .blog-meta {
    font-size: 14px;
  }

  .blog-masonry-grid2 .featured-blog {
    height: 240px;
  }

  .blog-masonry-grid2 .blog-content-box h2 a {
    font-size: 18px;
  }

  h2.blog-page-tab-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .blog-card-content p {
    font-size: 16px;
    ;
    margin: 20px 0px 40px 0px;
  }

}

/* Laptop Screen Responsive End*/

/* Tablet Screen Responsive */

@media screen and (max-width: 800px) {
  section.blogs-tile-section {
    padding: 50px 0px;
  }

  h2.blog-page-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .blog-masonry-grid2 {
    margin-top: 30px;
  }

  .blog-tab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Tablet Screen Responsive End*/


/* Mobile Screen Responsive */

@media screen and (max-width: 500px) {

  h2.blog-page-title {
    font-size: 24px;
  }

  .blog-masonry-grid1 .featured-blog {
    height: 400px;
  }

  h2.blog-page-tab-title {
    font-size: 24px;
    margin-bottom: 40px;
    margin-top: 40px;
    text-align: center;
  }

  .blog-tab-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .blog-card-content {
    width: 100%;
    padding: 24px;
  }

  .blog-card-content p {
    margin: 20px 0px 20px 0px;
  }

  #blog-tabs-sec .tabs {
    flex-wrap: nowrap;
  }

}

/* Mobile Screen Responsive End*/


/* Technologies Section */

section.trusted-partners.technologies-trusted-partners {
  margin: 0 0 80px 0 !important;
  padding: 80px 0px;
  background: #F8F9FF;
}

#sticky-sidebar {
  position: sticky;
  top: 120px;
  max-height: calc(100vh - 120px);
  /* Adjust based on header + padding */
  overflow-y: auto;
}

.technologies-hero h2 {
  margin-bottom: 50px !important;
}

#tec-sec .tabs-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

#tec-sec .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  scrollbar-width: none;
}

#tec-sec .tabs-div .tab {
  padding: 10px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 64px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}

#tec-sec .tabs-div .tab:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 64px;
  background: linear-gradient(70deg, #173B9C, #8639BE);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#tec-sec .tabs-div .tab:hover:before {
  opacity: 1;
}

#tec-sec .tabs-div .tab:hover {
  color: #fff;
}

#tec-sec .tabs-div .tab.active {
  background: linear-gradient(70deg, #173B9C, #8639BE);
  color: #fff;
}

#tec-sec .tabs::-webkit-scrollbar {
  display: none;
}

#tec-sec .grid-container {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin-top: 40px;
}

#tec-sec .grid-container.active {
  display: grid;
}

#tec-sec .grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  height: 138px;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
  box-shadow: none;
}

#tec-sec .grid-item img {
  max-width: 50px;
  height: 50px;
}

#tec-sec .grid-item p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-top: 10px;
  color: #575757;
}

#tec-sec .grid-item:hover {
  background-color: white;
  border: 1px solid #8639BE;
  border-radius: 12px;
  box-shadow: 60px 50px 100px 0px #00000014;
}

#tec-sec button.btn2 {
  margin: 50px auto 0 auto;
}

@media (max-width: 768px) {
  #tec-sec .grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 15;
  }

  #tec-sec .tabs-div {
    width: auto;
  }

  #tec-sec .grid-item-non {
    display: none;
  }

  #tec-sec .grid-item {
    width: 20vh;
  }

  #tec-sec .tabs {
    flex-wrap: wrap;
    overflow-x: auto;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 450px) {

  #tec-sec .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0px;
  }

  section.trusted-partners.technologies-trusted-partners {
    margin: 0 0 50px 0 !important;
    padding: 40px 0px !important;
  }
}

@media (max-width: 500px) {

  #sticky-sidebar {
    position: relative !important;
    max-height: 100%;
    top: 0;
  }

  #tec-sec .tabs {
    flex-wrap: nowrap;
  }

}

/* Technologies Section End*/





/* Blog Inner Page Css */

section.blog-inner-page {
  padding: 100px 0px;
}

.top-blog-title-content {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0 auto;
}

h1.blog-inner-title {
  text-align: center;
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 110.00000000000001%;
}

p.blog-inner-top-para {
  text-align: center;
}

.top-blog-title-content {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0px auto 50px auto;
}

img.blog-inner-main-img {
  width: 100%;
  border-radius: 15px;
}

.blog-inner-author-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.blog-inner-author-profile img.author-img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.author-name h4 {
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.author-name p {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.author-name {
  margin-left: 10px;
}

.author-detailes {
  margin: 25px 0px 50px 0px;
}

p.blog-inner-para {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  color: #575757;
  line-height: 30px;
}

h4.blog-inner-hed {
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0px 20px 0px;
}

ol.blog-inner-ul li {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  color: #575757;
  line-height: 30px;
}

h3.blog-inner-hed-main {
  text-align: center;
  color: #2F2F2F;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin: 30px 0px 30px 0px;
}

ul.short-links {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
}

ul.short-links li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

span.short-links-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

span.short-links-content h5 a {
  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
  color: black;
  text-decoration: none;
}

ul.short-links li {
  padding: 10px 0px;
  border-bottom: 1px solid #ddd;
}

ul.short-links i.fas.fa-angle-right {
  font-size: 20px;
}

ul.short-links i.fas.fa-angle-right {
  font-size: 20px;
}

.blog-inner-sticky-card h4 {
  font-family: "Work Sans", Sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #2F2F2F;
}

.blog-inner-sticky-card {
  position: relative;
  transition: all 0.3s ease;
}

.blog-inner-sticky-card.sticky {
  position: fixed;
  top: 0;
}

.newsletter-card {
  padding: 30px;
  position: relative;
  border-radius: 15px;
}

.newsletter-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/blogs/blog-innerpage-icon/blog-hero-em-bg.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  border-radius: 15px;
}

.newsletter-card h4 {
  color: #FFFFFF;
  font-family: "Work Sans", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
}

.newsletter-card p {
  text-align: center;
  color: #FFFFFF;
  font-family: "Montserrat", Sans-serif;
  font-weight: 400;
}

.newsletter-card input[type="email"]::placeholder {
  color: white;
  line-height: 1.4;
  font-size: 15px;
  font-family: Montserrat;
}

.newsletter-card input[type="email"] {
  width: 100%;
  height: 55px;
  background: transparent;
  border: 1px solid white;
  border-radius: 10px;
  padding: 0px 20px;
  color: white;
}

.newsletter-card button {
  height: 55px;
  width: 100%;
  border-radius: 7px;
  border: 1px solid white;
  background-color: white;
  margin-top: 10px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 500;
  font-family: Montserrat;
  transition: background 0.5s ease-in;
  transition: 0.5s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.newsletter-card button:hover {
  background: linear-gradient(86.32deg, #173B9C -17.6%, #8639BE 100%);
  background-size: 200% 100%;
  background-position: right;
  border: 1px solid transparent;
  color: white;
  transition: 0.5s;
}

.newsletter-card button:hover img {
  filter: brightness(0) invert(1);
}

.tag-chip {
  margin: 3px;
  font-family: "Montserrat", Sans-serif;
  font-weight: 500;
  display: inline-block;
  padding: 10px 24px;
  background-color: #F0F0F0;
  border-radius: 6px;
  text-decoration: none;
  color: #575757;
  transition: background-color 0.3s;
}

.tag-chip:hover {
  background-color: #ddd;
}

.active-tag {
  background-color: #0b3a59 !important;
  color: white !important;
}

.tags-wrapper {
  text-align: center;
}

/* Blog Inner Page Css End*/

/* Laptop Screen Responsive */

@media all and (max-width: 1450px) {

  h1.blog-inner-title {
    font-size: 30px;
  }

  p.blog-inner-top-para {
    font-size: 14px;
  }

  p.blog-inner-para {
    font-size: 14px;
    line-height: 25px;
  }

  h4.blog-inner-hed {
    font-size: 22px;
    margin: 15px 0px 15px 0px;
  }

  ol.blog-inner-ul li {
    font-size: 14px;
    line-height: 25px;
  }

  h3.blog-inner-hed-main {
    font-size: 30px;
  }

}

/* Laptop Screen Responsive End*/

/* Table Screen Responsive */

@media all and (max-width: 800px) {

  section.blog-inner-page {
    padding: 50px 0px;
  }

  .top-blog-title-content {
    width: 90%;
  }

}

/* Table Screen Responsive End*/

/* Mobile Screen Responsive */

@media all and (max-width: 500px) {

  h1.blog-inner-title {
    font-size: 24px;
    line-height: 30px;
  }

  .top-blog-title-content {
    width: 100%;
  }

  .author-detailes {
    margin: 25px 0px 25px 0px;
  }

  .author-name h4 {
    font-size: 16px;
  }

  .author-name p {
    font-size: 14px;
  }

  h3.blog-inner-hed-main {
    font-size: 24px;
  }

  span.short-links-content h5 a {
    font-size: 16px;
  }

  .newsletter-card h4 {
    font-size: 24px;
    line-height: 30px;
  }

  .newsletter-card p {
    font-size: 14px;
  }


}

/* Mobile Screen Responsive End*/


/* Terms & Condition Page  */

section.terms-condition-section {
  padding: 100px 0px;
}

.terms-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.terms-condition-content {
  width: 75%;
  margin: 0 auto;
}

.terms-main-hed h2 {
  font-family: Work Sans;
  font-weight: 600;
  font-size: 36px;
  line-height: 110.00000000000001%;
  color: #2F2F2F;
}

.terms-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.terms-date-content h5 {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #575757;
  margin: 0;
}

.terms-date-content p {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #2F2F2F;
  margin: 0;
}

.terms-date i {
  background: linear-gradient(45deg, #173B9C, #8639BE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
}

.terms-condition-content h3 {
  font-family: Work Sans;
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  color: #2F2F2F;
}

.terms-condition-content p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #575757;
}

.terms-condition-content ul li {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #575757;
}

.terms-condition-content ul li h5 {
  font-family: Work Sans;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #2F2F2F;
}

.terms-condition-content ul li h5 {
  font-size: 16px;
}

/* Terms & Condition Page End*/

/* Tablet Screen Responsive */

@media all and (max-width: 800px) {

  section.terms-condition-section {
    padding: 50px 0px;
  }

  .terms-condition-content {
    width: 95%;
  }

  .terms-main-hed h2 {
    font-size: 30px;
  }

  .terms-date-content h5 {
    font-size: 14px;
  }

  .terms-date i {
    font-size: 20px;
  }

  .terms-condition-content h3 {
    font-size: 18px;
  }

  .terms-condition-content p {
    font-size: 14px;
  }

  .terms-condition-content ul li {
    font-size: 14px;
  }

}

/* Tablet Screen Responsive End*/

/* Mobile Screen Responsive End*/

@media all and (max-width: 500px) {

  .terms-condition-content {
    width: 100%;
  }

  .terms-main-hed h2 {
    font-size: 22px;
  }

  .terms-date {
    gap: 5px;
  }

  .terms-date-content h5 {
    font-size: 12px;
  }

  .terms-main-hed {
    width: 65%;
  }

  .terms-date {
    width: 35%;
  }

}

/* Mobile Screen Responsive End*/


/* Incredible Expertise */

.incredible-expertise p {
  text-align: center !important;
}

.incredible-expertise {
  max-width: 60% !important;
  gap: 5px !important;
  margin: 0 auto;
}

.incredible-expertise h2 {
  text-align: center !important;
}

.incredible-expertise-box h4 {
  text-align: center;
}

.incredible-expertise-head {
  justify-content: space-between;
}

.incredible-expertise-box p.box-content {
  text-align: center;
}

.incredible-expertise-head span.box-icon {
  margin-left: 33px;
}

@media all and (max-width: 1450px) {

  .incredible-expertise {
    max-width: 95% !important;
  }

}

@media all and (max-width: 800px) {
  .incredible-expertise {
    max-width: 99% !important;
  }
}


/* Incredible Expertise End*/


/* 404 Page Start*/

.error-main-hed img {
  width: 578px;
  height: 385px;
}

.error-main-hed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.error-main-hed h2 {
  font-size: 36px;
  color: #2F2F2F;
  font-weight: 600;
}

.error-main-hed p {
  font-size: 16px;
  width: 43%;
  text-align: center;
}

/* Table Screen Start*/

@media all and (max-width: 768px) {

  .error-main-hed {
    padding: 50px 0;
  }

  .error-main-hed h2 {
    font-size: 30px;
  }

  .error-main-hed p {
    font-size: 14px;
    width: 70%;
  }

}

/* Table Screen End*/

/* Mobile Screen Start */

@media all and (max-width: 500px) {

  .error-main-hed img {
    width: 100%;
    height: auto;
  }

  .error-main-hed p {
    width: 80%;
  }

}

/* Mobile Screen End */

/* 404 Page End*/



/* Thankyou Page Start*/

.thankyou-main-hed img {
  width: 378px;
  height: 378px;
}

.thankyou-main-hed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.thankyou-main-hed h2 {
  font-size: 36px;
  color: #2F2F2F;
  font-weight: 600;
}

.thankyou-main-hed p {
  font-size: 16px;
  width: 43%;
  text-align: center;
}

/* Table Screen Start*/

@media all and (max-width: 768px) {

  .thankyou-main-hed {
    padding: 50px 0;
  }

  .thankyou-main-hed h2 {
    font-size: 30px;
  }

  .thankyou-main-hed p {
    font-size: 14px;
    width: 70%;
  }

}

/* Table Screen End*/

/* Mobile Screen Start */

@media all and (max-width: 500px) {

  .thankyou-main-hed img {
    width: 100%;
    height: auto;
  }

  .thankyou-main-hed p {
    width: 80%;
  }

}

/* Mobile Screen End */

/* Thankyou Page End*/











/* Innerpages Css End*/