:root {
  --primary-color: #010535;
  --secondary-color: #fafafb;
  --text-color: #666666;
  --accent-color: #1956c1;
  --accent-secondary-color: #e2403b;
  --white-color: #ffffff;
  --divider-color: #e6e6eb;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "DM Sans", serif;
  --accent-font: "Poppins", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1em;
  background-color: var(--white-color);
  color: var(--text-color);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--accent-font);
  margin: 0;
  font-weight: 600;
  line-height: 1.2em;
  color: #333333;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row>* {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters>* {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #6da12a 0%, #2083d2 30%);
  background-size: 200% auto;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  border: none;
  padding: 17px 46px 17px 16px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 0;
  border-radius: 4px;
}

.btn-default:hover {
  background-position: right center;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 16px;
  transform: translateY(-50%);
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 24px;
  height: 24px;
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.btn-default.btn-highlighted {
  background: var(--white-color);
}

.btn-default.btn-highlighted span {
  background-image: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
}

.btn-default.btn-highlighted:hover span {
  background-position: right center;
}

.btn-default.btn-highlighted::before {
  right: 18px;
  background-image: url("../images/arrow-gradient.svg");
  width: 14px;
  height: 14px;
}

.cb-cursor:before {
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  display: none;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin: 0;
}

.section-title-content p {
  margin-bottom: 20px;
}

.section-title-content p:last-child {
  margin-bottom: 0;
}

.section-row .section-btn {
  text-align: end;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}

.section-title h3 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-left: 18px;
  margin-bottom: 10px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  background: #237abf;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.section-title h1 {
  font-size: 60px;
  margin-bottom: 0;
  /* cursor: none; */
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 0;
  /* cursor: none; */
  text-transform: capitalize;
}

.section-title h2 span {
  background-image: linear-gradient(to right, #6da12a 0%, #2083d2 30%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  margin-top: 10px;
  margin-bottom: 0;
}

.section-title.dark-section h3,
.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section p {
  color: var(--white-color);
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar {
  background: #0e2e51;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}

.topbar-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.topbar-contact-info ul li a {
  color: var(--white-color);
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover {
  color: #237abf;
}

.topbar-contact-info ul li a i {
  font-size: 16px;
  color: inherit;
  margin-right: 8px;
}

.topbar-social-login {
  display: flex;
  justify-content: end;
}

.topbar-login-btn {
  border-right: 1px solid var(--white-color);
  margin-right: 30px;
  padding-right: 30px;
}

.topbar-login-btn ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar-login-btn ul li {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.topbar-login-btn ul li:hover {
  color: #237abf;
}

.topbar-login-btn ul li:last-child {
  margin: 0;
  padding: 0;
}

.topbar-login-btn ul li::before {
  content: "/";
  position: absolute;
  top: 0;
  right: -16px;
  bottom: 0;
  font-size: 16px;
  color: var(--white-color);
}

.topbar-login-btn ul li:last-child:before {
  display: none;
}

.topbar-login-btn ul li a {
  color: inherit;
}

.topbar-social-links {
  text-align: right;
  align-items: center;
  margin-left: 5px;
}

.topbar-social-links ul {
  list-style: none;
  line-height: 1em;
  padding: 0;
  margin: 0;
}

.topbar-social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child {
  margin: 0;
}

.topbar-social-links ul li a {
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:hover a {
  color: #237abf;
}

.topbar-social-links ul li a i {
  font-size: 16px;
  color: inherit;
}

header.main-header {
  position: relative;
  background-color: var(--white-color);
  z-index: 100;
}

header.main-header .header-sticky {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 998;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background-color: var(--white-color);
  border-bottom: 1px solid var(--divider-color);
}

.navbar {
  padding: 25px 0;
  align-items: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0;
  position: relative;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  padding: 14px 15px !important;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
  margin-top: 1px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: #237abf;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #237abf;
}

.country-dropdown.home:hover {
  color: #237abf;
}

.country-dropdown:hover i {
  color: #237abf;
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 230px;
  border-radius: 0;
  position: absolute;
  left: 0;
  top: 100%;
  /* background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%); */
  background: #fff;
  transition: all 0.3s ease-in-out;
  text-align: left;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.main-menu ul li.submenu:first-child ul {
  width: 230px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: #333;
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 8px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  /* background: url(../images/hero-bg.jpg) no-repeat; */
  background-position: center center;
  background-size: cover;
  padding: 120px 0;
  margin-top: 105px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url(../images/grid-slide.png) repeat rgba(0, 0, 0, 0.69); */

  /* background: linear-gradient(90deg, #6da12a 0%, #105185 51.13%, rgba(226, 64, 59, 0.02) 63.85%); */

  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero.hero-video::before {
  opacity: 70%;
}

.hero.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider-layout {
  background: none;
  padding: 0;
}

.hero.hero-slider-layout .hero-slide {
  position: relative;
  padding: 120px 0;
}

.hero.hero-slider-layout .hero-slide::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 51.13%,
      rgba(226, 64, 59, 0.02) 63.85%);
  opacity: 82%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 50px;
  text-align: left;
  padding-left: calc(((100vw - 1300px) / 2));
  z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .section-title.dark-section h3::before {
  background: var(--white-color);
}

.hero-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-body .video-play-button {
  display: inline-flex;
  align-items: center;
}

.hero-body .video-play-button p {
  font-family: var(--accent-font);
  text-transform: capitalize;
  color: var(--white-color);
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.hero-body .video-play-button:hover p {
  color: var(--primary-color);
}

.hero-body .video-play-button a {
  height: 50px;
  width: 50px;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.hero-body .video-play-button:hover a {
  border-color: var(--primary-color);
}

.hero-body .video-play-button a img {
  width: 100%;
  max-width: 20px;
  margin-left: 2px;
}

.hero-footer {
  display: inline-block;
  border: 1px solid var(--dark-divider-color);
  padding: 25px 30px;
  margin-top: 55px;
}

.hero-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}

.hero-footer ul li {
  color: var(--white-color);
  text-transform: capitalize;
}

.hero-footer ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

/************************************/
/***       05. About Us css       ***/
/************************************/

.about-us {
  padding: 100px 0;
}

.about-us-images {
  position: relative;
  padding: 50px 240px 165px 30px;
  margin-right: 35px;

}

.about-image-1 {
  transform: rotate(-10deg);

}

/* .about-image-1 figure {
  box-shadow: #237abf50 59px 51px 100px, #8cc44050 -28px -23px 100px;
}

.about-image-2 figure {
  box-shadow: #237abf20 45px 75px 100px, #8cc44020 75px 2px 100px;
} */

.about-image-1 figure,
.about-image-2 figure {
  display: block;
  border-radius: 10px;
}

.about-image-1 img,
.about-image-2 img {
  width: 100%;
  aspect-ratio: 1 / 1.162;
  object-fit: cover;
}

.about-image-2 {
  position: absolute;
  bottom: 40px;
  right: 50px;
  transform: rotate(17deg);
  width: 100%;
  max-width: 290px;

}

.about-image-circle {
  position: absolute;
  top: 0;
  right: 30px;
}

.about-image-circle a {
  display: block;
  /* box-shadow: 0px 0px 30px 0px #0000000D; */
  border-radius: 50%;
}

.about-image-circle a img {
  width: 100%;
  max-width: 146px;
  animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-us-body {
  display: flex;
  gap: 30px 50px;
  flex-wrap: wrap;
}

.about-body-item {
  width: calc(50% - 25px);
  display: flex;
  align-items: center;
}

.about-body-item .icon-box {
  margin-right: 10px;
}

.about-body-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.about-body-item-content {
  width: calc(100% - 0px);
}

.about-body-item-content h3 {
  font-size: 15px;
  line-height: 1.5em;
  text-transform: capitalize;
}

.about-us-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}

.about-us-footer-counter {
  width: calc(25% - 20px);
}

.about-us-footer-counter h2 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1em;
  background-image: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-us-footer-content {
  width: calc(40% - 20px);
}

.about-us-footer-content h3 {
  font-size: 18px;
  line-height: 1.5em;
}

.about-us-footer-button {
  width: calc(35% - 20px);
  text-align: end;
}

/************************************/
/***      06. Our Services css    ***/
/************************************/

.our-services {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

.service-item-list {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid var(--dark-divider-color);
}

.service-item {
  position: relative;
  width: 25%;
  border: 1px solid var(--dark-divider-color);
  border-top-width: 0;
  border-left-width: 0;
}

.service-item:nth-of-type(-n + 4) {
  border-top-width: 1px;
}

/* .service-image a,
.service-image a figure {
  position: relative;
  display: block;
  cursor: none;
} */

.service-image a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(360deg,
      rgba(1, 5, 53, 0.8) 0%,
      rgba(1, 5, 53, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.service-image a figure::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
      rgb(17 89 149 / 70%) 30%,
      rgb(98 149 32 / 70%) 70%);
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}


.service-item:hover .service-image a figure::before {
  height: 100%;
  background: linear-gradient(to top,
      rgb(17 89 149 / 70%) 30%,
      rgb(98 149 32 / 70%) 70%);
}

.service-image img {
  width: 100%;
  aspect-ratio: 1 / 1.34;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.service-item.active .service-image img,
.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  position: absolute;
  right: 40px;
  left: 40px;
  bottom: 0px;
  transform: translateY(50px);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}


.service-item:hover .service-content {
  transform: translateY(0);
  bottom: 10px;
}

.service-title img {
  width: 100%;
  max-width: 55px;
  margin-bottom: 25px;
}

.service-title h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
}

.service-title h3 a {
  color: inherit;
}

.service-body {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}


.service-item:hover .service-body {
  opacity: 1;
  visibility: visible;
  margin-top: 15px;
}

.service-body p {
  color: var(--white-color);
  margin-bottom: 0;
}

.contact-us-now-text {
  text-align: center;
  margin-top: 60px;
}

.contact-us-now-text p {
  margin-bottom: 0;
}

.contact-us-now-text p i {
  font-size: 18px;
  color: inherit;
  margin-right: 5px;
}

.contact-us-now-text p a {
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.contact-us-now-text p a:hover {
  color: var(--accent-secondary-color);
}

/************************************/
/***   07. Scrolling Ticker css   ***/
/************************************/

.scrolling-ticker {
  padding: 100px 0 50px;
}

.scrolling-ticker-box {
  --gap: 40px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  align-items: center;
  z-index: 1;
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 80s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.scrolling-ticker-box .scrolling-content span {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  font-family: var(--accent-font);
  font-size: 100px;
  line-height: 1.3em;
  font-weight: 700;
  color: var(--white-color);
  letter-spacing: 0.02em;
  background: -webkit-linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
}

.scrolling-ticker-box .scrolling-content span img {
  width: 45px;
  margin-right: 40px;
}

/************************************/
/***     08. Why Choose Us css    ***/
/************************************/

.why-choose-us {
  padding: 70px 0 70px;
}

.why-choose-list ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

.why-choose-list ul li {
  color: var(--primary-color);
  text-transform: capitalize;
  line-height: normal;
  margin-bottom: 15px;
}

.why-choose-list ul li::marker {
  font-size: 18px;
  color: var(--accent-secondary-color);
}

.why-choose-list ul li:last-child {
  margin-bottom: 0;
}

.why-choose-btn {
  margin-top: 40px;
}

.why-choose-image {
  margin: 0 17px;
}

.why-choose-image figure {
  display: block;
}

.why-choose-image img {
  width: 100%;
  aspect-ratio: 1 / 1.416;
  object-fit: cover;
}

.why-choose-author-info,
.why-choose-author-skillbar {
  margin-bottom: 60px;
}

.why-choose-author-info h3 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 30px;
}

.why-choose-author-info p:last-child {
  margin-bottom: 0;
}

.skills-progress-bar {
  margin-bottom: 30px;
}

.skills-progress-bar:last-child {
  margin-bottom: 0;
}

.skills-progress-bar .skillbar .skill-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title {
  text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no {
  color: var(--primary-color);
  margin-left: 20px;
}

.skills-progress-bar .skillbar .skill-progress {
  width: 100%;
  height: 8px;
  background: var(--divider-color);
  position: relative;
}

.skills-progress-bar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%, #8bc53f 100%);
}

.why-choose-author-box {
  display: flex;
  align-items: center;
}

.why-choose-author-image {
  margin-right: 15px;
}

.why-choose-author-image figure {
  display: block;
  border-radius: 50%;
}

.why-choose-author-image img {
  width: 100%;
  max-width: 70px;
  border-radius: 50%;
}

.why-choose-author-content {
  margin-right: 30px;
}

.why-choose-author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.why-choose-author-content p {
  margin-bottom: 0;
}

.why-choose-author-signature img {
  width: 100%;
  max-width: 56px;
}

/************************************/
/***      09. How We Work css     ***/
/************************************/

.how-we-work {
  background: url(../images/how-we-work-bg-image.png), #083d67;
  background-repeat: repeat-y;
  background-position: left top;
  background-size: auto;
  padding: 100px 0;
}

.work-counter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 100px;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 40px;
  padding-bottom: 30px;
}

.work-counter-list-item {
  width: calc(25% - 75px);
}

.work-counter-item-header {
  display: flex;
  margin-bottom: 10px;
}

.work-counter-item-header .icon-box {
  margin-right: 20px;
}

.work-counter-item-header .icon-box img {
  width: 100%;
  max-width: 50px;
  transition: all 0.4s ease-in-out;
}

.work-counter-list-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.work-counter-item-no h2 {
  font-size: 46px;
  color: var(--white-color);
}

.work-counter-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.work-step-item {
  display: flex;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.work-step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.work-step-item .icon-box {
  margin-right: 20px;
}

.work-step-item .icon-box img {
  max-width: 50px;
  transition: all 0.4s ease-in-out;
}

.work-step-item:hover .icon-box img {
  filter: brightness(0) invert(1);
  transform: rotateY(180deg);
}

.work-step-content {
  width: calc(100% - 70px);
}

.work-step-content h3 {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 10px;
}

.work-step-content h2 {
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 5px;
}

.work-step-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.how-work-image figure {
  display: block;
}

.how-work-image img {
  width: 100%;
  aspect-ratio: 0 / 1.078;
  object-fit: cover;
}

/************************************/
/***   10. Our Achivements css    ***/
/************************************/

.our-achivements {
  padding: 100px 0;
}

.achivement-image {
  margin-right: 20px;
}

.achivement-image figure {
  display: block;
}

.achivement-image img {
  width: 100%;
  aspect-ratio: 1 / 0.884;
  object-fit: cover;
}

.faq-accordion .accordion-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 40px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
  margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  position: absolute;
  right: 5px;
  top: 2px;
  background: url("../images/arrow-gradient.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.accordion-item .accordion-body {
  padding-right: 35px;
}

.accordion-item .accordion-body p {
  margin-bottom: 15px;
}

.accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}

/************************************/
/***       11. Our Team css       ***/
/************************************/

.our-team {
  background: linear-gradient(180deg,
      var(--secondary-color) 70%,
      var(--white-color) 30%);
  padding: 100px 0;
}

.our-company-slider {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.our-company-slider .company-logo {
  text-align: center;
  width: 80%;
}

/* .our-company-slider .company-logo img{
	width: 100%;
	max-height: 36px;
} */

.team-contact-circle {
  text-align: end;
}

.team-contact-circle a {
  display: inline-block;
}

.team-contact-circle a img {
  width: 1000%;
  max-width: 125px;
  animation: infiniterotate 30s infinite linear;
}

.team-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-image a,
.team-image a figure {
  display: block;
  cursor: default;
}

.team-image a img {
  width: 100%;
  aspect-ratio: 1 / 1.205;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image a img {
  transform: scale(1.1);
}

.team-body {
  position: absolute;
  bottom: 25px;
  left: 80px;
  right: 0;
  display: flex;
  align-items: center;
  background: var(--white-color);
  padding: 20px 25px;
  z-index: 1;
}

.team-body::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.team-item:hover .team-body::before {
  height: 100%;
}

.team-content {
  position: relative;
  width: calc(100% - 60px);
  z-index: 1;
}

.team-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

.team-content h3 a {
  color: inherit;
}

.team-content p {
  text-transform: capitalize;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.team-item:hover .team-content h3,
.team-item:hover .team-content p {
  color: var(--white-color);
}

.team-social-list {
  position: relative;
  margin-left: 20px;
  z-index: 1;
}

.team-social-link {
  position: relative;
  z-index: 1;
}

.team-social-link a,
.team-social-icon ul li a {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.team-social-link i,
.team-social-icon ul li a i {
  font-size: 20px;
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.team-social-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(-40px);
}

.team-social-icon ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-social-icon ul li a:hover {
  background: var(--primary-color);
}

.team-social-icon ul li a:hover i {
  color: var(--white-color);
}

.contact-us-now-text.team-footer {
  margin-top: 30px;
}

/************************************/
/***      12. Intro Video css     ***/
/************************************/

.intro-video {
  position: relative;
  padding: 50px 0;
  background: url("../images/intro-video-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.intro-video::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right,
      rgb(5 54 94 / 77%) 25%,
      rgb(94 151 16) 100%);
  width: 100%;
  height: 100%;
}

.intro-video-play-button {
  position: relative;
  text-align: center;
  z-index: 1;
}

.intro-video-play-button a {
  position: relative;
  background: linear-gradient(90deg,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.4s ease-in-out;
}

.intro-video-play-button a:hover {
  background-position: right center;
}

.intro-video-play-button a:before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--divider-color);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}

.intro-video-play-button a:after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--divider-color);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
  animation-delay: 0.3s;
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.intro-video-play-button a i {
  font-size: 34px;
  color: var(--white-color);
  margin-left: 3px;
}

/************************************/
/***      13. Our Pricing css     ***/
/************************************/

.our-pricing {
  padding: 100px 0;
}

.our-pricing-swich {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  padding: 0;
  margin-bottom: 60px;
}

.our-pricing-swich .form-check-label {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
}

.our-pricing-swich.form-switch .form-check-input {
  width: 75px;
  height: 40px;
  --bs-form-check-bg: var(--accent-color);
  --bs-form-switch-bg: url(../images/pricing-swich-circle.svg);
  background-size: 28px auto;
  background-position: left 5px center;
  border-radius: 100px;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.form-switch .form-check-input:checked {
  background-color: var(--accent-secondary-color);
  background-position: right 5px center;
}

.pricing-item {
  background: var(--secondary-color);
  height: calc(100% - 30px);
  padding: 40px;
  margin-bottom: 30px;
}

.pricing-header {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.pricing-header h2 {
  font-size: 46px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.pricing-header ul {
  list-style: disc;
  text-transform: capitalize;
  margin: 0;
  padding-left: 20px;
}

.pricing-header ul li {
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.pricing-header ul li::marker {
  font-size: 18px;
  color: var(--accent-secondary-color);
}

.pricing-header ul li:last-child {
  margin-bottom: 0;
}

.pricing-body {
  margin-bottom: 30px;
}

.pricing-body h2 {
  font-size: 46px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.pricing-body p {
  text-transform: capitalize;
  margin-bottom: 0;
}

.pricing-btn .btn-default {
  display: block;
  text-align: center;
  padding: 17px;
}

.pricing-btn .btn-default::before {
  display: none;
}

.pricing-item.highlighted-box {
  background: linear-gradient(90deg,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 100%);
}

.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-header h3,
.pricing-item.highlighted-box .pricing-header ul li,
.pricing-item.highlighted-box .pricing-header ul li::marker,
.pricing-item.highlighted-box .pricing-body h2,
.pricing-item.highlighted-box .pricing-body p {
  color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-btn .btn-default {
  background: var(--white-color);
  color: var(--primary-color);
}

.pricing-item.highlighted-box .pricing-btn .btn-default:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.pricing-benefit-list {
  margin-top: 30px;
}

.pricing-benefit-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 50px;
}

.pricing-benefit-list ul li {
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.pricing-benefit-list ul li img {
  max-width: 20px;
  margin-right: 15px;
}

/************************************/
/***    14. Our Testimonial css   ***/
/************************************/

.our-testimonial {
  background: url(../images/testimonial-bg-image.png), var(--secondary-color);
  background-repeat: repeat-x;
  background-size: cover;
  padding: 100px 0;
  animation: testimonialbgmove 30s infinite linear;
}

@keyframes testimonialbgmove {
  from {
    background-position: left center;
  }

  to {
    background-position: left 100vw center;
  }
}

.testimonial-title-box {
  position: sticky;
  top: 30px;
}

.testimonial-title-box .section-title {
  margin: 0;
}

.testimonial-content-box {
  margin-left: 95px;
}

.client-content-box {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.client-logo {
  border-right: 1px solid var(--divider-color);
  margin-right: 30px;
  padding-right: 30px;
}

.client-logo img {
  width: 100%;
  max-width: 105px;
}

.client-review-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.satisfy-client-image {
  display: inline-block;
  margin-left: -14px;
  overflow: hidden;
}

.satisfy-client-image:first-child {
  margin: 0;
}

.satisfy-client-image figure {
  display: block;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
}

.satisfy-client-image img {
  width: 100%;
  max-width: 40px;
  border-radius: 50%;
}

.client-review-content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.client-review-content h3 i {
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-review-content p {
  margin-bottom: 0;
}

/* .testimonial-slider .swiper-wrapper {
  cursor: none;
} */

.testimonial-company-logo {
  margin-bottom: 30px;
}

.testimonial-company-logo img {
  width: 100%;
  max-width: 90px;
  border-radius: 4px;
}

.testimonial-content {
  margin-bottom: 40px;
}

.testimonial-content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0;
}

.testimonial-body {
  display: flex;
  align-items: center;
  padding-right: 50px;
}

.author-image {
  margin-right: 15px;
}

.author-image figure {
  display: block;
  border-radius: 50%;
}

.author-image img {
  max-width: 70px;
  border-radius: 50%;
}

.author-content {
  width: calc(100% - 85px);
}

.author-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.author-content p {
  text-transform: capitalize;
  margin: 0;
}

.testimonial-pagination {
  position: absolute;
  bottom: 25px;
  right: 0;
  top: auto;
  left: auto;
  width: auto;
  font-size: 22px;
  z-index: 1;
}

.testimonial-pagination span {
  font-size: 20px;
  font-weight: 600;
}

.swiper-pagination-current {
  color: var(--primary-color);
}

.our-facility {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--divider-color);
  margin-top: 60px;
  padding-top: 60px;
}

.facility-item {
  width: calc(16.66% - 33.33px);
}

.facility-item .icon-box {
  margin-bottom: 30px;
}

.facility-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.facility-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
}

/************************************/
/***       15. Our Blog css       ***/
/************************************/

.our-blog {
  padding: 100px 0 70px;
}

.blog-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

/* .post-featured-image {
  margin-bottom: 20px;
} */

.post-featured-image a {
  cursor: none;
  display: block;
  overflow: hidden;
}

.post-featured-image a figure {
  display: block;
}

.post-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.77;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.blog-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-item-content {
  margin-bottom: 25px;
}

.post-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 10px;
}

.post-item-content h3 a {
  color: inherit;
}

.post-item-content p {
  margin: 0;
}

/************************************/
/***        16. Footer css	      ***/
/************************************/

.main-footer {
  background: url(../images/footer-bg-image.png), #083d67;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto;
  padding: 60px 0 0;
}

.about-footer {
  width: 100%;
  max-width: 475px;
}

.about-footer p {
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 60px;
  line-height: 30px;
}

.about-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-footer ul li {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}

.about-footer ul li:last-child {
  margin: 0;
}

.about-footer ul li a {
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.about-footer ul li:hover a {
  color: #237abf;
}

.about-footer ul li a i {
  font-size: 20px;
  color: inherit;
}

.footer-links h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 30px;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  text-transform: capitalize;
  color: var(--white-color);
  line-height: normal;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a {
  color: #2d99ef !important;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: inherit;
}

.footer-links ul li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  /* change color if needed */
  display: inline-block;
  padding: 5px 0;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  /* underline thickness */
  background-color: #237abf;
  /* underline color */
  transition: width 0.3s ease;
  /* smooth left-to-right animation */
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-privacy-policy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 60px;
  padding-top: 20px;
}

.footer-logo img {
  width: 100%;
  max-width: 200px;
}

.privacy-policy-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.privacy-policy-list ul li {
  display: inline-block;
  text-transform: capitalize;
  line-height: normal;
  color: var(--white-color);
  border-right: 1px solid var(--dark-divider-color);
  padding-right: 30px;
  margin-right: 30px;
  transition: all 0.3s ease-in-out;
}

.privacy-policy-list ul li:hover {
  color: #237abf;
}

.privacy-policy-list ul li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.privacy-policy-list ul li a {
  color: inherit;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 20px;
  padding: 25px 0;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-go-to-top-btn a {
  text-transform: capitalize;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.footer-go-to-top-btn a:hover {
  color: #237abf;
}

.footer-go-to-top-btn a i {
  margin-left: 10px;
  font-size: 20px;
  color: inherit;
  animation: gotoparrowmove 1s infinite linear alternate;
}

@keyframes gotoparrowmove {
  0% {
    transform: translateY(3px);
  }

  100% {
    transform: translateY(-3px);
  }
}

/************************************/
/***     17. About Us Page css	  ***/
/************************************/

.page-header {
  position: relative;
  background: url("../images/page-header-bg.jpg") no-repeat center center !important;
  background-size: cover;
  padding: 150px 0;
  margin-top: 105px;
}

.page-header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: linear-gradient(90deg,
      #58851e 21%,
      #0e4978ad 52.13%,
      rgba(226, 64, 59, 0.02) 101.85%) !important; */
  opacity: 82%;
  width: 100% !important;
  height: 100%;
  z-index: 0;
}

.page-header-box {
  position: relative;
  z-index: 1;
}

.page-header-box h1 {
  display: inline-block;
  color: var(--white-color);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 15px;
  /* cursor: none; */
}

.page-header-box ol {
  margin: 0;
  padding: 0;
}

.page-header-box ol li.breadcrumb-item {
  font-weight: 500;
  text-transform: capitalize;
  line-height: normal;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
  color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
  content: "\f111";
  font-family: "FontAwesome";
  font-size: 6px;
  color: var(--white-color);
  margin-top: 8px;
}

.our-approach {
  background-color: var(--secondary-color);
  padding: 100px 0;
}

.our-approach-image {
  position: relative;
  margin-left: 40px;
  padding-left: 170px;
}

.our-approach-image-1 figure,
.our-approach-image-2 figure {
  display: block;
}

.our-approach-image-1 figure {
  height: 100%;
  max-height: 400px;
}

.our-approach-image-2 figure {
  height: 100%;
  max-height: 300px;
}

.our-approach-image-1 img {
  width: 100%;
  aspect-ratio: 0 / 1.581;
  object-fit: cover;
}

.our-approach-image-2 {
  max-width: 305px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.our-approach-image-2 figure img {
  width: 100%;
  aspect-ratio: 0 / 1.42;
  object-fit: cover;
  border: 10px solid var(--white-color);
}

.our-approach-circle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.our-approach-circle img {
  width: 100%;
  max-width: 146px;
  animation: infiniterotate 25s infinite linear;
}

.what-we-do {
  padding: 100px 0;
}

.what-we-do-image {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-right: 20px;
}

.what-we-do-img-1,
.what-we-do-img-2 {
  width: calc(50% - 15px);
}

.what-we-do-img-1 figure,
.what-we-do-img-2 figure,
.what-we-do-img-3 figure {
  display: block;
}

.what-we-do-img-1 img,
.what-we-do-img-2 img {
  width: 100%;
  aspect-ratio: 1 / 0.853;
  object-fit: cover;
}

.what-we-do-image-box {
  width: 100%;
  position: relative;
  text-align: right;
  padding-left: 60px;
}

.what-we-do-img-3 img {
  width: 100%;
  aspect-ratio: 1 / 0.46;
  object-fit: cover;
}

.what-we-do-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.what-we-do-circle img {
  width: 100%;
  max-width: 122px;
  animation: infiniterotate 25s infinite linear;
}

.what-we-do-body {
  /* border-bottom: 1px solid var(--divider-color); */
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.what-we-do-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.what-we-do-body ul li {
  position: relative;
  width: calc(50% - 10px);
  color: var(--primary-color);
  text-transform: capitalize;
  line-height: normal;
  padding-left: 30px;
}

.what-we-do-body ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #237abf;
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.what-we-list {
  display: flex;
  gap: 30px 50px;
  flex-wrap: wrap;
}

.what-we-item {
  width: calc(50% - 25px);
  display: flex;
  align-items: center;
}

.what-we-item .icon-box {
  margin-right: 20px;
}

.what-we-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.what-we-item-content {
  width: calc(100% - 70px);
}

.what-we-item-content h3 {
  font-size: 16px;
  line-height: 1.5em;
  text-transform: capitalize;
}

.our-benefit {
  padding: 100px 0;
}

.our-benefit-content {
  position: sticky;
  top: 30px;
}

.our-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}

.benefit-item {
  width: calc(50% - 15px);
}

.benefit-item .icon-box {
  margin-bottom: 20px;
}

.benefit-item .icon-box img {
  max-height: 36px;
  width: auto;
}

.benefit-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 15px;
  line-height: 28px;
}

.benefit-item-content p {
  margin: 0;
}

.benefit-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
  margin-top: 60px;
}

.benefit-footer .benefit-footer-content {
  background-color: var(--secondary-color);
  padding: 12px 20px;
}

.benefit-footer-content p {
  text-transform: capitalize;
  margin: 0;
}

.our-opportunities {
  position: relative;
  background: url("../images/our-opportunities-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 60px;
  padding: 0px 0 0;
  /* height: 637px; */
}

.our-opportunities:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 90%;
  z-index: 0;
}

.our-opportunities-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
  gap: 30px 60px;
  margin-bottom: -60px;
  z-index: 1;
}

.opportunities-image figure {
  display: block;
}

.opportunities-image img {
  width: 100%;
  aspect-ratio: 1 / 1.048;
  object-fit: cover;
}

.opportunities-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
}

.opportunities-content .section-title {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.opportunities-body {
  margin-bottom: 70px;
}

.opportunities-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.opportunities-body ul li {
  position: relative;
  width: calc(50% - 10px);
  color: var(--white-color);
  text-transform: capitalize;
  line-height: 26px;
  padding-left: 13px;
  font-size: 15px;
}

.opportunities-body ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.opportunities-cta-box {
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.opportunities-image-video {
  position: relative;
  width: 40%;
}

.opportunities-video-image figure,
.opportunities-video-image a {
  display: block;
  overflow: hidden;
  cursor: none;
}

.opportunities-video-image img {
  width: 100%;
  aspect-ratio: 1 / 0.567;
  object-fit: cover;
}

.opportunities-cta-box .intro-video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.opportunities-cta-box .intro-video-play-button a {
  width: 50px;
  height: 50px;
}

.opportunities-cta-box .intro-video-play-button a::after,
.opportunities-cta-box .intro-video-play-button a::before {
  top: -50%;
  left: -50%;
}

.opportunities-cta-box .intro-video-play-button a i {
  font-size: 16px;
}

.opportunities-video-content {
  width: 60%;
  padding: 20px 60px;
}

.opportunities-video-content p {
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 15px;
}

.video-contact {
  display: flex;
  align-items: center;
}

.video-contact .icon-box {
  margin-right: 10px;
}

.video-contact .icon-box img {
  width: 100%;
  max-width: 22px;
}

.video-contact-content h3 {
  color: var(--white-color);
  font-size: 20px;
}

.video-contact-content h3 a {
  color: inherit;
}

.our-team.about-page-team {
  background: var(--white-color);
}

.our-faqs {
  padding: 50px 0;
}

.faqs-image {
  position: relative;
}

.faq-img figure {
  display: block;
}

.faq-img img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
}

.company-experience {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  padding: 20px 30px 20px 20px;
  z-index: 1;
}

.company-experience h3 {
  color: var(--white-color);
  font-size: 46px;
  margin-bottom: 5px;
}

.company-experience p {
  color: var(--white-color);
  text-transform: capitalize;
  margin: 0;
}

.faqs-content {
  margin-left: 30px;
}

/************************************/
/***     18. Page Services css	  ***/
/************************************/

.page-services {
  padding: 100px 0;
}

.page-services .service-item-list {
  gap: 30px;
}

.page-services .service-item-list .service-item {
  width: calc(25% - 22.5px);
  border: none;
}

/************************************/
/***    19. Services Single css	  ***/
/************************************/

.page-service-single {
  padding: 100px 0;
}

.service-sidebar {
  position: sticky;
  margin-right: 20px;
  top: 20px;
}

.service-catagery-list {
  margin-bottom: 60px;
}

.service-catagery-list h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  padding: 25px 30px;
}

.service-catagery-list ul {
  background-color: var(--secondary-color);
  list-style: none;
  margin: 0;
  padding: 30px;
}

.service-catagery-list ul li {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.service-catagery-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: var(--text-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
  color: var(--primary-color);
}

.service-catagery-list ul li a::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  background: url(../images/arrow-text.svg) no-repeat;
  background-position: right center;
  background-size: cover;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
  transform: rotate(45deg);
  filter: brightness(0) invert(0);
}

.sidebar-cta-box {
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  padding: 40px;
}

.sidebar-cta-logo,
.sidebar-cta-content,
.sidebar-cta-content h3 {
  margin-bottom: 35px;
}

.sidebar-cta-logo img {
  width: 100%;
  max-width: 275px;
}

.sidebar-cta-content h3 {
  font-size: 22px;
  color: var(--white-color);
}

.sidebar-cta-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-cta-content ul li {
  margin-bottom: 20px;
}

.sidebar-cta-content ul li:last-child {
  margin-bottom: 0;
}

.sidebar-cta-content ul li a {
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.sidebar-cta-content ul li a:hover {
  color: var(--primary-color);
}

.sidebar-cta-content ul li a i {
  font-size: 18px;
  color: inherit;
  margin-right: 10px;
}

.service-feature-image {
  margin-bottom: 40px;
}

.service-feature-image figure {
  display: block;
}

.service-feature-image img {
  width: 100%;
  aspect-ratio: 1 / 0.598;
  object-fit: cover;
}

.service-entry {
  margin-bottom: 60px;
}

.service-entry h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.service-entry ul li {
  position: relative;
  width: calc(50% - 10px);
  color: var(--primary-color);
  text-transform: capitalize;
  line-height: normal;
  padding-left: 20px;
}

.service-entry ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.benefit-service-box,
.service-why-choose-box,
.service-entry-process {
  margin-top: 60px;
}

.benefit-services-list {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.benefit-services-list .benefit-item {
  width: calc(25% - 18.75px);
  text-align: center;
}

.service-entry-image-counter {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.service-entry-counter-box {
  position: relative;
  width: calc(50% - 15px);
  padding: 50px 70px 50px 40px;
  overflow: hidden;
}

.service-entry-immage {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.service-entry-immage figure {
  display: block;
  height: 100%;
}

.service-entry-immage figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, rgba(1, 5, 53, 0) -11.22%, #010535 100%);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.service-entry-immage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.service-entry-counter-box:hover .service-entry-immage img {
  transform: scale(1.05);
}

.service-entry-counter {
  position: relative;
  z-index: 2;
}

.service-entry-counter h2 {
  color: var(--white-color);
  line-height: 1em;
}

.service-entry-counter h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
}

.service-entry-video {
  position: relative;
  margin-top: 40px;
}

.service-entry-video-image {
  overflow: hidden;
}

.service-entry-video-image figure {
  display: block;
}

.service-entry-video-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 20%;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.service-entry-video-image img {
  width: 100%;
  aspect-ratio: 1 / 0.359;
  object-fit: cover;
}

.service-entry-video .intro-video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-entry-process-steps {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-process-step-item {
  width: calc(33.33% - 20px);
}

.service-process-step-no {
  display: inline-block;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  margin-bottom: 30px;
  padding: 10px;
}

.service-process-step-no h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
}

.service-process-step-body {
  display: flex;
  align-items: center;
}

.service-process-step-body {
  margin-bottom: 30px;
}

.service-process-step-body .icon-box {
  margin-right: 20px;
}

.service-process-step-body .icon-box img {
  max-width: 50px;
}

.service-process-step-title {
  width: calc(100% - 70px);
}

.service-process-step-title h3 {
  font-size: 20px;
  text-transform: capitalize;
}

.service-entry-process .contact-us-now-text {
  text-align: start;
  margin-top: 40px;
}

/************************************/
/***     20. Blog Archive css     ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 0px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/************************************/
/***      21. Blog Single css	  ***/
/************************************/

.page-single-post {
  padding: 100px 0;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 0.455em;
}

.post-entry h1 {
  font-size: 60px;
}

.post-entry h2 {
  font-size: 46px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 18px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ol li {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6em;
  color: var(--text-color);
  position: relative;
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: url("../images/icon-blockquote.svg"), var(--primary-color);
  background-repeat: no-repeat;
  background-position: 35px 25px;
  background-size: 55px;
  padding: 30px 30px 30px 100px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-family: var(--accent-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--white-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-family: var(--accent-font);
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1em;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  color: var(--white-color);
  border-radius: 0px;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background-position: right center;
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  color: var(--white-color);
  border-radius: 0px;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background-position: right center;
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/***     22. Projects Page css	  ***/
/************************************/

.page-projects {
  padding: 100px 0 70px;
}

.project-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.project-img figure,
.project-img a {
  display: block;
  /* cursor: none; */
  border-radius: 8px;
}

.project-img figure:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(360deg,
      rgba(1, 5, 53, 0.8) 0%,
      rgba(1, 5, 53, 0) 50%);
  z-index: 1;
  border-radius: 8px;
}

.project-img {
  border: 1px solid #d2d2d2;
  border-radius: 8px;
}

.project-img img {
  width: 100%;
  aspect-ratio: 0 / 0.97;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
}

.project-item:hover .project-img img {
  transform: scale(1.1);
}

.project-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}

.project-content p {
  display: inline-block;
  color: var(--white-color);
  /* text-transform: capitalize; */
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  padding: 5px 10px;
  margin-bottom: 20px;
}

.project-content p a {
  color: inherit;
}

.project-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
}

.project-content h3 a {
  color: inherit;
}

/************************************/
/***    23. Projects Single css   ***/
/************************************/

.page-project-single {
  padding: 50px 0 0px;
}

.project-sidebar {
  position: sticky;
  margin-right: 20px;
  top: 30px;
}

.project-catagery-list {
  margin-bottom: 60px;
}

.project-catagery-list h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  padding: 25px 30px;
}

.project-catagery-list ul {
  background: var(--secondary-color);
  margin: 0;
  padding: 30px;
  list-style: none;
}

.project-catagery-list ul li {
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.project-catagery-list ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.project-catagery-list ul li span {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  width: auto;
  display: inline-flex;
  gap: 15px;
}

.project-catagery-list ul li span a {
  background: linear-gradient(90deg,
      var(--accent-color) 0,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: all 0.4s ease-in-out;
}

.project-catagery-list ul li span a i {
  color: var(--white-color);
  font-size: 14px;
}

.project-catagery-list ul li span a:hover {
  background-position: right center;
}

.project-single-slider {
  margin-bottom: 60px;
}

.project-single-slider .swiper-slide figure {
  display: block;
}

.project-single-slider .swiper-slide figure::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg,
      rgba(1, 5, 53, 0) 80.06%,
      var(--primary-color) 100%);
  width: 100%;
  height: 100%;
}

.project-single-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 1 / 0.598;
  object-fit: cover;
}

.project-single-slider .project-pagination {
  position: absolute;
  bottom: 20px;
  text-align: center;
  z-index: 1;
}

.project-single-slider .project-pagination .swiper-pagination-bullet {
  position: relative;
  height: 12px;
  width: 12px;
  background: var(--white-color);
  opacity: 1;
  margin: 0 8px;
}

.project-single-slider .project-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--white-color);
  height: 0;
  width: 0;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.project-single-slider .project-pagination .swiper-pagination-bullet-active:before {
  height: 24px;
  width: 24px;
}

.project-entry {
  margin-bottom: 60px;
}

.project-entry h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.project-entry p {
  margin-bottom: 20px;
}

.project-entry p:last-child {
  margin-bottom: 0;
}

.project-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.project-entry ul li {
  position: relative;
  color: var(--primary-color);
  text-transform: capitalize;
  line-height: normal;
  padding-left: 20px;
  margin-bottom: 20px;
}

.project-entry ul li:last-child {
  margin-bottom: 0;
}

.project-entry ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.project-challenge-box {
  margin-top: 60px;
}

.project-challenge-item:nth-child(even) {
  flex-direction: row-reverse;
}

.project-challenge-item-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.project-challenge-item {
  display: flex;
  gap: 30px;
  align-items: center;
}

.project-challenge-image,
.project-challenge-content {
  width: calc(50% - 15px);
}

.project-challenge-image figure {
  display: block;
}

.project-challenge-image img {
  width: 100%;
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
}

.project-challenge-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team {
  padding: 100px 0 70px;
}

/************************************/
/***     25. Team Single css      ***/
/************************************/

.page-team-single {
  padding: 100px 0;
}

.team-member-info-box,
.team-member-about {
  margin-bottom: 100px;
}

.team-member-info-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.team-member-image,
.team-member-content {
  width: calc(50% - 20px);
}

.team-member-image figure {
  display: block;
}

.team-member-image img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  object-position: top center;
}

.member-content-body {
  background: var(--secondary-color);
  padding: 40px;
}

.member-content-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-content-body ul li {
  position: relative;
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-left: 15px;
}

.member-content-body ul li:last-child {
  margin-bottom: 0;
}

.member-content-body ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.member-content-body ul li span {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  width: 60%;
  display: inline-flex;
  gap: 15px;
}

.member-social-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.member-social-list span {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.member-social-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-social-list ul li {
  display: inline-block;
  margin-right: 15px;
}

.member-social-list ul li a {
  background: linear-gradient(90deg,
      var(--accent-color) 0,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover {
  background-position: right center;
}

.member-social-list ul li a i {
  color: var(--white-color);
  font-size: 20px;
}

.team-member-about-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.team-member-about-list ul li {
  position: relative;
  width: calc(33.33% - 20px);
  color: var(--primary-color);
  text-transform: capitalize;
  line-height: normal;
  padding-left: 20px;
}

.team-member-about-list ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.team-member-experience {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.team-experience-box,
.team-contact-form {
  width: calc(50% - 20px);
}

.team-experience-box .member-content-body ul li span {
  width: 80%;
}

.team-experience-skills {
  margin-top: 40px;
}

.team-contact-form {
  background-color: var(--secondary-color);
  padding: 40px;
}

/************************************/
/***     26. Image Gallery css    ***/
/************************************/

.page-gallery {
  padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
}

/************************************/
/***     27. Video Gallery css    ***/
/************************************/

.page-video-gallery {
  padding: 100px 0 70px;
}

.video-gallery-image {
  overflow: hidden;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 50%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-secondary-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  width: 100%;
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
}

/************************************/
/***     28. Pricing Page css     ***/
/************************************/

.page-pricing {
  padding: 100px 0;
}

/************************************/
/***       29. FAQs Page css      ***/
/************************************/

.page-faqs {
  padding: 100px 0;
}

.faq-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 20px;
}

.faq-catagery-list {
  background-color: var(--secondary-color);
  padding: 30px;
  margin-bottom: 30px;
}

.faq-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-catagery-list ul li {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.faq-catagery-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: var(--text-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
  color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  background: url("../images/arrow-text.svg") no-repeat;
  background-position: right center;
  background-size: cover;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
  transform: rotate(45deg);
  filter: brightness(0) invert(0);
}

.page-faqs-accordion {
  margin-bottom: 60px;
}

.page-faqs-accordion:last-child {
  margin-bottom: 0px;
}

/************************************/
/***    30. Contact Us Page css   ***/
/************************************/

.page-contact-us {
  padding: 100px 0 50px;
}

.contact-us-box {

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}

.contact-us-form {
  width: 48%;
  margin-left: 4%;

}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background: var(--white-color);
  border: none;
  border-radius: 0px;
  padding: 18px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--text-color);
}

.contact-form .btn-default {
  width: 100%;
  padding: 17px;
}

.contact-form .btn-default::before {
  display: none;
}

.contact-us-image {
  width: 46%;
  height: 100%;
}

.contact-us-image figure {
  display: block;
  height: 100%;
}

/* .contact-us-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.33;
  object-fit: cover;
} */

.contact-info {
  padding: 50px 0 70px;
}

.contact-info-item {
  position: relative;
  background-color: var(--secondary-color);
  height: calc(100% - 30px);
  padding: 50px;
  margin-bottom: 30px;
}

.contact-info-item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover:after {
  top: auto;
  height: 100%;
}

.contact-info-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item .icon-box:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--white-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box:after {
  top: auto;
  height: 100%;
}

.contact-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.contact-info-content {
  position: relative;
  z-index: 1;
}

.contact-info-content h2 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.contact-info-content p {
  margin-bottom: 35px;
  transition: all 0.4s ease-in-out;
}

.contact-info-content h3 {
  font-size: 16px;
  font-weight: 500;
  background-image: linear-gradient(to right, #8bc53f 0%, #2083d2 30%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
}

.contact-info-content h3 a {
  color: inherit;
  text-decoration: underline;
}

.contact-info-item:hover .contact-info-content h2 {
  color: var(--white-color);
}

.contact-info-item:hover .contact-info-content p {
  color: var(--white-color);
  opacity: 80%;
}

.contact-info-item:hover .contact-info-content h3 {
  -webkit-text-fill-color: var(--white-color);
}

.google-map .container-fluid {
  padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
  height: 600px;
  width: 100%;
}

/************************************/
/***    31. 404 Error Page css    ***/
/************************************/

.error-page {
  padding: 100px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 40px;
}

.error-page-image img {
  width: 100%;
  max-width: 50%;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

.error-page-content-body p {
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* 14-oct-2025 */
.logo-top-header {
  width: 80%;
}

.intro-video .section-title h2 {
  font-size: 36px !important;
}

/* .case-study-round {
  background: #fff;
  height: calc(100% - 30px);
  padding: 25px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: background 0.3s ease;
}

.case-study-round:hover {
  background: linear-gradient(90deg, #6da12a 0%, #105185 51.13%);
  transition: all ease 0.3s;
} */

.case-study-round {
  background: #fff;
  height: calc(100% - 30px);
  padding: 25px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: background 0.9s ease;
  background-size: 200% 100%;
  background-position: left center;


  background-repeat: no-repeat;
  background-clip: padding-box;
  background-origin: border-box;
  background-blend-mode: normal;
  background-position: left center;
  background-size: 0% 100%;
}

.case-study-round:hover {
  background-size: 200% 100%;
  animation: gradientMove 3s ease-in-out forwards;
  /* background: #9e9e9e36; */
  background-image: linear-gradient(90deg, #6da12a2a 0%, #10508532 51.13%);

}

@keyframes gradientMove {
  0% {
    background-position: left center;
  }

  100% {
    background-position: right center;
  }
}

.case-study-round:hover h3 {
  color: #237abf;
}

.case-study-round:hover p {
  color: #333333;
}

.case-study-round:hover .color-blue {
  color: #fff;
}

.case-study-round p {
  line-height: 1.3em;
}

.color-blue {
  color: #237abf;
  border: unset;
  background: unset;
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
  padding: 0px;
  position: relative;
}

/* .color-blue img {
    color: #237abf;
    border: 2px solid #8bc53f;
    background: unset;
    font-size: 16px;
    font-weight: 500;
    border-radius: 103px;
    width: 30px;
    height: 30px;
} */
.color-blue::before {
  content: "";
  position: absolute;
  top: 55%;
  bottom: 0;
  right: 0px;
  background-image: url(../images/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 20px;
  height: 20px;
  transition: all 0.4s ease-in-out;
  transform: translateY(-50%) rotate(0deg);
}

.case-study-round img {
  border-radius: 4px;
}

.color-blue:hover::before {
  transform: translateY(-50%) rotate(45deg);
  filter: brightness(0) invert(1);
}

.case-study-round:hover .color-blue::before {
  transform: translateY(-50%) rotate(45deg);
  filter: brightness(0) invert(1);
}

.about-footer img {
  width: 10%;
}

.about-footer p a {
  color: #fff !important;
}

/* header css */
.navbar {
  align-items: self-start;
  width: 100%;
  padding: 0rem 10px;
  line-height: 40px;
}

.navbar {
  transition: 0.6s ease !important;
}

.logocol {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-brand {
  width: 135px;
  padding-top: 10px;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.header-sticky {
  background-color: #fff;
  color: white;
  transition: position 0.3s ease, top 0.3s ease;
  width: 100%;
}

.sticky {
  position: fixed !important;
  top: 50px;
  width: 100%;
  z-index: 998;
}

.leftDiv {
  width: 45%;
  height: 70px;
  position: absolute;
}

.navbar-expand-xl .navbar-nav {
  padding-top: 0px;
}

.nav-item {
  padding: 0px;
  display: inline-block;
  margin: 0px !important;
  /* min-width: 120px; */
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
  transition: 0.5s ease;
  padding: 6px 40px 6px 40px;
  position: relative;
  text-align: center;
  font-weight: 600;
}

.dropdown-hover-content {
  display: none;
  position: absolute;
  background-color: #fff;
  left: 0px;
  right: 0px;
  /* padding: 0px 12px; */
  z-index: 4;
  width: 100%;
  /* border-bottom: 1px solid #ddd; */
  transition: 0.5s ease;
}

.dropdown-hover:hover .dropdown-hover-content {
  display: block;
  /* border-top: 1px solid #ddd; */
  transition: 1s ease-in-out;
  padding-top: 10px;
}

.navBox_Shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.dropdown-hover-content .row {
  width: 100%;
  margin: 0px !important;
}

.customMenuRow {
  display: flex;
  /* width: 81%; */
}

.tabDivMenu {
  float: left;
  overflow: hidden;
  width: 37%;
}

.tabDivMenu button {
  display: flex;
  background-color: inherit;
  padding: 19px 0px 22px 28px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 600;
  color: #414141;
  align-items: center;
}

.mMenuIconBtn {
  margin-right: 15px;
}

.tabDivMenu button.active {
  background-color: #2194fa;
  color: #fff;
  border-right: 8px solid #8cc440;
}

.applybtn.brochure {
  margin-top: 0px;
  padding: 0 0px;
  background-color: #fff !important;
  border: 1px solid #2083d2;
}

button.applybtn {
  border-radius: 0px;
  font-family: Inter Medium;
  color: #fff;
  font-weight: 500;
  background-color: #8bc53f !important;
  font-size: 0.9em;
  padding: 1% 0px;
  min-width: 130px;
  height: 43px;
  transition: all 50ms;
  cursor: pointer;
  margin: 0 5px;
  border: 0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.applybtn.brochure a {
  color: #fff;
}

.applybtn.brochure img {
  width: 80px;
  margin-right: 4px;
}

a.web_icon {
  margin-top: 0px;
}

button.applybtn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-weight: 600;
}

button.applybtn span:after {
  content: "\f105";
  font: normal normal normal 14px / 1 FontAwesome;
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  font-size: 1.8em;
  line-height: 0.7;
}

.country-dropdown.home {
  display: inline-flex;
  align-items: center;
  padding: 0px 0 0 10px;
  cursor: pointer;
  /* margin-right: 12px; */
  font-weight: 600;
  color: #000;
}

.country-dropdown .country-ico {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  margin-right: -5px;
}

.navbar-light .navbar-nav .nav-link {
  color: #222;
}

.Logo-1 {
  object-fit: contain;
  /* margin-top: -80px; */
  margin-left: 0%;
}

.Logo-stycky {
  display: none;
}

.bs-canvas-right {
  right: 0;
  /* margin-right: -330px; */
  background-color: #fff;
}

.bs-canvas {
  top: 0;
  z-index: 1110;
  overflow-x: hidden;
  overflow-y: auto;
  width: 330px;
  transition: margin 0.4s ease-out;
  -webkit-transition: margin 0.4s ease-out;
  -moz-transition: margin 0.4s ease-out;
  -ms-transition: margin 0.4s ease-out;
}

#navbarNav {
  justify-content: end;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

a.mobile_icon {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 7px 19px;
  text-align: center;
  display: none;
  color: #fff;
  font-size: 1.7em;
}

button.btn.applybtn:hover {
  color: #fff;
}

.btn-pulse {
  background-color: #3498db;
  color: white;
  animation: pulse 1.5s infinite;
}

button.applybtn:hover span:after {
  opacity: 1;
  right: 5px;
  top: 6px;
}

button.applybtn span:after {
  content: "\f105";
  font: normal normal normal 14px / 1 FontAwesome;
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  font-size: 1.1em;
  line-height: 0.7;
}

button.applybtn:hover span {
  padding-right: 25px;
}

.container-top.home-page .country-dropdown a {
  color: #222;
}

.country-dropdown i {
  font-weight: 600;
  padding-left: 0px;
  font-size: 20px !important;
  padding-top: 0px;
  color: #000;
  margin-left: -5px;
}

.customMenuRow .content {
  width: 63%;
}

.tabContentDiv {
  float: left;
  padding: 18px 18px 0px;
  border-left: none;
  border-left: 1px solid #ddd;
  height: 100%;
  width: 100%;
}

/* Tabs Navigation Styles */
.tabs-navigation {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.tabs-navigation .tablinks {
  background: transparent;
  border: none;
  padding: 15px 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-family: var(--accent-font);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.tabs-navigation .tablinks:hover {
  color: var(--white-color);
}

.tabs-navigation .tablinks.active {
  color: var(--white-color);
  border-bottom-color: var(--white-color);
}

.tab-content-wrapper {
  padding: 20px 0 0;
}

.tabs-section .container {
  padding-left: 15px;
  padding-right: 15px;
}

.tab-content-wrapper h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--white-color);
}

.tab-content-wrapper p {
  font-size: 16px;
  line-height: 1.6em;
  color: var(--white-color);
  margin-bottom: 40px;
}

.tab-image-wrapper {
  width: 100%;
  height: 100%;
  display: none;
}

.tab-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.tab-list-wrapper {
  padding-left: 0;
}

.tab-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-feature-item {
  display: flex;
  align-items: flex-start;
  background: var(--white-color);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5em;
  color: #333333;
  transition: all 0.3s ease;
  min-height: auto;
}

.tab-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #8cc852;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.tab-feature-icon svg {
  width: 18px;
  height: 18px;
}

.tab-feature-icon svg path {
  stroke: var(--white-color);
}

.tab-feature-item span {
  flex: 1;
  padding-top: 1px;
}

/* CUGL Specific Tiles Layout - Only affects cugl.html */
.cugl-tiles-container .cugl-tiles-grid,
.cugl-tiles-wrapper .cugl-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cugl-tiles-container .cugl-tile-box,
.cugl-tiles-wrapper .cugl-tile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5em;
  color: #333333;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cugl-tiles-container .cugl-tile-box::before,
.cugl-tiles-wrapper .cugl-tile-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(140, 200, 82, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.cugl-tiles-container .cugl-tile-box:hover::before,
.cugl-tiles-wrapper .cugl-tile-item:hover::before {
  left: 100%;
}

.cugl-tiles-container .cugl-tile-box:hover,
.cugl-tiles-wrapper .cugl-tile-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(243, 248, 243, 0.884);
}

.cugl-tiles-container .cugl-tile-icon-circle,
.cugl-tiles-wrapper .cugl-tile-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #2083d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(32, 131, 210, 0.3);
}

.cugl-tiles-container .cugl-tile-box:hover .cugl-tile-icon-circle,
.cugl-tiles-container .cugl-tile-box:hover .cugl-tile-icon-circle,
.cugl-tiles-wrapper .cugl-tile-item:hover .cugl-tile-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(32, 131, 210, 0.5);
  background: #1a6ba8;
}

.cugl-tiles-container .cugl-tile-icon-circle svg,
.cugl-tiles-wrapper .cugl-tile-icon svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.cugl-tiles-container .cugl-tile-box:hover .cugl-tile-icon-circle svg,
.cugl-tiles-wrapper .cugl-tile-item:hover .cugl-tile-icon svg {
  transform: scale(1.1);
}

.cugl-tiles-container .cugl-tile-icon-circle svg path,
.cugl-tiles-wrapper .cugl-tile-icon svg path {
  stroke: var(--white-color);
  transition: all 0.3s ease;
}

.cugl-tiles-container .cugl-tile-text,
.cugl-tiles-wrapper .cugl-tile-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cugl-tiles-container .cugl-tile-text span,
.cugl-tiles-wrapper .cugl-tile-content span {
  display: block;
  padding-top: 0;
  transition: color 0.3s ease;
}

.cugl-tiles-container .cugl-tile-box:hover .cugl-tile-text span,
.cugl-tiles-wrapper .cugl-tile-item:hover .cugl-tile-content span {
  color: #333333;
}

/* Responsive Styles for CUGL Tiles */
@media (max-width: 991px) {

  .cugl-tiles-container .cugl-tiles-grid,
  .cugl-tiles-wrapper .cugl-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cugl-tiles-container .cugl-tile-box,
  .cugl-tiles-wrapper .cugl-tile-item {
    padding: 18px 15px;
    font-size: 13px;
  }

  .cugl-tiles-container .cugl-tile-icon-circle,
  .cugl-tiles-wrapper .cugl-tile-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-bottom: 12px;
  }

  .cugl-tiles-container .cugl-tile-icon-circle svg,
  .cugl-tiles-wrapper .cugl-tile-icon svg {
    width: 18px;
    height: 18px;
  }

  .portfolioHeading h2 {
    font-size: 24px !important;
  }

  .portfolioHeading {
    padding-top: 0 !important;
  } 
}

@media (max-width: 767px) {

  .cugl-tiles-container .cugl-tiles-grid,
  .cugl-tiles-wrapper .cugl-tiles-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cugl-tiles-container .cugl-tile-box,
  .cugl-tiles-wrapper .cugl-tile-item {
    padding: 18px 15px;
    font-size: 13px;
    line-height: 1.4em;
  }

  .cugl-tiles-container .cugl-tile-icon-circle,
  .cugl-tiles-wrapper .cugl-tile-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-bottom: 12px;
  }

  .cugl-tiles-container .cugl-tile-icon-circle svg,
  .cugl-tiles-wrapper .cugl-tile-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Override tabContentDiv styles for tabs-section */

.tabs-section {
  margin-top: 20px;
  background: linear-gradient(90deg, #405f77 0%, #001526 100%), url(../images/footer-bg-image.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 40px;
}

.tabs-section .tabContentDiv {
  float: none;
  padding: 0;
  border-left: none;
  height: auto;
  width: 100%;
  display: none;
}

.tabs-section .tabContentDiv.tab-active {
  display: block;
}

.primaryPageTitle.tab-heading {
  font-size: 1.2rem !important;
  margin-bottom: 10px !important;
}

.tab-description {
  margin-bottom: 40px;
}

.tab-subheading {
  margin-top: -20px;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Responsive Styles for Tabs */
@media (max-width: 991px) {
  .tabs-section {
    padding: 50px 30px;
  }

  .tabs-navigation {
    flex-wrap: wrap;
  }

  .tabs-navigation .tablinks {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .tab-content-wrapper h2 {
    font-size: 28px;
  }

  .tab-feature-list li {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .tabs-section {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .tabs-navigation .tablinks {
    padding: 10px 15px;
    font-size: .9rem;
    flex: 1;
    min-width: calc(50% - 5px);
  }

  .tab-content-wrapper {
    padding: 15px 0;
  }

  .tab-content-wrapper h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .tab-content-wrapper p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .tab-feature-list {
    gap: 10px;
  }

  .tab-feature-item {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4em;
  }

  .tab-feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    margin-right: 10px;
  }

  .tab-feature-icon svg {
    width: 16px;
    height: 16px;
  }
}

.tabContentDivInnerRow {
  display: flex;
  flex-wrap: wrap;
}

.tabContentDivInnerRow .mb-40 {
  margin-bottom: 20px;
}

.menuIconWebDiv {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.menuIconWebDiv>img {
  width: 42px;
}

.menuIconWeb {
  margin-right: 20px;
}

.tabContentDiv a {
  color: #333;
  font-size: 14px !important;
  line-height: 1.3em !important;
  font-weight: 700;
}

.cool-link {
  display: inline-block;
  text-decoration: none;
}

.cool-link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #f2f2f2;
  transition: width 0.3s;
}

.tabContentDiv a:hover {
  color: #2194fa;
}

.tabMenuContentText {
  border-left: 6px solid #2194fa;
  padding: 9px 17px;
  font-size: 17px;
  line-height: 27.3px;
  color: #2c2e2f;
  background: #8cc852;
  font-weight: 600;
}

.rightImgDiv {
  background: #ddd;
  height: 380px;
}

.imageMaxWidth {
  max-width: initial;
  height: 100%;
  width: 100%;
}

.row.industry-side {
  padding: 6px 4px 14px 4px !important;
}

.dropdown-hover-content.navBox_Shadow .col-xs-12.col-sm-6.col-lg-4 {
  padding: 0 4px;
}

.indusDivImg {
  margin: 4px 0px;
  position: relative;
}

.indusDivImg img {
  display: block;
  height: 64px;
  object-fit: cover;
}

.menuImgText {
  position: absolute;
  top: 50%;
  left: 12px;
  font-family: Inter;
  font-weight: bold;
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  transform: translate(-0%, -50%);
}

.indusDivImg img {
  display: block;
  height: 64px;
  object-fit: cover;
}

.arrowRightMenu {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 18px;
  height: 16px !important;
}

.imgage1 {
  width: 100%;
}

.dropdown-hover {
  float: left;
  overflow: hidden;
  transition: 0.5s ease;
}

.position-relative {
  position: relative !important;
}

.caseStudyMenu {
  /* border-left: 1px solid #020202; */
  background: #fff;
}

.case-sec {
  padding: 8px 15px 5px;
}

.borderTextblue {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  color: #403b3b;
  border-bottom: 1px solid #2194fa;
  padding-bottom: 5px;
}

.indusDivImg {
  margin: 4px 0px;
  position: relative;
}

.indusDivImg img {
  display: block;
  height: 64px;
  object-fit: cover;
}

.case-sec .w-50 {
  width: 33% !important;
}

.caseStudyMenu a {
  text-decoration: none;
  color: #403b3b;
  font-size: 16px !important;
  line-height: 22px !important;
  font-weight: 600;
  padding: 5px 0px;
}

.cool-link {
  display: inline-block;
}

.mb-60 {
  margin-bottom: 60px;
}

.menuIconWebDiv a span {
  font-size: 14px;
  font-weight: 400;
}

.client-section .our-company-slider {
  border-bottom: unset !important;
  padding-bottom: 30px;
}

/* global offcanvas */
.bs-canvas-header .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
  margin: 2px 14px;
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bs-canvas-header .off-canva-menu {
  padding-left: 23px;
  padding-top: 20px;
}

.off-canva-menu .country-list a {
  font-size: 14px;
  color: rgb(34, 34, 34);
  font-weight: 600;
}

/* Ensure the off-canvas is hidden initially */
.bs-canvas {
  transform: translateX(100%);
  /* Start off-screen to the right */
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  /* Make sure off-canvas is above the backdrop */
}

/* When the off-canvas is open */
.bs-canvas.open {
  transform: translateX(0);
  /* Slide it into view */
}

/* Adjust the header button position for mobile */
.bs-canvas-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Add any other styling you need */
.country-list img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
}

/* Initially hide the backdrop */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Light black */
  display: none;
  /* Hidden by default */
  z-index: 999;
  /* Layer it above content */
}

/* When off-canvas is open, show the backdrop */
.backdrop.show {
  display: block;
  /* Show backdrop */
}

/* Optional: Close button styles */
.bs-canvas-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Basic styling for the body */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  transition: padding-right 0.3s;
  /* Smooth transition when disabling scroll */
}

/* The offcanvas menu */
.offcanvas-container {
  position: fixed;
  top: 0;
  left: -350px;
  /* Initially hidden to the left */
  width: 350px;
  height: 100%;
  background-color: #0a0e37;
  color: #fff;
  transition: left 0.3s ease;
  padding-top: 60px;
  z-index: 1050;
}

/* Offcanvas menu items */
.offcanvas-menu-items {
  list-style-type: none;
  padding: 12px;
}

.offcanvas-menu-items li a {
  color: white;
}

/* Button to open the offcanvas menu */
.open-menu-btn {
  /* position: fixed; */
  top: 0px;
  left: 0px;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 9;
  /* Keep it above the offcanvas */
}

.open-menu-btn:hover {
  background-color: #444;
}

/* Button to close the offcanvas menu */
.close-offcanvas-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
}

/* Backdrop */
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* When the offcanvas menu is open */
.offcanvas-container.open {
  left: 0;
  overflow: auto;
  /* Slide in from the left */
}

/* When the backdrop is visible */
.offcanvas-backdrop.visible {
  opacity: 1;
  visibility: visible;
}

/* Disable body scroll when offcanvas menu is open */
body.no-scroll {
  overflow: hidden;
}

.open-menu-btn {
  display: none;
}

.navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.about-us .our-company-slider {
  padding-bottom: 30px;
}

.certificate-our-company {
  border-bottom: unset;
}

/*--------------------- custom css------------------- */
.servicePage {
  padding: 50px 0;
}

.page-header {
  padding: 100px 0;
}

.innerBanner h1 {
  font-size: 40px;
}

.navbar {
  padding: 0px 0;
}

.innerPage .container {
  max-width: 1800px;
  width: 95%;
}

.webText {
  line-height: 30px;
  font-weight: 500;
  color: #333;
}

.sideBar {
  position: sticky;
  top: 0;
}

.our-benefit-content.leftContent {
  position: initial;
  padding-right: 90px;
}

.serviceBox p {
  color: #333;
  line-height: 30px;
}

.technology {
  background: url(../images/testimonial-bg-image.png), var(--secondary-color);
  background-repeat: repeat-x;
  background-size: cover;
  padding: 50px 0px 0px;
  animation: testimonialbgmove 30s infinite linear;
  margin-top: 50px;
}

.title-sec {
  text-align: center;
}

.title-sec h2 {
  padding-bottom: 10px;
}

h5.caseTitle {
  padding-left: 85px;
  margin-top: -34px;
  padding-bottom: 19px;
  font-size: 14px;
}

h5.caseTitle a {
  color: #fff;
}

/* Mobile responsive improvements for title sections */
@media (max-width: 768px) {
  .title-sec {
    padding: 0 15px;
  }

  .title-sec h2 {
    font-size: 24px;
    line-height: 1.3;
    word-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .title-sec {
    padding: 0 10px;
  }

  .title-sec h2 {
    font-size: 20px;
    line-height: 1.4;
  }
}

/* General mobile improvements for custom-web-app-development-services page */
@media (max-width: 768px) {

  /* Make sections full width on mobile */
  #building-industry-level,
  #types-of-custom-web,
  .agile-process-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow-x: hidden;
  }

  #building-industry-level .container,
  #types-of-custom-web .container,
  .agile-process-section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  /* Ensure proper box sizing */
  #building-industry-level .benefit-services-list .benefit-item,
  #types-of-custom-web .benefit-services-list .benefit-item,
  .agile-process-item {
    box-sizing: border-box;
  }

  /* Make rows full width */
  #building-industry-level .row,
  #types-of-custom-web .row,
  .agile-process-section .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  /* Ensure columns are responsive */
  #building-industry-level [class*="col-"],
  #types-of-custom-web [class*="col-"],
  .agile-process-section [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {

  #building-industry-level .container,
  #types-of-custom-web .container,
  .agile-process-section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.knowledgeService {
  background: url(../images/how-we-work-bg-image.png), #083d67;
  background-repeat: repeat-y;
  background-position: left top;
  background-size: auto;
  padding: 50px 0;
  margin-top: 210px;
}

.knowledgeText h3 {
  color: #fff;
  font-size: 40px;
}

.knowledgeText p {
  color: #fff;
  font-size: 17px;
  padding-top: 10px;
  line-height: 30px;
}

.knowledgeImg {
  background-color: #fff;
  min-height: 200px;
  margin-top: -190px;
  box-shadow: 0px -1px 6px #ccc;
}

.mapImg {
  background-color: #fff;
  padding: 20px 20px;
  overflow: hidden;
  text-align: right;
}

.mapText h4 {
  text-transform: capitalize;
}

.mapText {
  padding: 18px 24px 24px;
}

.mapText p {
  padding-top: 20px;
  font-size: 17px;
  font-weight: 500;
  padding-right: 30px;
}

.mapText a {
  color: #00355e;
  font-weight: 500;
}

.mapImg img {
  object-fit: cover;
}

.rightMap {
  display: flex;
  justify-content: center;
  background-color: #65a04d;
  height: 250px;
}

.customBanner {
  /* height: 600px; */
  height: 440px;
  padding: 0px 0;
}

.customBanner h1 {
  margin: 0 0;
}

.phoneIco>a {
  display: none;
}

.bannerContent {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  /* min-height: 200px; */
  position: relative;
  width: 95%;
  margin: -30px auto 0;
  padding: 30px 30px;
}

/* .bannerSec {
  display: flex;
} */

/*
.navbar .container {
  max-width: 1800px;
  width: 95%;
}

 .topbar .container {
  max-width: 1800px;
  width: 95%;
}*/

.customBanner .container {
  max-width: 1800px;
  width: 95%;
}

.team-contact-circle img {
  width: 100% !important;
}

.bannerText p {
  font-weight: 500;
  margin-bottom: 17px;
  color: #333;
  padding-right: 30px;
}

.team-contact-circle {
  width: 230px;
  text-align: center;
}

.portfolioBanner img {
  aspect-ratio: initial;
}

.portfolio-sec {
  padding: 50px 0 0;
}

.bannerSlide {
  margin-bottom: 0;
}

.portfolioTitle p {
  font-weight: 500;
  font-size: 17px;
  line-height: 32px;
}

.logoBox {
  display: flex;
  align-items: flex-start;
}

.newLogo {
  justify-content: space-between;
}

.benefit-btn.case-btn a {
  background: transparent;
  padding: 0 40px 6px 0;
  position: relative;
}

.benefit-btn.case-btn a.btn-default::before {
  top: 35%;
}

.benefit-btn.case-btn a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.benefit-btn.case-btn a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.logoLeft {
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.case-btn {
  white-space: nowrap;
}

.logoBox img {
  width: 70px !important;
  object-fit: cover;
}

.logoBox h2 {
  padding-left: 12px;
  font-size: 25px;
}

.portfolioFeature h3 {
  color: #fff;
  padding-bottom: 20px;
  font-size: 21px;
}

.portfolioTitle {
  padding-bottom: 18px !important;
  margin-bottom: 20px !important;
}

.portfolioTech {
  background: transparent;
  border-radius: 5px;
  padding: 0px 0px;
  display: block;
}

.portfolioTech .logo-box {
  width: 140px;
  margin-right: 13px;
  padding: 6px 10px;
  border-radius: 2px;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.portfolioTech .logo-box img {
  /* width: 90px !important; */
  margin: 0 auto;
  object-fit: cover;
  max-height: 40px;
  max-width: 100%;
  width: auto !important;
}

.portfolioTech .logo-box img {
  width: 100%;
}

.portfolioTech h3 {
  color: #fff;
  padding-bottom: 16px;
  font-size: 21px;
}

.portfolioFeature {
  margin-bottom: 35px;
}

.bannerSlide.owl-theme .owl-dots {
  position: absolute;
  right: 0;
  bottom: 0;
}

.portfolioBanner figure {
  transform: none !important;
}

.customBanner::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
}

.innerBanner {
  position: absolute;
  top: 37%;
  transform: translateY(-37%);
  background-image: none !important;
  max-width: 65%;
  width: 100%;
}

.bannerList li {
  color: #fff;
  padding-bottom: 10px;
  font-weight: 600;
}

.bannerTag {
  color: #fff;
  font-weight: 600;
  padding-top: 10px;
}

.page-header.customBanner {
  background-image: none !important;
}

.customBanner img {
  height: 100% !important;
  object-fit: cover !important;
  width: 100%;
}

.bottomContent {
  padding: 50px 0 0;
  text-align: center;
}

.bottomContent h3 {
  padding: 0 8%;
}

.phoneIco {
  text-align: center;
  /* margin-top: -18px; */
}

/* 22-oct */
.service-page-body .end-to-end {
  background-color: #fff;
  padding: 100px 0;
}

.service-page-body .what-we-do-body ul li a {
  color: var(--primary-color);
}

.service-page-body .what-we-do-body ul li::before {
  top: 0%;
  transform: translateY(70%);
}

/* ----------------------INDUSTRY SECTION ----------------------*/
.IndustrySec {
  padding-top: 50px;
  padding-bottom: 40px;
}

.team-body.industry {
  padding: 10px 12px;
}

.industryImg a img {
  height: 250px;
}

.industryItem {
  height: auto;
}

.industryTitle {
  margin-bottom: 0px !important;
  font-size: 17px !important;
}

.PrimaryTitle {
  font-size: 26px !important;
  line-height: 38px;
  text-transform: capitalize;
}

.serviceSec .service-item {
  margin: 0 1% 2.1%;
  width: 23%;
}

.serviceSec .service-content {
  left: 20px;
  right: 0;
  bottom: 20px;
}

.page-header.industryBanner {
  background-image: none !important;
  background-size: 100% !important;
  padding: 0px 0;
}

.page-header.industryBanner .page-header-box {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

/* 23-Oct-2025 */
.index-body .why-choose-author-info .case-study-round a {
  color: unset;
  cursor: pointer;
  position: relative;
  z-index: 99;
}

/* .service-page-body .what-we-do-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: -10px;
    transform: translateY(0%);
    color: #237abf;
    width: unset;
    height: unset;
    border-radius: unset;
    background: unset;
} */

.service-page-body .what-we-do-body ul li::before {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 3px;
  left: 5px;
  transform: translateY(0%);
  color: #237abf;
  border-radius: unset;
  background: url("../images/arrow-gradient.svg") no-repeat center center;
  background-size: cover;
  /* Ensure the image covers the area */
  transition: transform 0.5s ease-in-out;
  /* ⬅ Add this line */
}

.service-page-body .what-we-do-body ul li a {
  padding-bottom: 3px;
}

.service-page-body .what-we-do-body ul li:hover a {
  color: #237abf !important;
  padding-bottom: 3px;
}

.service-page-body .what-we-do-body ul li:hover::before {
  transform: rotate(45deg);
}

.service-page-body .padding-left {
  padding-left: 40px;
}

.service-page-body .what-we-do-body ul li a {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

/* Fake border for animation */
.service-page-body .what-we-do-body ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #237abf;
  /* looks like a border */
  transition: width 0.4s ease;
}

/* On li hover → animate left to right */
.service-page-body .what-we-do-body ul li:hover a::after {
  width: 100%;
}

/* .service-page-body .page-header{
    background-size: auto !important;
    padding: 75px 0 !important;
} */

.index-body .slider {
  position: relative;
  width: 100%;
  height: 235px;
  overflow: hidden;
  text-align: left;
}

.index-body .slide {
  position: absolute;
  opacity: 0 !important;
  font-size: 24px;
  color: #333;
  transition: opacity 1s ease-in-out;
  z-index: 999;
}

.index-body .active {
  opacity: 1;
}

.hero-content .slider .slide h1 {
  font-size: 50px;
}

.hero-content .slider .slide p {
  font-size: 20px;
}

.cstom-swipper-home {
  height: 640px;
}

.client-review-box .grw-net-widget-four {
  border: unset !important;
}

.client-review-box .review-widget_net .branding {
  display: none !important;
  content-visibility: hidden;
}

.page-header.about-header .page-header-box {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.page-header.about-header {
  background-image: none !important;
  background-size: 100% !important;
  padding: 0px 0;
}

/* correction css */
/* Technology Tabs Styling */
.technology-tabs-section {
  padding: 60px 0px 0px 0px;
}

.technology-tabs-section .nav-pills {
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.technology-tabs-section .nav-pills .nav-link {
  background: transparent;
  border: 2px solid #e0e0e0;
  color: #666;
  font-weight: 600;
  padding: 12px 24px;
  margin: 0 8px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.technology-tabs-section .nav-pills .nav-link:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.technology-tabs-section .nav-pills .nav-link.active {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.technology-tabs-section .nav-pills .nav-link i {
  margin-right: 8px;
  font-size: 16px;
}

.tech-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}

.tech-item .tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
}

.tech-item .tech-icon i {
  font-size: 32px;
  color: #fff;
}

.tech-item h5 {
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.tech-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.tab-content {
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------contact page-------------------------- */
.contactsubTitle {
  font-size: 18px !important;
  padding-bottom: 18px;
}

.contactsubTitle a {
  text-decoration: none !important;
}

.contactBox {

  padding: 30px 30px !important;
}

.help-block.with-errors {
  padding-top: 10px;
}

.ContactForm .help-block.with-errors {
  padding-top: 10px;
}

.customSelect {

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-size: 0.65em auto;
  height: 45px;
  font-weight: bold;
  line-height: 1.13;
  color: #666;
  border: solid 1px #dddddd;
  background-color: #f2f2f2;
  padding: 2.5% 4%;
  width: 100%;
  resize: none;
  outline: none;
}

select:focus-visible {
  border: none;
  outline: none;
}

.contactSec .contact-us-form {
  padding: 40px 0px;
}

.contactSec .section-title {
  margin-bottom: 35px;
  font-size: 32px;
}

.ContactForm .form-control {
  padding: 12px 12px;
  height: 45px;
  font-weight: bold;
  line-height: 1.13;
  color: #666;
  border: solid 1px #dddddd;
  background-color: #f2f2f2;
  padding: 2.5% 4%;
  width: 100%;
  resize: none;
  outline: none;
}

.contactSec .contact-us-form textarea {
  height: 100px;
}

.contact_bold {
  font-weight: bold;
  color: #222;
}

.contactsubTitle i {
  padding-right: 10px;
  width: 25px;
}

.addressBox {
  display: flex;
}

.page-contact-us {
  padding: 70px 0 !important;
}

.socialLink li {
  list-style: none;
  padding-right: 10px;
}

.socialLink {
  display: flex;
  padding-left: 0;
}

.contactTitle {
  font-size: 30px !important;
}

.contactTag {
  font-size: 14px;
  color: #fff;
  width: 330px;
  font-weight: 600;
}

/*-----------------------27 oct suraj---------------------------*/
.about-page-body .tech-item {
  align-content: center;
}

.service-page-body .our-approach-image-1 img {
  aspect-ratio: 0 / 1.581;
}

.service-page-body .our-approach-image-2 figure img {
  aspect-ratio: 0 / 1.42;
}

/* .about-page-body .about-languages-icon img {
	height: 90px;
	object-fit: scale-down;
} */

.about-page-body .technology-tabs-section .nav-pills .nav-link.active {
  background: #237abf;
  border-color: #237abf;
}

.about-page-body .tech-item:hover {
  border-color: #237abf;
}

.about-page-body .technology-tabs-section .nav-pills .nav-link:hover {
  background: #237abf;
  border-color: #237abf;
}

/* -------------------------------case study page--------------------- */
/* .singlePage {
  padding: 55px 0 !important;
} */

.pageTitle {
  font-size: 20px;
  margin-bottom: 0;
  padding-bottom: 10px;
}

li.caseList {
  line-height: 27px;
  padding-bottom: 12px;
  color: #010535;
}

.caseText ul {
  padding-left: 18px;
  padding-top: 9px;
}

.caseText {
  padding-top: 0px;
}

.caseImg img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.primaryPageTitle {
  padding-bottom: 14px;
  font-size: 34px !important;
}

.resultSec .section-title {
  margin-bottom: 0;
}

.resultList {
  font-weight: 600;
  font-size: 17px;
  color: #010535;
  border-bottom: 1px solid #ccc;
  padding: 18px 0 18px 15px;
  line-height: 29px;
  position: relative;
  list-style: none;
}

.resultBox ul {
  padding-left: 0px;
}

.resultList::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

/* .service-page-body .page-header {
  background: url(../images/services-banner.png) no-repeat center center !important;
} */

.bannerList li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  /* change color if needed */
  display: inline-block;
  padding: 5px 0;
}

.bannerList li a:hover {
  color: #fff;
}

.bannerList li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  /* underline thickness */
  background-color: #fff;
  /* underline color */
  transition: width 0.3s ease;
  /* smooth left-to-right animation */
}

.bannerList li a:hover::after {
  width: 100%;
}

.bannerTag {
  color: #fff;
  font-weight: 600;
  padding-top: 10px;
  max-width: 65%;
  width: 100%;
}

/* 24-oct-2025 */
.about-page-body .team-body {
  left: 20px;
  padding: 10px;
}

.about-page-body .team-body .team-content h3 {
  font-size: 18px;
  margin-bottom: 3px;
}

.about-page-body .section-row {
  margin-bottom: 25px;
}

.about-page-body .sub-team-member {
  background-color: #fafafb;
  padding: 50px 0px;
}

.about-page-body .team-item:hover .team-social-icon {
  transform: translateY(-20px);
}

.portfolio-top-body .page-header {
  background: url(../images/portffolio.jpg) no-repeat center center;
}

.contact-top-body .page-header {
  background: url(../images/contact-us.jpg) no-repeat center center;
  background-position: center !important;
}

/* 30-oct-2025 */
.about-header img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

input#attachCheck {
  height: 25px;
  width: 25px;
  margin-right: 10px;
}

.attachement-label {
  display: flex;
  align-items: center;
  color: #5c5858;
  font-size: 16px;
  font-weight: 600;
}

.contact-file-choose {
  background: unset;
  border: unset;
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  color: var(--text-color);
  margin-top: 30px !important;
  cursor: pointer;
}

.multiselect-contact-page {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.multiselect-contact-page .customSelect {
  display: flex;
  align-items: center;
  padding: 15px 5px;
  height: unset;
}

.multiselect-contact-page .selectBox {
  border: 1px solid #aaa;
  padding: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.multiselect-contact-page .checkboxes {
  display: none;
  border: 1px solid #aaa;
  border-top: none;
  max-height: 150px;
  overflow-y: auto;
  background: #fff;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 55px;
  border-radius: 3px;
}

.multiselect-contact-page .checkboxes label {
  display: block;
  padding: 5px 8px;
  cursor: pointer;
}

.multiselect-contact-page .checkboxes label:hover {
  background-color: #f1f1f1;
}

.multiselect-contact-page #selectedValues .tag {
  padding: 5px 5px !important;
  background-color: #5b81d7 !important;
  border: 1px solid #5b81d7 !important;
  border-radius: 0px !important;
  font-weight: 600 !important;
  color: #fff;
  word-break: break-all;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3.75px;
  margin-bottom: 3px;
}

.multiselect-contact-page #selectedValues .tag .remove-tag {
  border-left: 1px solid #ccd6d7 !important;
  padding: 2px 5px;
  margin-left: 4px;
}

.contact-top-body .socialLink {
  justify-content: space-between;
  margin-top: 20px;
}

.contact-top-body .socialLink .fa-brands {
  color: #8bc53f;
  font-size: 25px;
  cursor: pointer;
}

.contactBox:hover .fa-brands {
  color: #fff;
}

.contact-top-body .contact_bold {
  font-size: 22px;
  margin-bottom: 10px;
}

.bannerSlide.owl-theme .owl-dots {
  display: none;
}

.opportunities-image.portfolioBanner {
  display: flex;
  align-items: center;
  height: 100%;
}

.owl-carousel .owl-nav button.owl-prev {
  background: url(../images/arrow-left.png) no-repeat !important;
  background-size: 65% !important;
  width: 35px;
  height: 65px;
  text-indent: -9999px;
  position: absolute;
  left: -40px;
}

.owl-carousel .owl-nav button.owl-next {
  background: url(../images/arrow-right.png) no-repeat !important;
  background-size: 65% !important;
  width: 35px;
  height: 65px;
  text-indent: -9999px;
  position: absolute;
  right: -40px;
}

.bannerSlide.owl-theme .owl-nav {
  position: absolute;
  left: 0;
  top: 38%;
  width: 100%;
  transform: translateY(-38%);
}

span.boldFont {
  font-weight: 600;
  color: #222;
}

.faqSec {
  margin-top: 50px;
  padding-bottom: 0;
}

.caseContent .container-full-width {
  width: 100%;
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

.faqSec .section-title {
  padding-bottom: 10px;
  margin-bottom: 0;
}

.about-languages-icon {
  height: 45px;
  display: flex;
  justify-content: center;
}

.page-header.noBg::before {
  background: linear-gradient(90deg, #010027 21%, #0b0549bf 52.13%, rgba(226, 64, 59, 0.02) 101.85%) !important;
}

#our-approach {
  padding-top: 150px;
}

#cloudService {
  padding-top: 150px;
}

#businessTransformation {
  padding-top: 150px;
}

#end-to-end {
  padding-top: 150px;
}

.aboutImg.owl-carousel .owl-item img {
  height: 650px;
  margin: 0 auto;
  width: auto;
}

.how-work-image {
  text-align: center;
}

.how-work-image img {
  width: 100%;
}

/*ContactUs Start*/

.contactUsSection .ContactUsContainer-top .svg1 .circle1,
.contactUsSection .ContactUsContainer-top .svg1 .circle2 {
  stroke: #364045;
}

.ContactUsContainer-top {
  background-color: #263238;
  padding-bottom: 10.5%;
  background-attachment: fixed;
  color: #ffffff;
}

/* .contactUsSection .openbtn {
    font-size: 1.4em;
    cursor: pointer;
    border: none;
    color: #fff;
    background-color:rgba(255, 255, 255, 0.25);
} */

.contactUsSection .applybtn {
  border-radius: 0px;

  font-weight: 500;
  /* background-color: rgba(255, 255, 255, 0.75); */
  font-size: 0.9em;
  padding: 1% 0%;
  transition: all 50ms;
  cursor: pointer;
  margin: 5px;
  border: 0;
  border-radius: 10px;
  /* color: #333333; */
}

.ContactUsContainer-top .pdiv {
  background: none !important;
}

.ContactUs .ContactUsHeaddingImage img {
  /* margin-top: -5%; */
  height: fit-content;
  max-width: 350px;
}

.contactUsSection .ContactUs {
  width: 69% !important;
  margin: 0 13% 0 18% !important;
  position: relative;
  z-index: 1;
  top: 100px;
}

.contactUsSection .ContactUsHeaddingCol7 {
  padding: 0%;
}

.contactUsSection .ContactUsHeaddingImage {
  padding: 0%;
  text-align: center;
}

.contactUsSection .ContactUsHeadding {

  font-size: 2.5em;
  line-height: 1.5;
  letter-spacing: normal;
  color: #ffffff;
  padding-top: 6%;
}

.contactUsSection .ContactUsHeaddingPara {
  font-size: 1.2em;

  line-height: 1.7;
  margin-top: 0%;
  color: #ffffff;
  padding-left: 4px;
}

.contactUsSection .FollowUS {
  border: 1px solid #e5e5e5;

  padding: 3% 5%;
  border-top: none !important;
  margin: auto;
}

.contactUsSection .FollowUSHeadding {

  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
}

.contct-icons {
  background: #f2f2f2;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  text-align: center;
  padding: 14px 14px;
  color: #2083d2;
  font-size: 1.6em;
  margin-right: 2rem;
}

.contactUsSection .CustomerImage1 {
  margin-right: 9%;
}

img.CustomerImage {
  margin-right: 1rem;
}

.contactUsSection .Corporate {
  text-align: left;
  padding-left: 4%;
}

.contactUsSection .global {
  margin: 2% 0;
}

.contactUsSection .contactUSCol1Headding {

  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.67;
  color: #333333;
  margin: 8% auto 3%;
}

/* *css for last section div*/

.contactUsSection .contactUsLastSectionDiv {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}

.contactUsSection .col1ContctUs {
  padding-left: 0;
  margin-top: 9%;
  padding-bottom: 50px;
}

.contactUsSection .col2ContctUs {
  margin-bottom: 10%;
}

.contactUsSection .col1ContctUsSupport {
  border: 1px solid #e5e5e5;
}

.contactUsSection .col1ContctUsSupport {
  /* width: 75%; */
  padding: 3% 2%;
  margin: auto;
}

.contactUsSection .col1ContctUsCustomerSupport {

  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
}

.contactUsSection .Phonetext {
  display: table;
  margin: 4% 0;
  width: 100%;
}

.contactUsSection .Phonetext .customerNumber {
  color: #333333;

  font-size: 1em;
}

.contactUsSection .Phonetext1 {
  padding: 0% 4%;
}

.Address .customerNumber.Corporate {
  vertical-align: top;
}

.contactUsSection .customerNumber {
  display: table-cell;
  line-height: 1.6;
  /* width: 90%; */
}

.contactUsSection .CorporateHeadding {

  line-height: 23px;
  color: #333333;
  font-size: 1em;
  margin-bottom: 0%;
}

.contactUsSection .Addresses {
  font-size: 0.9em;

  color: #616161;
}

.custmcustomerNumber {
  font-size: 1.1em !important;
}

.contactUsSection .myForm {
  display: flex;
  flex-direction: column;
  margin-top: -30%;
  background-color: #ffffff;
  padding: 2% 6% 7% 6%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

.contactUsSection .contactUsLastSectionDiv .myForm .Contact-Us {

  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.53;
  color: #333333;
  margin-bottom: 3%;
  margin-top: 9%;
}

.contactUsLastSectionDiv .myForm .pshare {

  font-size: 1.15em;
  line-height: 1.53;
  color: #616161;
  margin-bottom: 6%;
  margin-top: 3%;
}

.contactUsLastSectionDiv .myForm .checkboxmsg {
  width: 20px;
  height: 19px;
  border: solid 2px #333333;
  background-color: #ffffff;
  margin-right: 4%;

}

.contactUsSection .contactUsLastSectionDiv .myForm .checkboxLabel {
  font-size: 0.9em;
  display: flex;
  margin-top: 4%;

  line-height: 1.53;
  color: #333333;
}

.contactUsSection .contactUsLastSectionDiv .myForm .captchadiv {
  border: solid 1px #dddddd;
  background-color: #f2f2f2;
  color: rgba(51, 51, 51, 0.5);
  width: 70%;
  padding: 7% 1% 4%;
  margin-top: 1%;
  margin-bottom: 4%;
  font-size: 1.2em;
  border: solid 1px #dddddd;
  color: rgba(51, 51, 51, 0.5);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contactUsSection .contactUsLastSectionDiv .myForm .captchadiv .captchaLabel {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.contactUsSection .contactUsLastSectionDiv .myForm .captchadiv input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.contactUsSection .contactUsLastSectionDiv .myForm .captchadiv .captchamsg {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: solid 2px #333333;
  background-color: #ffffff;

  border-radius: 5px;
  outline: none;
}

.contactUsSection .contactUsLastSectionDiv .myForm .captchadiv input:checked~.captchamsg {
  background-color: #2196f3;
  border-color: #2196f3;
}

.contactUsSection .contactUsLastSectionDiv .myForm .captchadiv .captchamsg:after {
  content: "";
  position: absolute;
  display: none;
}

.contactUsSection .contactUsLastSectionDiv .myForm .captchadiv input:checked~.captchamsg:after {
  display: block;
}

.contactUsSection .contactUsLastSectionDiv .myForm .captchadiv .captchamsg:after {
  left: 9px;
  top: 3px;
  width: 6px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contactUsSection .contactUsLastSectionDiv .myForm .row {
  margin-bottom: 2%;
}

.contactUsSection .contactUsLastSectionDiv .myForm .row div {
  padding-right: 0;
}

.contactUsSection .contactUsLastSectionDiv .myForm .frminput {

  font-size: 0.95em;
  font-weight: bold;
  line-height: 1.13;
  color: #000000;
  border: solid 1px #dddddd;
  background-color: #f2f2f2;
  margin-bottom: 3.7%;
  padding: 2.5% 4%;
  width: 100%;
  resize: none;
  outline: none;
}

.contactUsSection .contactUsLastSectionDiv .myForm textarea.frminput {
  max-height: 9rem;
}

.contactUsSection .contactUsLastSectionDiv .myForm .frminput::placeholder {
  font-size: 0.8em;
  color: rgba(51, 51, 51, 0.5);
}

.contactUsSection .contactUsLastSectionDiv .myForm .frmSelectInput {

  font-size: 0.9em;
  border: 1px solid #f3f3f3;
  margin-bottom: 3.7%;
  padding: 2.5% 3%;
  width: 100%;
  margin-bottom: 4%;
  color: rgba(51, 51, 51, 0.5);
  overflow: -moz-hidden-unscrollable;
  background: url(../img/drop-down.png) no-repeat right #f2f2f2;
  -webkit-appearance: none;
  outline: none;
}

.contactUsSection .contactUsLastSectionDiv .myForm .btn-submit_green {
  background-color: #2083d2;
  color: white;
  padding: 3% 0;
  border: 0;
  text-transform: capitalize;
  margin-top: 5%;
  height: 56px;
}

.sidebar-cta-logo {
  display: none;
}

.sidebar-cta-box {
  background: #083d67;
}

.sidebar-cta-content ul li a:hover {
  color: #6ee142;
}

h1.caseTitle {
  font-size: 38px;
  line-height: 45px;
}

.what-we-do-image .owl-carousel .owl-nav button.owl-prev {
  background: none !important;
}

.what-we-do-image .owl-carousel .owl-nav button.owl-next {
  background: none !important;
}



/************************************/
/***      32. Responsive css      ***/
/************************************/
@media only screen and (min-width: 1800px) {
  .portfolioBanner img {
    margin-bottom: -133px;
    overflow: hidden;
  }
}

@media only screen and (max-width: 1400px) {
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
    display: flex !important;
  }

  .our-opportunities {
    height: auto;
  }

  .logoBox h2 {
    font-size: 20px;
    padding-top: 3px;
  }

  .logoBox img {
    width: 50px;
  }

  .portfolioTech .logo-box {
    width: 90px;
  }

  .portfolioTech h3 {
    font-size: 20px;
    padding-bottom: 11px;
  }

  .section-title p {
    margin-top: 12px;
  }

  .portfolioTitle p {
    font-size: 15px;
    line-height: 28px;
  }

  .portfolioTitle {
    padding-bottom: 10px !important;
    margin-bottom: 17px !important;
  }

  .portfolioFeature h3 {
    font-size: 20px;
  }

  .opportunities-body ul {
    gap: 0;
  }

  .opportunities-body ul li {
    padding-bottom: 13px;
    line-height: 23px;
    width: 50%;
    font-size: 15px;
  }

  .portfolioFeature {
    margin-bottom: 8px;
  }

  .portfolioTech {
    padding-bottom: 20px;
  }

  .opportunities-body ul li::before {
    top: 10px;
  }

  .opportunities-content {
    padding-top: 25px;
  }

  .page-projects.portfolioSection .container {
    max-width: 1200px;
    width: 85%;
  }
}

@media only screen and (max-width: 991px) {
  .locationul li {
    flex-direction: column !important;
  }

  .locationul li span {
    display: none;
  }

  /* Basic offcanvas container styles */
  .side-image-cstm {
    background-image: unset !important;
  }

  .about-side-image-cstm {
    background-image: unset !important;
  }

  .contactUsSection .contactUSCol1Headding {
    margin: 3% 0 13px;
  }

  .contact-us-form {
    margin-left: 0;
  }

  .contactUsSection .myForm {
    margin-top: 0;
  }

  .privacy-policy-list {
    margin-top: 15px;
  }

  .navbar-collapse {
    display: none !important;
  }

  .accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
  }

  .accordion-content {
    padding-left: 20px;
    display: none;
  }

  .plus-minus {
    font-size: 18px;
    margin-left: 10px;
  }

  .accordion-container.accordion-open .accordion-content {
    display: block;
  }

  .close-offcanvas-btn {
    position: absolute;
    right: 20px;
    background-color: transparent;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border: 1px solid #fff;
    padding: 0px 10px 10px 10px;
    height: 38px;
    border-radius: 50px;
    min-width: 40px;
  }

  .topbar-contact-info ul {
    gap: 20px;
  }

  .topbar-login-btn {
    margin-right: 20px;
    padding-right: 20px;
  }

  .topbar-login-btn ul li {
    margin-right: 15px;
  }

  .topbar-login-btn ul li::before {
    right: -13px;
  }

  .topbar-social-links ul li {
    margin-right: 10px;
  }

  .navbar {
    padding: 0px 0;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .btn-default {
    padding: 14px 42px 14px 14px;
  }

  .btn-default::before {
    right: 14px;
    width: 22px;
    height: 22px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title-content {
    margin-top: 15px;
  }

  .section-row .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 45px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 80px 0;
  }

  .hero.hero-slider-layout .hero-pagination {
    bottom: 30px;
    padding-left: 15px;
  }

  .hero-footer {
    padding: 15px 20px;
    margin-top: 40px;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-us-images {
    width: 100%;
    max-width: 75%;
    margin: 0 auto 30px;
    padding: 20px 225px 140px 30px;
  }

  .about-image-2 {
    max-width: 270px;
  }

  .about-image-circle a img {
    max-width: 120px;
  }

  .about-us-body {
    gap: 20px;
  }

  .about-body-item {
    width: calc(50% - 10px);
  }

  .about-body-item .icon-box {
    margin-right: 10px;
  }

  .about-body-item .icon-box img {
    max-width: 35px;
  }

  .about-body-item-content {
    width: calc(100% - 45px);
  }

  .about-us-footer {
    margin-top: 30px;
    padding-top: 30px;
  }

  .about-us-footer-counter h2 {
    font-size: 60px;
  }

  .about-us-footer-counter {
    width: calc(22% - 20px);
  }

  .about-us-footer-content {
    width: calc(50% - 20px);
  }

  .our-services {
    padding: 50px 0;
  }

  .service-item {
    width: 50%;
  }

  .service-item:nth-of-type(-n + 4) {
    border-top-width: 0;
  }

  .service-item:nth-of-type(-n + 2) {
    border-top-width: 1px;
  }

  .service-image img {
    aspect-ratio: 1 / 1.1;
  }

  .service-content {
    right: 30px;
    left: 30px;
    bottom: 30px;
  }

  .service-title img {
    max-width: 45px;
    margin-bottom: 15px;
  }

  .service-item:hover .service-body {
    margin-top: 10px;
  }

  .contact-us-now-text {
    margin-top: 30px;
  }

  .scrolling-ticker {
    padding: 50px 0 25px;
  }

  .scrolling-ticker-box {
    --gap: 30px;
  }

  .scrolling-ticker-box .scrolling-content span {
    font-size: 70px;
  }

  .scrolling-ticker-box .scrolling-content span img {
    max-width: 35px;
    margin-right: 30px;
  }

  .why-choose-us {
    padding: 25px 0 50px;
  }

  .why-choose-content {
    margin-bottom: 30px;
  }

  .why-choose-list ul li {
    margin-bottom: 10px;
  }

  .why-choose-btn {
    margin-top: 30px;
  }

  .why-choose-image {
    margin: 0;
  }

  .why-choose-image img {
    aspect-ratio: 1 / 1.133;
  }

  .why-choose-author-info,
  .why-choose-author-skillbar {
    margin-bottom: 30px;
  }

  .why-choose-author-info h3 {
    margin-bottom: 20px;
  }

  .skills-progress-bar {
    margin-bottom: 20px;
  }

  .how-we-work {
    padding: 50px 0;
  }

  .work-counter-list {
    gap: 30px 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .work-counter-list-item {
    text-align: center;
    width: calc(25% - 30px);
  }

  .work-counter-item-header {
    display: block;
    margin-bottom: 10px;
  }

  .work-counter-item-header .icon-box {
    margin: 0 0 10px 0;
  }

  .work-counter-item-no {
    width: 100%;
  }

  .work-counter-item-no h2 {
    font-size: 36px;
  }

  .how-work-content {
    margin-bottom: 30px;
  }

  .work-step-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .how-work-image img {
    aspect-ratio: 1 / 0.7;
    object-position: top center;
  }

  .our-achivements {
    padding: 50px 0;
  }

  .achivement-image {
    margin: 0 0 30px 0;
  }

  .achivement-image img {
    aspect-ratio: 1 / 0.7;
    object-position: top center;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    margin-bottom: 10px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    top: 4px;
    height: 18px;
    width: 18px;
  }

  .our-team {
    padding: 50px 0;
  }

  .our-company-slider {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .team-contact-circle a img {
    max-width: 110px;
  }

  .team-body {
    left: 60px;
    padding: 15px 20px;
  }

  .contact-us-now-text.team-footer {
    margin-top: 10px;
  }

  .intro-video {
    padding: 100px 0;
  }

  .intro-video-play-button {
    margin-bottom: 40px;
  }

  .intro-video-content {
    text-align: center;
  }

  .our-pricing {
    padding: 50px 0;
  }

  .our-pricing-swich {
    margin-bottom: 30px;
    gap: 20px;
  }

  .our-pricing-swich .form-check-label {
    font-size: 16px;
  }

  .our-pricing-swich.form-switch .form-check-input {
    width: 60px;
    height: 32px;
    background-size: 22px auto;
  }

  .pricing-item {
    padding: 30px;
  }

  .pricing-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .pricing-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .pricing-body {
    margin-bottom: 20px;
  }

  .pricing-body h2 {
    font-size: 36px;
  }

  .pricing-btn .btn-default {
    padding: 14px;
  }

  .pricing-benefit-list {
    margin-top: 10px;
  }

  .pricing-benefit-list ul {
    gap: 15px 30px;
  }

  .pricing-benefit-list ul li img {
    max-width: 18px;
    margin-right: 10px;
  }

  .our-testimonial {
    padding: 50px 0;
  }

  .testimonial-title-box {
    position: initial;
    margin: 0 0 30px 0;
  }

  .client-content-box {
    margin-bottom: 30px;
  }

  .testimonial-content-box {
    margin-left: 0;
  }

  .testimonial-company-logo {
    margin-bottom: 20px;
  }

  .testimonial-content {
    margin-bottom: 30px;
  }

  .author-content h3 {
    font-size: 20px;
  }

  .our-facility {
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .facility-item {
    width: calc(33.33% - 20px);
  }

  .facility-item .icon-box {
    margin-bottom: 15px;
  }

  .facility-item .icon-box img {
    max-width: 40px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-featured-image {
    margin-bottom: 0px;
  }

  .post-item-content {
    margin-bottom: 20px;
  }

  .main-footer {
    padding: 50px 0 0;
  }

  .about-footer {
    max-width: 100%;
    margin-right: 30px;
  }

  .about-footer p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .footer-links h3 {
    margin-bottom: 20px;
  }

  .footer-privacy-policy {
    margin-top: 40px;
  }

  .privacy-policy-list ul li {
    padding-right: 20px;
    margin-right: 20px;
  }

  .footer-copyright {
    padding: 30px 0;
  }

  /* .page-header {
    padding: 80px 0 !important;
  } */

  .page-header-box h1 {
    font-size: 45px;
    margin-bottom: 10px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .our-approach-content {
    margin-bottom: 30px;
  }

  .our-approach-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .our-approach-circle img {
    max-width: 120px;
  }

  .what-we-do {
    padding: 50px 0;
  }

  .what-we-do-image {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .what-we-do-image-box {
    padding-left: 50px;
  }

  .what-we-do-circle img {
    max-width: 100px;
  }

  .what-we-do-body {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .what-we-do-body ul {
    gap: 15px 20px;
  }

  .what-we-list {
    gap: 30px 20px;
  }

  .what-we-item {
    width: calc(50% - 10px);
  }

  .what-we-item .icon-box {
    margin-right: 10px;
  }

  .what-we-item .icon-box img {
    max-width: 35px;
  }

  .what-we-item-content {
    width: calc(100% - 45px);
  }

  .our-benefit {
    padding: 50px 0;
  }

  .our-benefit-content {
    position: static;
    margin-bottom: 30px;
  }

  .our-benefit-list {
    gap: 30px;
  }

  .benefit-item .icon-box {
    margin-bottom: 15px;
  }

  .benefit-item .icon-box img {
    max-height: 40px;
  }

  .benefit-item-content h3 {
    margin-bottom: 10px;
  }

  .benefit-footer {
    margin-top: 30px;
  }

  .our-opportunities {
    padding: 50px 0 0;
  }

  .opportunities-image,
  .opportunities-content {
    width: 100%;
  }

  .opportunities-image img {
    aspect-ratio: 1 / 0.6;
  }

  .opportunities-content .section-title {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .opportunities-body {
    margin-bottom: 40px;
  }

  .opportunities-body ul {
    gap: 15px 20px;
  }

  .opportunities-video-content {
    padding: 20px 40px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .faqs-image {
    margin-bottom: 30px;
  }

  .faq-img img {
    aspect-ratio: 1 / 0.7;
  }

  .company-experience {
    bottom: 20px;
    left: 20px;
    padding: 15px 25px 15px 15px;
  }

  .company-experience h3 {
    font-size: 36px;
  }

  .faqs-content {
    margin-left: 0;
  }

  .page-services {
    padding: 50px 0 30px;
  }

  .page-services .service-item-list .service-item {
    width: calc(50% - 15px);
  }

  .page-service-single {
    padding: 50px 0;
  }

  .service-sidebar {
    position: initial;
    margin: 0 0 30px 0;
  }

  .service-catagery-list {
    margin-bottom: 30px;
  }

  .service-catagery-list h3 {
    padding: 15px 20px;
  }

  .service-catagery-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .sidebar-cta-box {
    padding: 30px;
  }

  .sidebar-cta-logo,
  .sidebar-cta-content,
  .sidebar-cta-content h3 {
    margin-bottom: 25px;
  }

  .sidebar-cta-logo img {
    max-width: 220px;
  }

  .sidebar-cta-content h3 {
    font-size: 20px;
  }

  .sidebar-cta-content ul li {
    margin-bottom: 15px;
  }

  .service-feature-image {
    margin-bottom: 30px;
  }

  .service-feature-image img {
    aspect-ratio: 1 / 0.5;
  }

  .service-entry {
    margin-bottom: 30px;
  }

  .service-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry ul {
    gap: 15px;
  }

  .service-entry ul li {
    width: calc(50% - 7.5px);
    padding-left: 18px;
  }

  .benefit-service-box,
  .service-why-choose-box,
  .service-entry-process {
    margin-top: 30px;
  }

  .benefit-services-list {
    gap: 15px;
    margin: 30px 0;
  }

  .benefit-services-list .benefit-item {
    width: calc(25% - 11.25px);
  }

  .benefit-item-content h3 {
    font-size: 18px;
  }

  .service-entry-counter-box {
    padding: 40px 50px 40px 30px;
  }

  .service-entry-video,
  .service-entry-process-steps,
  .service-entry-process .contact-us-now-text {
    margin-top: 30px;
  }

  .service-process-step-no,
  .service-process-step-body {
    margin-bottom: 20px;
  }

  .service-process-step-body .icon-box {
    margin-right: 10px;
  }

  .service-process-step-body .icon-box img {
    max-width: 40px;
  }

  .service-process-step-title {
    width: calc(100% - 50px);
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.417em;
  }

  .post-entry h2 {
    font-size: 36px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 25px 25px;
    background-size: 50px;
    padding: 25px 25px 25px 85px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .tag-links {
    font-size: 22px;
  }

  .post-tags .tag-links a {
    font-size: 14px;
    padding: 12px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-projects {
    padding: 50px 0 30px;
  }

  .project-img img {
    aspect-ratio: 1 / 0.87;
  }

  .project-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .project-content p {
    margin-bottom: 15px;
  }

  .page-project-single {
    padding: 50px 0;
  }

  .project-sidebar {
    position: initial;
    margin: 0 0 30px 0;
  }

  .project-catagery-list {
    margin-bottom: 30px;
  }

  .project-catagery-list h3 {
    padding: 15px 20px;
  }

  .project-single-slider {
    margin-bottom: 30px;
  }

  .project-single-slider .swiper-slide img {
    aspect-ratio: 1 / 0.55;
  }

  .project-entry {
    margin-bottom: 30px;
  }

  .project-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .project-entry p {
    margin-bottom: 15px;
  }

  .project-entry ul li {
    margin-bottom: 10px;
  }

  .project-challenge-box {
    margin-top: 30px;
  }

  .project-challenge-item-list {
    gap: 30px;
    margin-top: 30px;
  }

  .project-challenge-content h3 {
    margin-bottom: 15px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-member-info-box,
  .team-member-about {
    margin-bottom: 50px;
  }

  .team-member-info-box {
    gap: 30px;
  }

  .team-member-image,
  .team-member-content {
    width: 100%;
  }

  .team-member-image img {
    aspect-ratio: 1 / 0.75;
  }

  .member-content-body {
    padding: 30px;
  }

  .member-content-body ul li {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .member-social-list {
    margin-top: 30px;
  }

  .team-member-about-list ul {
    gap: 15px 10px;
  }

  .team-member-about-list ul li {
    width: calc(50% - 5px);
    padding-left: 12px;
  }

  .team-member-experience {
    gap: 30px;
  }

  .team-experience-box,
  .team-contact-form {
    width: 100%;
  }

  .team-experience-skills {
    margin-top: 30px;
  }

  .team-contact-form {
    padding: 30px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .page-pricing {
    padding: 50px 0;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .faq-sidebar {
    position: initial;
    top: 0px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .faq-catagery-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .page-faqs-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0 25px;
  }

  .contact-us-form,
  .contact-us-image {
    width: 100%;
  }

  .contact-us-form {
    padding: 50px;
  }

  .contact-form .form-control {
    padding: 12px 15px;
  }

  .contact-us-image,
  .contact-us-image figure,
  .contact-us-image img {
    height: auto;
  }

  .contact-us-image img {
    aspect-ratio: 1 / 0.9;
  }

  .contact-info {
    padding: 25px 0 20px;
  }

  .contact-info-item {
    padding: 30px;
  }

  .contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .contact-info-item .icon-box img {
    max-width: 26px;
  }

  .contact-info-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contact-info-content p {
    margin-bottom: 20px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 450px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 30px;
  }

  .error-page-image img {
    max-width: 80%;
  }

  .open-menu-btn {
    display: block !important;
  }

  .serviceSec .service-item {
    width: 31.3%;
  }

  .PrimaryTitle {
    font-size: 18px !important;
    line-height: 32px;
  }

  .IndustrySec {
    padding-top: 20px;
  }

  .industryBanner img {
    height: 120px;
    object-fit: cover;
  }

  /* Basic offcanvas container styles */
  .privacy-policy-list {
    margin-top: 15px;
  }

  .navbar-collapse {
    display: none !important;
  }

  .accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
  }

  .accordion-content {
    padding-left: 20px;
    display: none;
  }

  .plus-minus {
    font-size: 18px;
    margin-left: 10px;
  }

  .accordion-container.accordion-open .plus-minus {
    content: "−";
  }

  .topbar-contact-info ul {
    gap: 20px;
  }

  .topbar-login-btn {
    margin-right: 20px;
    padding-right: 20px;
  }

  .topbar-login-btn ul li {
    margin-right: 15px;
  }

  .topbar-login-btn ul li::before {
    right: -13px;
  }

  .topbar-social-links ul li {
    margin-right: 10px;
  }

  .navbar {
    padding: 0px 0;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .btn-default {
    padding: 14px 42px 14px 14px;
  }

  .btn-default::before {
    right: 14px;
    width: 22px;
    height: 22px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title-content {
    margin-top: 15px;
  }

  .section-row .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 45px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 80px 0;
  }

  .hero.hero-slider-layout .hero-pagination {
    bottom: 30px;
    padding-left: 15px;
  }

  .hero-footer {
    padding: 15px 20px;
    margin-top: 40px;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-us-images {
    width: 100%;
    max-width: 75%;
    margin: 0 auto 30px;
    padding: 20px 225px 140px 30px;
  }

  .about-image-2 {
    max-width: 270px;
  }

  .about-image-circle a img {
    max-width: 120px;
  }

  .about-us-body {
    gap: 20px;
  }

  .about-body-item {
    width: calc(50% - 10px);
  }

  .about-body-item .icon-box {
    margin-right: 10px;
  }

  .about-body-item .icon-box img {
    max-width: 35px;
  }

  .about-body-item-content {
    width: calc(100% - 45px);
  }

  .about-us-footer {
    margin-top: 30px;
    padding-top: 30px;
  }

  .about-us-footer-counter h2 {
    font-size: 60px;
  }

  .about-us-footer-counter {
    width: calc(22% - 20px);
  }

  .about-us-footer-content {
    width: calc(50% - 20px);
  }

  .our-services {
    padding: 50px 0;
  }

  .service-item {
    width: 50%;
  }

  .service-item:nth-of-type(-n + 4) {
    border-top-width: 0;
  }

  .service-item:nth-of-type(-n + 2) {
    border-top-width: 1px;
  }

  .service-image img {
    aspect-ratio: 1 / 1.1;
  }

  .service-content {
    right: 30px;
    left: 30px;
    bottom: 30px;
  }

  .service-title img {
    max-width: 45px;
    margin-bottom: 15px;
  }

  .service-item:hover .service-body {
    margin-top: 10px;
  }

  .contact-us-now-text {
    margin-top: 30px;
  }

  .scrolling-ticker {
    padding: 50px 0 25px;
  }

  .scrolling-ticker-box {
    --gap: 30px;
  }

  .scrolling-ticker-box .scrolling-content span {
    font-size: 70px;
  }

  .scrolling-ticker-box .scrolling-content span img {
    max-width: 35px;
    margin-right: 30px;
  }

  .why-choose-us {
    padding: 25px 0 50px;
  }

  .why-choose-content {
    margin-bottom: 30px;
  }

  .why-choose-list ul li {
    margin-bottom: 10px;
  }

  .why-choose-btn {
    margin-top: 30px;
  }

  .why-choose-image {
    margin: 0;
  }

  .why-choose-image img {
    aspect-ratio: 1 / 1.133;
  }

  .why-choose-author-info,
  .why-choose-author-skillbar {
    margin-bottom: 30px;
  }

  .why-choose-author-info h3 {
    margin-bottom: 20px;
  }

  .skills-progress-bar {
    margin-bottom: 20px;
  }

  .how-we-work {
    padding: 50px 0;
  }

  .work-counter-list {
    gap: 30px 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .work-counter-list-item {
    text-align: center;
    width: calc(25% - 30px);
  }

  .work-counter-item-header {
    display: block;
    margin-bottom: 10px;
  }

  .work-counter-item-header .icon-box {
    margin: 0 0 10px 0;
  }

  .work-counter-item-no {
    width: 100%;
  }

  .work-counter-item-no h2 {
    font-size: 36px;
  }

  .how-work-content {
    margin-bottom: 30px;
  }

  .work-step-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .how-work-image img {
    aspect-ratio: 1 / 0.7;
    object-position: top center;
  }

  .our-achivements {
    padding: 50px 0;
  }

  .achivement-image {
    margin: 0 0 30px 0;
  }

  .achivement-image img {
    aspect-ratio: 1 / 0.7;
    object-position: top center;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    margin-bottom: 10px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    top: 4px;
    height: 18px;
    width: 18px;
  }

  .our-team {
    padding: 50px 0;
  }

  .our-company-slider {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .team-contact-circle a img {
    max-width: 110px;
  }

  .team-body {
    left: 60px;
    padding: 15px 20px;
  }

  .contact-us-now-text.team-footer {
    margin-top: 10px;
  }

  .intro-video {
    padding: 100px 0;
  }

  .intro-video-play-button {
    margin-bottom: 40px;
  }

  .intro-video-content {
    text-align: center;
  }

  .our-pricing {
    padding: 50px 0;
  }

  .our-pricing-swich {
    margin-bottom: 30px;
    gap: 20px;
  }

  .our-pricing-swich .form-check-label {
    font-size: 16px;
  }

  .our-pricing-swich.form-switch .form-check-input {
    width: 60px;
    height: 32px;
    background-size: 22px auto;
  }

  .pricing-item {
    padding: 30px;
  }

  .pricing-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .pricing-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .pricing-body {
    margin-bottom: 20px;
  }

  .pricing-body h2 {
    font-size: 36px;
  }

  .pricing-btn .btn-default {
    padding: 14px;
  }

  .pricing-benefit-list {
    margin-top: 10px;
  }

  .pricing-benefit-list ul {
    gap: 15px 30px;
  }

  .pricing-benefit-list ul li img {
    max-width: 18px;
    margin-right: 10px;
  }

  .our-testimonial {
    padding: 50px 0;
  }

  .testimonial-title-box {
    position: initial;
    margin: 0 0 30px 0;
  }

  .client-content-box {
    margin-bottom: 30px;
  }

  .testimonial-content-box {
    margin-left: 0;
  }

  .testimonial-company-logo {
    margin-bottom: 20px;
  }

  .testimonial-content {
    margin-bottom: 30px;
  }

  .author-content h3 {
    font-size: 20px;
  }

  .our-facility {
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .facility-item {
    width: calc(33.33% - 20px);
  }

  .facility-item .icon-box {
    margin-bottom: 15px;
  }

  .facility-item .icon-box img {
    max-width: 40px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-featured-image {
    margin-bottom: 0px;
  }

  .post-item-content {
    margin-bottom: 20px;
  }

  .main-footer {
    padding: 50px 0 0;
  }

  .about-footer {
    max-width: 100%;
    margin-right: 30px;
  }

  .about-footer p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .footer-links h3 {
    margin-bottom: 20px;
  }

  .footer-privacy-policy {
    margin-top: 40px;
  }

  .privacy-policy-list ul li {
    padding-right: 20px;
    margin-right: 20px;
  }

  .footer-copyright {
    padding: 30px 0;
  }

  /* .page-header {
    padding: 80px 0;
  } */

  .page-header-box h1 {
    font-size: 45px;
    margin-bottom: 10px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .our-approach-content {
    margin-bottom: 30px;
  }

  .our-approach-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .our-approach-circle img {
    max-width: 120px;
  }

  .what-we-do {
    padding: 50px 0;
  }

  .what-we-do-image {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .what-we-do-image-box {
    padding-left: 50px;
  }

  .what-we-do-circle img {
    max-width: 100px;
  }

  .what-we-do-body {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .what-we-do-body ul {
    gap: 15px 20px;
  }

  .what-we-list {
    gap: 30px 20px;
  }

  .what-we-item {
    width: calc(50% - 10px);
  }

  .what-we-item .icon-box {
    margin-right: 10px;
  }

  .what-we-item .icon-box img {
    max-width: 35px;
  }

  .what-we-item-content {
    width: calc(100% - 45px);
  }

  .our-benefit {
    padding: 50px 0;
  }

  .our-benefit-content {
    position: static;
    margin-bottom: 30px;
  }

  .our-benefit-list {
    gap: 30px;
  }

  .benefit-item .icon-box {
    margin-bottom: 15px;
  }

  .benefit-item-content h3 {
    margin-bottom: 10px;
  }

  .benefit-footer {
    margin-top: 30px;
  }

  .our-opportunities {
    padding: 50px 0 0;
  }

  .opportunities-image,
  .opportunities-content {
    width: 100%;
  }

  .opportunities-image img {
    aspect-ratio: 1 / 0.6;
  }

  .opportunities-content .section-title {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .opportunities-body {
    margin-bottom: 40px;
  }

  .opportunities-body ul {
    gap: 15px 20px;
  }

  .opportunities-video-content {
    padding: 20px 40px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .faqs-image {
    margin-bottom: 30px;
  }

  .faq-img img {
    aspect-ratio: 1 / 0.7;
  }

  .company-experience {
    bottom: 20px;
    left: 20px;
    padding: 15px 25px 15px 15px;
  }

  .company-experience h3 {
    font-size: 36px;
  }

  .faqs-content {
    margin-left: 0;
  }

  .page-services {
    padding: 50px 0 30px;
  }

  .page-services .service-item-list .service-item {
    width: calc(50% - 15px);
  }

  .page-service-single {
    padding: 50px 0;
  }

  .service-sidebar {
    position: initial;
    margin: 0 0 30px 0;
  }

  .service-catagery-list {
    margin-bottom: 30px;
  }

  .service-catagery-list h3 {
    padding: 15px 20px;
  }

  .service-catagery-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .sidebar-cta-box {
    padding: 30px;
  }

  .sidebar-cta-logo,
  .sidebar-cta-content,
  .sidebar-cta-content h3 {
    margin-bottom: 25px;
  }

  .sidebar-cta-logo img {
    max-width: 220px;
  }

  .sidebar-cta-content h3 {
    font-size: 20px;
  }

  .sidebar-cta-content ul li {
    margin-bottom: 15px;
  }

  .service-feature-image {
    margin-bottom: 30px;
  }

  .service-feature-image img {
    aspect-ratio: 1 / 0.5;
  }

  .service-entry {
    margin-bottom: 30px;
  }

  .service-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry ul {
    gap: 15px;
  }

  .service-entry ul li {
    width: calc(50% - 7.5px);
    padding-left: 18px;
  }

  .benefit-service-box,
  .service-why-choose-box,
  .service-entry-process {
    margin-top: 30px;
  }

  .benefit-services-list {
    gap: 15px;
    margin: 30px 0;
  }

  .benefit-services-list .benefit-item {
    width: calc(25% - 11.25px);
  }

  .benefit-item-content h3 {
    font-size: 18px;
  }

  .service-entry-counter-box {
    padding: 40px 50px 40px 30px;
  }

  .service-entry-video,
  .service-entry-process-steps,
  .service-entry-process .contact-us-now-text {
    margin-top: 30px;
  }

  .service-process-step-no,
  .service-process-step-body {
    margin-bottom: 20px;
  }

  .service-process-step-body .icon-box {
    margin-right: 10px;
  }

  .service-process-step-body .icon-box img {
    max-width: 40px;
  }

  .service-process-step-title {
    width: calc(100% - 50px);
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.417em;
  }

  .post-entry h2 {
    font-size: 36px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 25px 25px;
    background-size: 50px;
    padding: 25px 25px 25px 85px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .tag-links {
    font-size: 22px;
  }

  .post-tags .tag-links a {
    font-size: 14px;
    padding: 12px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-projects {
    padding: 50px 0 30px;
  }

  .project-img img {
    aspect-ratio: 1 / 0.87;
  }

  .project-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .project-content p {
    margin-bottom: 15px;
  }

  .page-project-single {
    padding: 50px 0;
  }

  .project-sidebar {
    position: initial;
    margin: 0 0 30px 0;
  }

  .project-catagery-list {
    margin-bottom: 30px;
  }

  .project-catagery-list h3 {
    padding: 15px 20px;
  }

  .project-single-slider {
    margin-bottom: 30px;
  }

  .project-single-slider .swiper-slide img {
    aspect-ratio: 1 / 0.55;
  }

  .project-entry {
    margin-bottom: 30px;
  }

  .project-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .project-entry p {
    margin-bottom: 15px;
  }

  .project-entry ul li {
    margin-bottom: 10px;
  }

  .project-challenge-box {
    margin-top: 30px;
  }

  .project-challenge-item-list {
    gap: 30px;
    margin-top: 30px;
  }

  .project-challenge-content h3 {
    margin-bottom: 15px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-member-info-box,
  .team-member-about {
    margin-bottom: 50px;
  }

  .team-member-info-box {
    gap: 30px;
  }

  .team-member-image,
  .team-member-content {
    width: 100%;
  }

  .team-member-image img {
    aspect-ratio: 1 / 0.75;
  }

  .member-content-body {
    padding: 30px;
  }

  .member-content-body ul li {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .member-social-list {
    margin-top: 30px;
  }

  .team-member-about-list ul {
    gap: 15px 10px;
  }

  .team-member-about-list ul li {
    width: calc(50% - 5px);
    padding-left: 12px;
  }

  .team-member-experience {
    gap: 30px;
  }

  .team-experience-box,
  .team-contact-form {
    width: 100%;
  }

  .team-experience-skills {
    margin-top: 30px;
  }

  .team-contact-form {
    padding: 30px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .page-pricing {
    padding: 50px 0;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .faq-sidebar {
    position: initial;
    top: 0px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .faq-catagery-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .page-faqs-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0 25px !important;
  }

  .contact-us-form,
  .contact-us-image {
    width: 100%;
  }

  .contact-us-form {
    padding: 50px;
  }

  .contact-form .form-control {
    padding: 12px 15px;
  }

  .contact-us-image,
  .contact-us-image figure,
  .contact-us-image img {
    height: auto;
  }

  .contact-us-image img {
    aspect-ratio: 1 / 0.9;
  }

  .contact-info {
    padding: 25px 0 20px;
  }

  .contact-info-item {
    padding: 30px;
  }

  .contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .contact-info-item .icon-box img {
    max-width: 26px;
  }

  .contact-info-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contact-info-content p {
    margin-bottom: 20px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 450px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 30px;
  }

  .error-page-image img {
    max-width: 80%;
  }

  .open-menu-btn {
    display: block !important;
  }

  .serviceSec .service-item {
    width: 31.3%;
  }

  .PrimaryTitle {
    font-size: 18px !important;
    line-height: 32px;
  }

  .IndustrySec {
    padding-top: 20px;
  }

  .industryBanner img {
    height: 120px;
    object-fit: cover;
  }

  .IndustrySec .section-title {
    margin-bottom: 5px;
  }

  .what-we-do-content {
    padding-top: 40px;
  }

  /* .customBanner {
    height: 250px;
  } */

  #our-approach {
    padding-top: 40px;
  }

  #end-to-end {
    padding-top: 40px;
  }

  #businessTransformation {
    padding-top: 40px;
  }

  #cloudService {
    padding-top: 40px;
  }

  .offcanvas-menu-items li a {
    font-weight: 500;
    transition: 0.3s;
    line-height: 2.2;
  }

  .offcanvas-menu-items>li>a {
    font-size: 18px;
  }

  ul.sub-accordion-content li a {
    font-size: 14px !important;
  }
}

@media only screen and (max-width: 767px) {
  .cstom-swipper-home {
    height: 790px !important;
  }

  .home-btn-video {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .main-header .topbar .row .col-sm-12.col-md-5 {
    display: none;
  }

  .topbar-contact-info ul {
    justify-content: left;
  }

  .topbar-contact-info {
    text-align: left;
  }

  .topbar-social-login {
    margin-top: 25px;
  }

  .section-title h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  /* .hero::before {
    background: linear-gradient(90deg,
        #6da12a 0%,
        #105185 51.13%,
        rgba(226, 64, 59, 0.02) 63.85%);
  } */

  .hero-body {
    gap: 15px 40px;
  }

  .hero-body .video-play-button a {
    height: 45px;
    width: 45px;
  }

  .hero-body .video-play-button a img {
    max-width: 16px;
  }

  .hero-footer {
    width: 100%;
    padding: 15px;
    margin-top: 30px;
  }

  .hero-footer ul {
    justify-content: center;
    gap: 20px 25px;
  }

  .hero-footer ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
  }

  .hero-footer ul li img {
    margin: 0 auto;
    margin-bottom: 8px;
  }

  .about-us-images {
    max-width: 100%;
    padding: 15px 100px 130px 20px;
  }

  .about-image-2 {
    max-width: 200px;
    bottom: 25px;
    right: 30px;
  }

  .about-image-circle {
    top: 10px;
    right: 0;
  }

  .about-image-circle a img {
    max-width: 100px;
  }

  .about-body-item {
    width: 100%;
  }

  .about-body-item .icon-box {
    margin-right: 5px;
  }

  .about-body-item .icon-box img {
    max-width: 30px;
  }

  .about-body-item-content {
    width: 100%;
  }

  .about-us-footer {
    gap: 20px;
  }

  .about-us-footer-counter {
    width: calc(28% - 10px);
  }

  .about-us-footer-counter h2 {
    font-size: 40px;
  }

  .about-us-footer-content {
    width: calc(72% - 10px);
  }

  .about-us-footer-content h3 {
    font-size: 16px;
  }

  .about-us-footer-button {
    text-align: left;
    width: 100%;
  }

  .service-item {
    width: 100%;
  }

  .service-item:nth-of-type(-n + 2) {
    border-top-width: 0;
  }

  .service-item:nth-of-type(-n + 1) {
    border-top-width: 1px;
  }

  .service-image img {
    aspect-ratio: 1 / 0.95;
  }

  .service-content {
    right: 20px;
    left: 20px;
    bottom: 20px;
  }

  .service-title h3 {
    font-size: 18px;
  }

  .contact-us-now-text p i {
    font-size: 16px;
    margin-right: 2px;
  }

  .scrolling-ticker-box {
    --gap: 20px;
  }

  .scrolling-ticker-box .scrolling-content span {
    font-size: 40px;
  }

  .scrolling-ticker-box .scrolling-content span img {
    width: 25px;
    margin-right: 20px;
  }

  .why-choose-list ul li {
    font-size: 14px;
  }

  .why-choose-image {
    margin-bottom: 30px;
  }

  .why-choose-author-info h3 {
    font-size: 18px;
  }

  .why-choose-author-content h3 {
    font-size: 18px;
  }

  .work-counter-list {
    gap: 20px;
  }

  .work-counter-list-item {
    width: calc(50% - 10px);
  }

  .work-counter-item-header .icon-box img {
    max-width: 40px;
  }

  .work-counter-item-no h2 {
    font-size: 26px;
  }

  .work-step-item .icon-box {
    margin-right: 15px;
  }

  .work-step-item .icon-box img {
    max-width: 40px;
  }

  .work-step-content {
    width: calc(100% - 55px);
  }

  .work-step-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .how-work-image img {
    aspect-ratio: 1 / 0.9;
    object-position: center center;
  }

  .achivement-image img {
    aspect-ratio: 1 / 0.884;
    object-position: center center;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    padding-right: 30px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    height: 14px;
    width: 14px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 0;
  }

  .section-row .section-title {
    text-align: center;
  }

  .team-contact-circle {
    text-align: center;
    margin-top: 20px;
  }

  .team-contact-circle a img {
    max-width: 95px;
  }

  .team-image a img {
    aspect-ratio: 1 / 1.15;
  }

  .team-body {
    padding: 15px;
  }

  .team-content {
    width: calc(100% - 50px);
  }

  .team-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .team-social-list {
    margin-left: 10px;
  }

  .intro-video-play-button a {
    width: 70px;
    height: 70px;
  }

  .intro-video-play-button a i {
    font-size: 28px;
  }

  .pricing-item {
    padding: 20px;
  }

  .pricing-header h2 {
    font-size: 26px;
  }

  .pricing-header h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .pricing-body h2 {
    font-size: 26px;
  }

  .pricing-benefit-list ul {
    gap: 15px;
  }

  .pricing-benefit-list ul li {
    width: calc(50% - 7.5px);
    font-size: 12px;
  }

  .pricing-benefit-list ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .client-logo {
    margin-right: 15px;
    padding-right: 15px;
  }

  .testimonial-company-logo {
    margin-bottom: 15px;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .author-image {
    margin-right: 10px;
  }

  .author-image img {
    max-width: 60px;
  }

  .author-content {
    width: calc(100% - 70px);
  }

  .author-content h3 {
    font-size: 18px;
  }

  .testimonial-pagination {
    font-size: 20px;
    bottom: 22px;
  }

  .testimonial-pagination span {
    font-size: 18px;
  }

  .our-facility {
    gap: 30px 20px;
  }

  .facility-item {
    width: calc(50% - 10px);
  }

  .facility-item .icon-box {
    margin-bottom: 10px;
  }

  .facility-item-content h3 {
    font-size: 18px;
  }

  .post-featured-image img {
    aspect-ratio: 1 / 0.72;
  }

  .post-item-content h3 {
    font-size: 18px;
  }

  .about-footer {
    margin: 0 0 30px 0;
  }

  .about-footer p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-links h3 {
    font-size: 18px;
  }

  .footer-privacy-policy {
    display: block;
    margin-top: 0;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-logo img {
    max-width: 170px;
  }

  .privacy-policy-list ul {
    text-align: center;
  }

  .privacy-policy-list ul li {
    padding-right: 10px;
    margin-right: 10px;
  }

  .footer-copyright {
    padding: 15px 0;
    display: block;
    text-align: center;
  }

  .footer-go-to-top-btn {
    margin-top: 15px;
  }

  .footer-go-to-top-btn a i {
    font-size: 16px;
    margin-left: 5px;
  }

  .page-header-box h1 {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .our-approach-image {
    max-width: 100%;
    padding-left: 100px;
  }

  .our-approach-image-2 {
    max-width: 180px;
  }

  .our-approach-image-2 figure img {
    border-width: 5px;
  }

  .our-approach-circle img {
    max-width: 100px;
  }

  .what-we-do-image {
    gap: 20px;
  }

  .what-we-do-img-1,
  .what-we-do-img-2 {
    width: calc(50% - 10px);
  }

  .what-we-do-image-box {
    padding-left: 40px;
  }

  .what-we-do-circle img {
    max-width: 80px;
  }

  .what-we-do-body {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .what-we-do-body ul {
    gap: 10px 20px;
  }

  .what-we-do-body ul li {
    width: 100%;
  }

  .what-we-list {
    gap: 20px 10px;
  }

  .what-we-item {
    width: 100%;
  }

  .what-we-item-content {
    width: 100%;
  }

  .benefit-item {
    width: 100%;
  }

  .benefit-item .icon-box {
    margin-bottom: 10px;
  }

  .benefit-item-content h3 {
    font-size: 18px;
  }

  .benefit-footer {
    margin-top: 20px;
  }

  .benefit-footer .benefit-footer-content {
    padding: 8px 15px;
  }

  .opportunities-image img {
    aspect-ratio: 1 / 0.8;
  }

  .opportunities-content .section-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .opportunities-body ul {
    gap: 10px 20px;
  }

  .opportunities-body ul li {
    width: 100%;
  }

  .opportunities-body {
    margin-bottom: 30px;
  }

  .opportunities-image-video,
  .opportunities-video-content {
    width: 100%;
  }

  .opportunities-video-content {
    padding: 20px;
  }

  .opportunities-video-content p {
    margin-bottom: 10px;
  }

  .video-contact-content h3 {
    font-size: 18px;
  }

  .faq-img img {
    aspect-ratio: 1 / 0.9;
  }

  .company-experience {
    padding: 10px 15px 10px 10px;
  }

  .company-experience h3 {
    font-size: 26px;
    margin-bottom: 0;
  }

  .page-services .service-item-list .service-item {
    width: 100%;
  }

  .service-catagery-list h3 {
    font-size: 18px;
    padding: 12px 20px;
  }

  .service-catagery-list ul,
  .sidebar-cta-box {
    padding: 20px;
  }

  .sidebar-cta-logo,
  .sidebar-cta-content,
  .sidebar-cta-content h3 {
    margin-bottom: 20px;
  }

  .sidebar-cta-logo img {
    max-width: 180px;
  }

  .sidebar-cta-content h3 {
    font-size: 18px;
  }

  .service-feature-image {
    margin-bottom: 20px;
  }

  .service-feature-image img {
    aspect-ratio: 1 / 0.7;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry ul li {
    width: 100%;
  }

  .benefit-services-list .benefit-item {
    width: calc(50% - 7.5px);
  }

  .service-entry-image-counter {
    gap: 20px;
  }

  .service-entry-counter-box {
    padding: 40px 30px 40px 30px;
  }

  .service-entry-counter-box {
    width: 100%;
  }

  .service-entry-counter h3 {
    font-size: 18px;
  }

  .service-entry-video-image img {
    aspect-ratio: 1 / 0.65;
  }

  .service-process-step-item {
    width: 100%;
  }

  .service-process-step-no {
    margin-bottom: 15px;
  }

  .service-process-step-body {
    margin-bottom: 10px;
  }

  .service-process-step-no {
    padding: 6px 10px;
  }

  .service-process-step-title h3 {
    font-size: 18px;
  }

  .service-entry-process .contact-us-now-text p {
    text-align: center;
    font-size: 14px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 12px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 20px;
  }

  .project-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .project-content h3 {
    font-size: 18px;
  }

  .project-catagery-list h3 {
    font-size: 18px;
    padding: 12px 20px;
  }

  .project-catagery-list ul,
  .sidebar-cta-box {
    padding: 20px;
  }

  .project-catagery-list ul li {
    font-size: 18px;
  }

  .project-single-slider {
    margin-bottom: 20px;
  }

  .project-single-slider .swiper-slide img {
    aspect-ratio: 1 / 0.72;
  }

  .project-single-slider .project-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
  }

  .project-single-slider .project-pagination .swiper-pagination-bullet-active:before {
    height: 20px;
    width: 20px;
  }

  .project-entry h2 {
    font-size: 26px;
  }

  .project-challenge-item {
    display: block;
  }

  .project-challenge-image,
  .project-challenge-content {
    width: 100%;
  }

  .project-challenge-image {
    margin-bottom: 20px;
  }

  .project-challenge-image img {
    aspect-ratio: 1 / 0.72;
  }

  .project-challenge-content h3 {
    margin-bottom: 10px;
  }

  .team-member-info-box {
    gap: 20px;
  }

  .team-member-image img {
    aspect-ratio: 1 / 1.05;
  }

  .member-content-body {
    padding: 20px 15px;
  }

  .member-content-body ul li {
    font-size: 16px;
  }

  .member-content-body ul li span {
    width: 50%;
  }

  .member-social-list span {
    font-size: 18px;
  }

  .member-social-list ul li {
    margin-right: 10px;
  }

  .team-member-about-list ul li {
    width: 100%;
  }

  .team-experience-box .member-content-body ul li span {
    width: 75%;
  }

  .team-contact-form {
    padding: 20px;
  }

  .faq-catagery-list {
    padding: 20px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .contact-info-item {
    padding: 20px;
  }

  .contact-info-item .icon-box {
    margin-bottom: 15px;
  }

  .contact-info-content h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .contact-info-content p {
    margin-bottom: 15px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }

  /* Header Css  */
  .Logo-1 {
    margin-left: 2% !important;
  }

  .serviceSec .service-item {
    width: 48%;
  }

  /* 19 Nov */
  .our-approachBG1 .rightBgImg_service,
  .end-to-endBG1 .leftBgImg_service {
    padding: 15px !important;
  }
}

@media (max-width: 650px) {
  .serviceSec .service-item {
    width: 100%;
  }

  .navbar-collapse {
    display: none !important;
  }

  .accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
  }

  .plus-minus {
    font-size: 18px;
    margin-left: 10px;
  }

  .topbar-contact-info ul {
    gap: 20px;
  }

  .topbar-login-btn {
    margin-right: 20px;
    padding-right: 20px;
  }

  .topbar-login-btn ul li {
    margin-right: 15px;
  }

  .topbar-login-btn ul li::before {
    right: -13px;
  }

  .topbar-social-links ul li {
    margin-right: 10px;
  }

  .navbar {
    padding: 0px 0;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .btn-default {
    padding: 14px 42px 14px 14px;
  }

  .btn-default::before {
    right: 14px;
    width: 22px;
    height: 22px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title-content {
    margin-top: 15px;
  }

  .section-row .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 45px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .hero {
    padding: 90px 0 !important;
  }

  .index-body .slider {
    height: 200px;
  }

  .hero-body {
    padding-top: 0px !important;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 80px 0;
  }

  .hero.hero-slider-layout .hero-pagination {
    bottom: 30px;
    padding-left: 15px;
  }

  .hero-footer {
    padding: 15px 20px;
    margin-top: 40px;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-us-images {
    width: 100%;
    max-width: 75%;
    margin: 0 auto 30px;
    padding: 20px 225px 140px 30px;
  }

  .about-image-2 {
    max-width: 270px;
  }

  .about-image-circle a img {
    max-width: 120px;
  }

  .about-us-body {
    gap: 20px;
  }

  .about-body-item {
    width: calc(50% - 10px);
  }

  .about-body-item .icon-box {
    margin-right: 10px;
  }

  .about-body-item .icon-box img {
    max-width: 35px;
  }

  .about-body-item-content {
    width: calc(100% - 45px);
  }

  .about-us-footer {
    margin-top: 30px;
    padding-top: 30px;
  }

  .about-us-footer-counter h2 {
    font-size: 60px;
  }

  .about-us-footer-counter {
    width: calc(22% - 20px);
  }

  .about-us-footer-content {
    width: calc(50% - 20px);
  }

  .our-services {
    padding: 50px 0;
  }

  .service-item {
    width: 50%;
  }

  .service-item:nth-of-type(-n + 4) {
    border-top-width: 0;
  }

  .service-item:nth-of-type(-n + 2) {
    border-top-width: 1px;
  }

  .service-image img {
    aspect-ratio: 1 / 1.1;
  }

  .service-content {
    right: 30px;
    left: 30px;
    bottom: 30px;
  }

  .service-title img {
    max-width: 45px;
    margin-bottom: 15px;
  }

  .service-item:hover .service-body {
    margin-top: 10px;
  }

  .contact-us-now-text {
    margin-top: 30px;
  }

  .scrolling-ticker {
    padding: 50px 0 25px;
  }

  .scrolling-ticker-box {
    --gap: 30px;
  }

  .scrolling-ticker-box .scrolling-content span {
    font-size: 70px;
  }

  .scrolling-ticker-box .scrolling-content span img {
    max-width: 35px;
    margin-right: 30px;
  }

  .why-choose-us {
    padding: 25px 0 50px;
  }

  .why-choose-content {
    margin-bottom: 30px;
  }

  .why-choose-list ul li {
    margin-bottom: 10px;
  }

  .why-choose-btn {
    margin-top: 30px;
  }

  .why-choose-image {
    margin: 0;
  }

  .why-choose-image img {
    aspect-ratio: 1 / 1.133;
  }

  .why-choose-author-info,
  .why-choose-author-skillbar {
    margin-bottom: 30px;
  }

  .why-choose-author-info h3 {
    margin-bottom: 20px;
  }

  .skills-progress-bar {
    margin-bottom: 20px;
  }

  .how-we-work {
    padding: 50px 0;
  }

  .work-counter-list {
    gap: 30px 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .work-counter-list-item {
    text-align: center;
    width: calc(25% - 30px);
  }

  .work-counter-item-header {
    display: block;
    margin-bottom: 10px;
  }

  .work-counter-item-header .icon-box {
    margin: 0 0 10px 0;
  }

  .work-counter-item-no {
    width: 100%;
  }

  .work-counter-item-no h2 {
    font-size: 36px;
  }

  .how-work-content {
    margin-bottom: 30px;
  }

  .work-step-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .how-work-image img {
    aspect-ratio: 1 / 0.7;
    object-position: top center;
  }

  .our-achivements {
    padding: 50px 0;
  }

  .achivement-image {
    margin: 0 0 30px 0;
  }

  .achivement-image img {
    aspect-ratio: 1 / 0.7;
    object-position: top center;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    margin-bottom: 10px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    top: 4px;
    height: 18px;
    width: 18px;
  }

  .our-team {
    padding: 50px 0;
  }

  .our-company-slider {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .team-contact-circle a img {
    max-width: 110px;
  }

  .team-body {
    left: 60px;
    padding: 15px 20px;
  }

  .contact-us-now-text.team-footer {
    margin-top: 10px;
  }

  .intro-video {
    padding: 100px 0;
  }

  .intro-video-play-button {
    margin-bottom: 40px;
  }

  .intro-video-content {
    text-align: center;
  }

  .our-pricing {
    padding: 50px 0;
  }

  .our-pricing-swich {
    margin-bottom: 30px;
    gap: 20px;
  }

  .our-pricing-swich .form-check-label {
    font-size: 16px;
  }

  .our-pricing-swich.form-switch .form-check-input {
    width: 60px;
    height: 32px;
    background-size: 22px auto;
  }

  .pricing-item {
    padding: 30px;
  }

  .pricing-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .pricing-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .pricing-body {
    margin-bottom: 20px;
  }

  .pricing-body h2 {
    font-size: 36px;
  }

  .pricing-btn .btn-default {
    padding: 14px;
  }

  .pricing-benefit-list {
    margin-top: 10px;
  }

  .pricing-benefit-list ul {
    gap: 15px 30px;
  }

  .pricing-benefit-list ul li img {
    max-width: 18px;
    margin-right: 10px;
  }

  .our-testimonial {
    padding: 50px 0;
  }

  .testimonial-title-box {
    position: initial;
    margin: 0 0 30px 0;
  }

  .client-content-box {
    margin-bottom: 30px;
  }

  .testimonial-content-box {
    margin-left: 0;
  }

  .testimonial-company-logo {
    margin-bottom: 20px;
  }

  .testimonial-content {
    margin-bottom: 30px;
  }

  .author-content h3 {
    font-size: 20px;
  }

  .our-facility {
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .facility-item {
    width: calc(33.33% - 20px);
  }

  .facility-item .icon-box {
    margin-bottom: 15px;
  }

  .facility-item .icon-box img {
    max-width: 40px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-featured-image {
    margin-bottom: 0px;
  }

  .post-item-content {
    margin-bottom: 20px;
  }

  .main-footer {
    padding: 50px 0 0;
  }

  .about-footer {
    max-width: 100%;
    margin-right: 30px;
  }

  .about-footer p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .footer-links h3 {
    margin-bottom: 20px;
  }

  .footer-privacy-policy {
    margin-top: 40px;
  }

  .privacy-policy-list ul li {
    padding-right: 20px;
    margin-right: 20px;
  }

  .footer-copyright {
    padding: 30px 0;
  }

  .page-header {
    padding: 0px 0px !important;

  }

  .customBanner {
    height: 250px;
  }

  .page-header-box h1 {
    font-size: 45px;
    margin-bottom: 10px;
  }

  .our-approach {
    padding: 50px 0 !important;
  }

  .our-approach-content {
    margin-bottom: 30px;
  }

  .our-approach-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .our-approach-circle img {
    max-width: 120px;
  }

  .what-we-do {
    padding: 50px 0;
  }

  .what-we-do-image {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .what-we-do-image-box {
    padding-left: 50px;
  }

  .what-we-do-circle img {
    max-width: 100px;
  }

  .what-we-do-body {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .what-we-do-body ul {
    gap: 15px 20px;
  }

  .what-we-list {
    gap: 30px 20px;
  }

  .what-we-item {
    width: calc(50% - 10px);
  }

  .what-we-item .icon-box {
    margin-right: 10px;
  }

  .what-we-item .icon-box img {
    max-width: 35px;
  }

  .what-we-item-content {
    width: calc(100% - 45px);
  }

  .our-benefit {
    padding: 50px 0;
  }

  .our-benefit-content {
    position: static;
    margin-bottom: 30px;
  }

  .our-benefit-list {
    gap: 30px;
  }

  .benefit-item .icon-box {
    margin-bottom: 15px;
  }


  .benefit-item-content h3 {
    margin-bottom: 10px;
  }

  .benefit-footer {
    margin-top: 30px;
  }

  .our-opportunities {
    padding: 50px 0 0;
  }

  .opportunities-image,
  .opportunities-content {
    width: 100%;
  }

  .opportunities-image img {
    aspect-ratio: 1 / 0.6;
  }

  .opportunities-content .section-title {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .opportunities-body {
    margin-bottom: 40px;
  }

  .opportunities-body ul {
    gap: 15px 20px;
  }

  .opportunities-video-content {
    padding: 20px 40px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .faqs-image {
    margin-bottom: 30px;
  }

  .faq-img img {
    aspect-ratio: 1 / 0.7;
  }

  .company-experience {
    bottom: 20px;
    left: 20px;
    padding: 15px 25px 15px 15px;
  }

  .company-experience h3 {
    font-size: 36px;
  }

  .faqs-content {
    margin-left: 0;
  }

  .page-services {
    padding: 50px 0 30px;
  }

  .page-services .service-item-list .service-item {
    width: calc(50% - 15px);
  }

  .page-service-single {
    padding: 50px 0;
  }

  .service-sidebar {
    position: initial;
    margin: 0 0 30px 0;
  }

  .service-catagery-list {
    margin-bottom: 30px;
  }

  .service-catagery-list h3 {
    padding: 15px 20px;
  }

  .service-catagery-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .sidebar-cta-box {
    padding: 30px;
  }

  .sidebar-cta-logo,
  .sidebar-cta-content,
  .sidebar-cta-content h3 {
    margin-bottom: 25px;
  }

  .sidebar-cta-logo img {
    max-width: 220px;
  }

  .sidebar-cta-content h3 {
    font-size: 20px;
  }

  .sidebar-cta-content ul li {
    margin-bottom: 15px;
  }

  .service-feature-image {
    margin-bottom: 30px;
  }

  .service-feature-image img {
    aspect-ratio: 1 / 0.5;
  }

  .service-entry {
    margin-bottom: 30px;
  }

  .service-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry ul {
    gap: 15px;
  }

  .service-entry ul li {
    width: calc(50% - 7.5px);
    padding-left: 18px;
  }

  .benefit-service-box,
  .service-why-choose-box,
  .service-entry-process {
    margin-top: 30px;
  }

  .benefit-services-list {
    gap: 15px;
    margin: 30px 0;
  }

  .benefit-services-list .benefit-item {
    width: calc(25% - 11.25px);
  }

  .benefit-item-content h3 {
    font-size: 18px;
  }

  .service-entry-counter-box {
    padding: 40px 50px 40px 30px;
  }

  .service-entry-video,
  .service-entry-process-steps,
  .service-entry-process .contact-us-now-text {
    margin-top: 30px;
  }

  .service-process-step-no,
  .service-process-step-body {
    margin-bottom: 20px;
  }

  .service-process-step-body .icon-box {
    margin-right: 10px;
  }

  .service-process-step-body .icon-box img {
    max-width: 40px;
  }

  .service-process-step-title {
    width: calc(100% - 50px);
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.417em;
  }

  .post-entry h2 {
    font-size: 36px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 25px 25px;
    background-size: 50px;
    padding: 25px 25px 25px 85px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .tag-links {
    font-size: 22px;
  }

  .post-tags .tag-links a {
    font-size: 14px;
    padding: 12px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-projects {
    padding: 50px 0 30px;
  }

  .project-img img {
    aspect-ratio: 1 / 0.87;
  }

  .project-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .project-content p {
    margin-bottom: 15px;
  }

  .page-project-single {
    padding: 50px 0;
  }

  .project-sidebar {
    position: initial;
    margin: 0 0 30px 0;
  }

  .project-catagery-list {
    margin-bottom: 30px;
  }

  .project-catagery-list h3 {
    padding: 15px 20px;
  }

  .project-single-slider {
    margin-bottom: 30px;
  }

  .project-single-slider .swiper-slide img {
    aspect-ratio: 1 / 0.55;
  }

  .project-entry {
    margin-bottom: 30px;
  }

  .project-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .project-entry p {
    margin-bottom: 15px;
  }

  .project-entry ul li {
    margin-bottom: 10px;
  }

  .project-challenge-box {
    margin-top: 30px;
  }

  .project-challenge-item-list {
    gap: 30px;
    margin-top: 30px;
  }

  .project-challenge-content h3 {
    margin-bottom: 15px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-member-info-box,
  .team-member-about {
    margin-bottom: 50px;
  }

  .team-member-info-box {
    gap: 30px;
  }

  .team-member-image,
  .team-member-content {
    width: 100%;
  }

  .team-member-image img {
    aspect-ratio: 1 / 0.75;
  }

  .member-content-body {
    padding: 30px;
  }

  .member-content-body ul li {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .member-social-list {
    margin-top: 30px;
  }

  .team-member-about-list ul {
    gap: 15px 10px;
  }

  .team-member-about-list ul li {
    width: calc(50% - 5px);
    padding-left: 12px;
  }

  .team-member-experience {
    gap: 30px;
  }

  .team-experience-box,
  .team-contact-form {
    width: 100%;
  }

  .team-experience-skills {
    margin-top: 30px;
  }

  .team-contact-form {
    padding: 30px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .page-pricing {
    padding: 50px 0;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .faq-sidebar {
    position: initial;
    top: 0px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .faq-catagery-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .page-faqs-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0 25px;
  }

  .contact-us-form,
  .contact-us-image {
    width: 100%;
  }

  .contact-us-form {
    padding: 50px;
  }

  .contact-form .form-control {
    padding: 12px 15px;
  }

  .contact-us-image,
  .contact-us-image figure,
  .contact-us-image img {
    height: auto;
  }

  .contact-us-image img {
    aspect-ratio: 1 / 0.9;
  }

  .contact-info {
    padding: 25px 0 20px;
  }

  .contact-info-item {
    padding: 30px;
  }

  .contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .contact-info-item .icon-box img {
    max-width: 26px;
  }

  .contact-info-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contact-info-content p {
    margin-bottom: 20px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 450px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 30px;
  }

  .error-page-image img {
    max-width: 80%;
  }

  .open-menu-btn {
    display: block !important;
  }

  .serviceSec .service-item {
    width: 31.3%;
  }

  .PrimaryTitle {
    font-size: 18px !important;
    line-height: 32px;
  }

  .IndustrySec {
    padding-top: 20px;
  }

  .industryBanner img {
    height: 120px;
    object-fit: cover;
  }

  .IndustrySec .section-title {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .hero {
    padding: 150px 0;
    margin-top: 100px;
  }

  .page-header {
    margin-top: 100px;
  }

  .main-header .topbar .row .col-sm-12.col-md-5 {
    display: none;
  }

  .topbar-contact-info ul {
    justify-content: left;
  }

  .topbar-contact-info {
    text-align: left;
  }

  .topbar-social-login {
    margin-top: 25px;
  }

  .section-title h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  /* .hero::before {
    background: linear-gradient(90deg,
        #6da12a 0%,
        #105185 51.13%,
        rgba(226, 64, 59, 0.02) 63.85%);
  } */

  .hero-body {
    gap: 15px 40px;
  }

  .hero-body .video-play-button a {
    height: 45px;
    width: 45px;
  }

  .hero-body .video-play-button a img {
    max-width: 16px;
  }

  .hero-footer {
    width: 100%;
    padding: 15px;
    margin-top: 30px;
  }

  .hero-footer ul {
    justify-content: center;
    gap: 20px 25px;
  }

  .hero-footer ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
  }

  .hero-footer ul li img {
    margin: 0 auto;
    margin-bottom: 8px;
  }

  .about-us-images {
    max-width: 100%;
    padding: 15px 100px 130px 20px;
  }

  .about-image-2 {
    max-width: 200px;
    bottom: 25px;
    right: 30px;
  }

  .about-image-circle {
    top: 10px;
    right: 0;
  }

  .about-image-circle a img {
    max-width: 100px;
  }

  .about-body-item {
    width: 100%;
  }

  .about-body-item .icon-box {
    margin-right: 5px;
  }

  .about-body-item .icon-box img {
    max-width: 30px;
  }

  .about-body-item-content {
    width: 100%;
  }

  .about-us-footer {
    gap: 20px;
  }

  .about-us-footer-counter {
    width: calc(28% - 10px);
  }

  .about-us-footer-counter h2 {
    font-size: 40px;
  }

  .about-us-footer-content {
    width: calc(72% - 10px);
  }

  .about-us-footer-content h3 {
    font-size: 16px;
  }

  .about-us-footer-button {
    text-align: left;
    width: 100%;
  }

  .service-item {
    width: 100%;
  }

  .service-item:nth-of-type(-n + 2) {
    border-top-width: 0;
  }

  .service-item:nth-of-type(-n + 1) {
    border-top-width: 1px;
  }

  .service-image img {
    aspect-ratio: 1 / 0.95;
  }

  .service-content {
    right: 20px;
    left: 20px;
    bottom: 20px;
  }

  .service-title h3 {
    font-size: 18px;
  }

  .contact-us-now-text p i {
    font-size: 16px;
    margin-right: 2px;
  }

  .scrolling-ticker-box {
    --gap: 20px;
  }

  .scrolling-ticker-box .scrolling-content span {
    font-size: 40px;
  }

  .scrolling-ticker-box .scrolling-content span img {
    width: 25px;
    margin-right: 20px;
  }

  .why-choose-list ul li {
    font-size: 14px;
  }

  .why-choose-image {
    margin-bottom: 30px;
  }

  .why-choose-author-info h3 {
    font-size: 18px;
  }

  .why-choose-author-content h3 {
    font-size: 18px;
  }

  .work-counter-list {
    gap: 20px;
  }

  .work-counter-list-item {
    width: calc(50% - 10px);
  }

  .work-counter-item-header .icon-box img {
    max-width: 40px;
  }

  .work-counter-item-no h2 {
    font-size: 26px;
  }

  .work-step-item .icon-box {
    margin-right: 15px;
  }

  .work-step-item .icon-box img {
    max-width: 40px;
  }

  .work-step-content {
    width: calc(100% - 55px);
  }

  .work-step-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .how-work-image img {
    aspect-ratio: 1 / 0.9;
    object-position: center center;
  }

  .achivement-image img {
    aspect-ratio: 1 / 0.884;
    object-position: center center;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    padding-right: 30px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    height: 14px;
    width: 14px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 0;
  }

  .section-row .section-title {
    text-align: center;
  }

  .team-contact-circle {
    text-align: center;
    margin-top: 20px;
  }

  .team-contact-circle a img {
    max-width: 95px;
  }

  .team-image a img {
    aspect-ratio: 1 / 1.15;
  }

  .team-body {
    padding: 15px;
  }

  .team-content {
    width: calc(100% - 50px);
  }

  .team-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .team-social-list {
    margin-left: 10px;
  }

  .intro-video-play-button a {
    width: 70px;
    height: 70px;
  }

  .intro-video-play-button a i {
    font-size: 28px;
  }

  .pricing-item {
    padding: 20px;
  }

  .pricing-header h2 {
    font-size: 26px;
  }

  .pricing-header h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .pricing-body h2 {
    font-size: 26px;
  }

  .pricing-benefit-list ul {
    gap: 15px;
  }

  .pricing-benefit-list ul li {
    width: calc(50% - 7.5px);
    font-size: 12px;
  }

  .pricing-benefit-list ul li img {
    max-width: 16px;
    margin-right: 5px;
  }

  .client-logo {
    margin-right: 15px;
    padding-right: 15px;
  }

  .testimonial-company-logo {
    margin-bottom: 15px;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .author-image {
    margin-right: 10px;
  }

  .author-image img {
    max-width: 60px;
  }

  .author-content {
    width: calc(100% - 70px);
  }

  .author-content h3 {
    font-size: 18px;
  }

  .testimonial-pagination {
    font-size: 20px;
    bottom: 22px;
  }

  .testimonial-pagination span {
    font-size: 18px;
  }

  .our-facility {
    gap: 30px 20px;
  }

  .facility-item {
    width: calc(50% - 10px);
  }

  .facility-item .icon-box {
    margin-bottom: 10px;
  }

  .facility-item-content h3 {
    font-size: 18px;
  }

  .post-featured-image img {
    aspect-ratio: 1 / 0.72;
  }

  .post-item-content h3 {
    font-size: 18px;
  }

  .about-footer {
    margin: 0 0 30px 0;
  }

  .about-footer p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-links h3 {
    font-size: 18px;
  }

  .footer-privacy-policy {
    display: block;
    margin-top: 0;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-logo img {
    max-width: 170px;
  }

  .privacy-policy-list ul {
    text-align: center;
  }

  .privacy-policy-list ul li {
    padding-right: 10px;
    margin-right: 10px;
  }

  .footer-copyright {
    padding: 15px 0;
    display: block;
    text-align: center;
  }

  .footer-go-to-top-btn {
    margin-top: 15px;
  }

  .footer-go-to-top-btn a i {
    font-size: 16px;
    margin-left: 5px;
  }

  .page-header-box h1 {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .our-approach-image {
    max-width: 100%;
    padding-left: 100px;
  }

  .our-approach-image-2 {
    max-width: 180px;
  }

  .our-approach-image-2 figure img {
    border-width: 5px;
  }

  .our-approach-circle img {
    max-width: 100px;
  }

  .what-we-do-image {
    gap: 20px;
  }

  .what-we-do-img-1,
  .what-we-do-img-2 {
    width: calc(50% - 10px);
  }

  .what-we-do-image-box {
    padding-left: 40px;
  }

  .what-we-do-circle img {
    max-width: 80px;
  }

  .what-we-do-body {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .what-we-do-body ul {
    gap: 10px 20px;
  }

  .what-we-do-body ul li {
    width: 100%;
  }

  .what-we-list {
    gap: 20px 10px;
  }

  .what-we-item {
    width: 100%;
  }

  .what-we-item-content {
    width: 100%;
  }

  .benefit-item {
    width: 100%;
  }

  .benefit-item .icon-box {
    margin-bottom: 10px;
  }

  .benefit-item-content h3 {
    font-size: 18px;
  }

  .benefit-footer {
    margin-top: 20px;
  }

  .benefit-footer .benefit-footer-content {
    padding: 8px 15px;
  }

  .opportunities-image img {
    aspect-ratio: 1 / 0.8;
  }

  .opportunities-content .section-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .opportunities-body ul {
    gap: 10px 20px;
  }

  .opportunities-body ul li {
    width: 100%;
  }

  .opportunities-body {
    margin-bottom: 30px;
  }

  .opportunities-image-video,
  .opportunities-video-content {
    width: 100%;
  }

  .opportunities-video-content {
    padding: 20px;
  }

  .opportunities-video-content p {
    margin-bottom: 10px;
  }

  .video-contact-content h3 {
    font-size: 18px;
  }

  .faq-img img {
    aspect-ratio: 1 / 0.9;
  }

  .company-experience {
    padding: 10px 15px 10px 10px;
  }

  .company-experience h3 {
    font-size: 26px;
    margin-bottom: 0;
  }

  .page-services .service-item-list .service-item {
    width: 100%;
  }

  .service-catagery-list h3 {
    font-size: 18px;
    padding: 12px 20px;
  }

  .service-catagery-list ul,
  .sidebar-cta-box {
    padding: 20px;
  }

  .sidebar-cta-logo,
  .sidebar-cta-content,
  .sidebar-cta-content h3 {
    margin-bottom: 20px;
  }

  .sidebar-cta-logo img {
    max-width: 180px;
  }

  .sidebar-cta-content h3 {
    font-size: 18px;
  }

  .service-feature-image {
    margin-bottom: 20px;
  }

  .service-feature-image img {
    aspect-ratio: 1 / 0.7;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry ul li {
    width: 100%;
  }

  .benefit-services-list .benefit-item {
    width: calc(50% - 7.5px);
  }

  .service-entry-image-counter {
    gap: 20px;
  }

  .service-entry-counter-box {
    padding: 40px 30px 40px 30px;
  }

  .service-entry-counter-box {
    width: 100%;
  }

  .service-entry-counter h3 {
    font-size: 18px;
  }

  .service-entry-video-image img {
    aspect-ratio: 1 / 0.65;
  }

  .service-process-step-item {
    width: 100%;
  }

  .service-process-step-no {
    margin-bottom: 15px;
  }

  .service-process-step-body {
    margin-bottom: 10px;
  }

  .service-process-step-no {
    padding: 6px 10px;
  }

  .service-process-step-title h3 {
    font-size: 18px;
  }

  .service-entry-process .contact-us-now-text p {
    text-align: center;
    font-size: 14px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 12px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 20px;
  }

  .project-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .project-content h3 {
    font-size: 18px;
  }

  .project-catagery-list h3 {
    font-size: 18px;
    padding: 12px 20px;
  }

  .project-catagery-list ul,
  .sidebar-cta-box {
    padding: 20px;
  }

  .project-catagery-list ul li {
    font-size: 18px;
  }

  .project-single-slider {
    margin-bottom: 20px;
  }

  .project-single-slider .swiper-slide img {
    aspect-ratio: 1 / 0.72;
  }

  .project-single-slider .project-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
  }

  .project-single-slider .project-pagination .swiper-pagination-bullet-active:before {
    height: 20px;
    width: 20px;
  }

  .project-entry h2 {
    font-size: 26px;
  }

  .project-challenge-item {
    display: block;
  }

  .project-challenge-image,
  .project-challenge-content {
    width: 100%;
  }

  .project-challenge-image {
    margin-bottom: 20px;
  }

  .project-challenge-image img {
    aspect-ratio: 1 / 0.72;
  }

  .project-challenge-content h3 {
    margin-bottom: 10px;
  }

  .team-member-info-box {
    gap: 20px;
  }

  .team-member-image img {
    aspect-ratio: 1 / 1.05;
  }

  .member-content-body {
    padding: 20px 15px;
  }

  .member-content-body ul li {
    font-size: 16px;
  }

  .member-content-body ul li span {
    width: 50%;
  }

  .member-social-list span {
    font-size: 18px;
  }

  .member-social-list ul li {
    margin-right: 10px;
  }

  .team-member-about-list ul li {
    width: 100%;
  }

  .team-experience-box .member-content-body ul li span {
    width: 75%;
  }

  .team-contact-form {
    padding: 20px;
  }

  .faq-catagery-list {
    padding: 20px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .contact-info-item {
    padding: 20px;
  }

  .contact-info-item .icon-box {
    margin-bottom: 15px;
  }

  .contact-info-content h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .contact-info-content p {
    margin-bottom: 15px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }

  /* Header Css  */
  .Logo-1 {
    margin-left: 2% !important;
  }

  .serviceSec .service-item {
    width: 48%;
  }

  .customBanner {
    height: 250px;
  }

  #our-approach {
    padding-top: 50px !important;
    padding-bottom: 0px !important;
    background: #fff !important;
  }

  .our-approach.our-approachBG1 {
    padding-top: 50px !important;
  }

  #end-to-end {
    padding-top: 40px;
  }

  #businessTransformation {
    padding-top: 40px;
    padding-bottom: 0px !important;
  }

  #cloudService {
    padding-top: 40px;
    padding-bottom: 0px !important;
  }
}

@media (max-width: 650px) {
  .serviceSec .service-item {
    width: 100%;
  }

  .serviceSec .service-image {
    margin-bottom: 13px;
  }

  .serviceSec .service-item {
    width: 48%;
  }
}

@media (max-width: 650px) {
  .serviceSec .service-item {
    width: 100%;
  }

  .serviceSec .service-image {
    margin-bottom: 13px;
  }
}

/* scroll screen */
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

@media (min-width: 768px) and (max-width: 1620px) {
  .tabDivMenu button {
    padding: 20px 0px 20px 10px;
    font-size: 0.9em;
    line-height: 1.5em;
  }

  .tabContentDiv {
    padding: 23px 25px 0px;
  }

  .tabContentDiv a {
    font-size: 0.9em !important;
    line-height: 1.4em !important;
  }

  .tabMenuContentText {
    /* padding: 12px 25px; */
    padding: 9px 19px;
    font-size: 1em;
  }

  .navbar-light .navbar-nav .nav-link {
    font-size: 14px;
    padding: 6px 20px 6px 0px;
  }

  .btn-default {
    font-size: 14px;
  }

  .about-us-footer-content h3 {
    font-size: 16px;
  }

  .home-btn-video {
    bottom: 0;
  }

  .service-item .service-content .service-body {
    height: 100px;
  }

  .our-blog {
    padding: 40px 0 40px;
  }

  .our-blog .section-row {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 600px) {


  .accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
  }

  .plus-minus {
    font-size: 18px;
    margin-left: 10px;
  }

  /* 17 oct -2025 */
  .topbar {
    /* display: none; */
    z-index: 9 !important;
  }

  .navbar .container {
    width: 100% !important;
  }

  .logocol {
    width: 40%;
  }

  .country-dropdown.home {
    padding: 0px 0 0 0px;
    margin-right: 0px;
  }

  .nav-link {
    padding: 0.5rem 0.5rem;
    font-size: 14px;
  }

  .country-dropdown i {
    font-size: 14px;
  }

  .country-dropdown .country-ico {
    width: 20px;
    height: 20px;
  }
}

@media only screen and (max-width: 600px) {

  .accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
  }

  .plus-minus {
    font-size: 18px;
    margin-left: 10px;
  }

  .accordion-container.accordion-open>.accordion-content {
    display: block;
  }

  .sub-accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
  }

  .sub-accordion-content {
    display: none;
    /* hidden by default */
  }

  .sub-accordion-content li {
    padding: 0px;
  }

  .sub-plus-minus {
    font-size: 16px;
    margin-left: 10px;
  }

  /* When open */
  .sub-accordion-container.sub-open>.sub-accordion-content {
    display: block;
    box-shadow: inset 8px 0 0 0 rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0.2);
  }

  /* 17 oct -2025 */
  /* .topbar {
    display: none;
  } */

  .navbar .container {
    width: 100% !important;
  }

  .logocol {
    width: 40%;
  }

  .country-dropdown.home {
    padding: 0px 0 0 0px;
    margin-right: 0px;
  }

  .nav-link {
    padding: 0.5rem 0.5rem;
    font-size: 14px;
  }

  .country-dropdown i {
    font-size: 14px;
  }

  .country-dropdown .country-ico {
    width: 20px;
    height: 20px;
  }

  /* 27-oct-2025 */
  .cstom-swipper-home .swiper-slide {
    width: 100% !important;
  }

  .cstom-swipper-home {
    height: 675px !important;
  }

  /* 29-oct-2025 */
  .hero-content .slider .slide h1 {
    font-size: 22px;
  }

  .hero-content .slider .slide p {
    font-size: 16px;
    margin-top: 5px;
  }

  /* .hero::before {
    background: url(../images/grid-slide.png) repeat rgba(0, 0, 0, 0.69);
  } */

  .index-body .slide {
    text-align: center;
  }

  .hero-body {
    justify-content: center;
  }

  .index-body .about-us-images {
    display: none;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .index-body .service-image img {
    aspect-ratio: 1.5 / 0.95;
  }

  .index-body .case-study-round {
    padding: 10px;
    text-align: center;
  }

  .index-body .case-study-round img {
    height: 80px;
  }

  .index-body .why-choose-us .col-lg-4.my-5 {
    margin-bottom: 0px !important;
  }

  .index-body .why-choose-us {
    padding-bottom: 0px !important;
  }

  .index-body .intro-video .section-title h2 {
    font-size: 22px !important;
    line-height: 30px;
  }

  .index-body .intro-video {
    padding: 30px 0px;
  }

  .index-body .intro-video .intro-video-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sub-accordion-toggle {
    color: #fff !important;
    margin-bottom: 2%;
    font-size: 16px !important;
  }

  .service-page-body .page-header {
    padding: 0px 0;
  }

  .portfolio-top-body .page-header {
    padding: 0px 0px;
  }

  .contact-top-body .page-header {
    padding: 0px 0px;
  }

  .about-header img {
    height: 120px;
    object-fit: cover;
  }
}

/* Pathan din */
@media (max-width: 991px) {
  .innerBanner {
    max-width: 90%;
    width: 90%;
  }

  .bannerTag {
    max-width: 90%;
    width: 90%;
    margin-bottom: 10px;
  }

  .page-header-box h1 {
    font-size: 32px;
  }

  .page-header {
    padding: 0px 0;
  }

  .bannerText p {
    padding-right: 0px;
  }

  .our-benefit-content.leftContent {
    padding-right: 0px;
  }

  .knowledgeText p {
    padding-right: 0px;
  }

  .bottomContent h3 {
    padding: 0% 0%;
    line-height: normal;
  }

  .knowledgeText h3 {
    font-size: 24px;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {

  .page-header-box h1 {
    font-size: 20px;
  }

  .knowledgeService {
    margin-top: 0px;
    padding: 50px 0px;
  }

  .mapText {
    padding: 20px;
  }

  .knowledgeImg {
    margin-top: 0px;
  }

  .technology {
    margin-top: 0px;
  }

  .bannerList li a {
    padding: 0px;
    font-size: 14px;
  }

  .what-we-do-body {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .service-page-body .end-to-end {
    padding: 25px 0;
  }

  .our-approach-image {
    max-width: 100%;
    margin: 25px auto;
  }

  .service-page-body .padding-left {
    padding-left: 0px;
  }

  .what-we-do-body ul {
    padding-left: 10px;
  }

  .our-approach {
    padding: 25px 0;
  }

  .intro-video {
    padding: 50px 0;
  }

  .intro-video .section-title h2 {
    font-size: 24px !important;
    line-height: normal;
  }
}

.bannerListDark {
  list-style: none;
  padding: 0px;
}

.bannerListDark li {
  display: flex;
  align-items: center;
  padding: 5px 0px;
}

.bannerListDark li img {
  margin-right: 10px;
}

.bannerListDark li p {
  margin: 0px;
}

.benefit-services-list .benefit-item a {
  color: #666;
}


.home-btn-video {
  position: absolute;
  left: 6%;
}

.page-header.service-header .page-header-box {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  max-width: 840px;

}

.service-inner-ul-li {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  line-height: 2;

}

.service-inner-ul {
  list-style-type: disclosure-closed;
}

.portfolio-headding {
  font-size: 28px !important;
}

.benefit-services-list .benefit-item-box-shadow {
  box-shadow: 1px 1px 12px #a2a2a2;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 10px 20px;
}

/* Web Development Services Technology Section Styling */
/* Section styling removed - only benefit-item boxes are styled */

#web-development-services-technology .benefit-services-list .benefit-item {
  background-color: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#web-development-services-technology .benefit-services-list .benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(88, 167, 13, 0.05) 0%, rgba(8, 61, 103, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

#web-development-services-technology .benefit-services-list .benefit-item:hover {
  transform: translateY(-8px);
  border-color: #58a70d;
  box-shadow: 0 12px 24px rgba(88, 167, 13, 0.15);
}

#web-development-services-technology .benefit-services-list .benefit-item:hover::before {
  opacity: 1;
}

#web-development-services-technology .benefit-services-list .benefit-item .icon-box-full,
#web-development-services-technology .benefit-services-list .benefit-item .benefit-item-content {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

#web-development-services-technology .benefit-services-list .benefit-item:hover .icon-box-full {
  transform: scale(1.1);
}

#web-development-services-technology .benefit-services-list .benefit-item .icon-box-full img {
  transition: filter 0.3s ease;
}

#web-development-services-technology .benefit-services-list .benefit-item:hover .icon-box-full img {
  filter: brightness(1.1);
}

/* Animation for boxes on page load */
@keyframes fadeInUpScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#web-development-services-technology .benefit-services-list .benefit-item {
  animation: fadeInUpScale 0.6s ease-out forwards;
  opacity: 0;
}

#web-development-services-technology .benefit-services-list .benefit-item:nth-child(1) {
  animation-delay: 0.1s;
}

#web-development-services-technology .benefit-services-list .benefit-item:nth-child(2) {
  animation-delay: 0.2s;
}

#web-development-services-technology .benefit-services-list .benefit-item:nth-child(3) {
  animation-delay: 0.3s;
}

#web-development-services-technology .benefit-services-list .benefit-item:nth-child(4) {
  animation-delay: 0.4s;
}

#web-development-services-technology .benefit-services-list .benefit-item:nth-child(5) {
  animation-delay: 0.5s;
}

#web-development-services-technology .benefit-services-list .benefit-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #web-development-services-technology .benefit-services-list .benefit-item {
    border-radius: 8px;
    padding: 25px 20px;
  }
}

/* Building Industry Level Section Styling */
#building-industry-level {
  background-color: #f8f9fa;
  padding: 60px 0;
}

#building-industry-level .benefit-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px 0;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

#building-industry-level .benefit-services-list .benefit-item {
  background-color: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 30px 25px;
  margin-bottom: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 0 0 calc(25% - 18.75px);
  max-width: calc(25% - 18.75px);
}

#building-industry-level .benefit-services-list .benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(88, 167, 13, 0.05) 0%, rgba(8, 61, 103, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

#building-industry-level .benefit-services-list .benefit-item:hover {
  transform: translateY(-8px);
  border-color: #58a70d;
  box-shadow: 0 12px 24px rgba(88, 167, 13, 0.15);
  background-color: #f0fdf4;
}

#building-industry-level .benefit-services-list .benefit-item:hover::before {
  opacity: 1;
}

#building-industry-level .benefit-services-list .benefit-item .icon-box-full,
#building-industry-level .benefit-services-list .benefit-item .benefit-item-content {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

#building-industry-level .benefit-services-list .benefit-item:hover .icon-box-full {
  transform: scale(1.1);
}

#building-industry-level .benefit-services-list .benefit-item .icon-box-full i {
  font-size: 48px;
  color: #58a70d;
  transition: all 0.3s ease;
}

#building-industry-level .benefit-services-list .benefit-item:hover .icon-box-full i {
  color: #083d67;
  transform: scale(1.1);
}

#building-industry-level .benefit-services-list .benefit-item {
  animation: fadeInUpScale 0.6s ease-out forwards;
  opacity: 0;
}

#building-industry-level .benefit-services-list .benefit-item:nth-child(1) {
  animation-delay: 0.1s;
}

#building-industry-level .benefit-services-list .benefit-item:nth-child(2) {
  animation-delay: 0.2s;
}

#building-industry-level .benefit-services-list .benefit-item:nth-child(3) {
  animation-delay: 0.3s;
}

#building-industry-level .benefit-services-list .benefit-item:nth-child(4) {
  animation-delay: 0.4s;
}

#building-industry-level .benefit-services-list .benefit-item:nth-child(5) {
  animation-delay: 0.5s;
}

#building-industry-level .benefit-services-list .benefit-item:nth-child(6) {
  animation-delay: 0.6s;
}

#building-industry-level .benefit-services-list .benefit-item:nth-child(7) {
  animation-delay: 0.7s;
}

#building-industry-level .benefit-services-list .benefit-item:nth-child(8) {
  animation-delay: 0.8s;
}

/* Types of Custom Web Apps Section Styling */
#types-of-custom-web {
  background-color: #ffffff;
  padding: 60px 0;
}

#types-of-custom-web .benefit-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 40px 0;
  justify-content: center;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

#types-of-custom-web .benefit-services-list .benefit-item {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  border: 3px solid #083d67;
  border-radius: 16px;
  padding: 35px 30px;
  margin-bottom: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(8, 61, 103, 0.1);
  width: calc(33.333% - 16.67px);
}

#types-of-custom-web .benefit-services-list .benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 61, 103, 0.1) 0%, rgba(88, 167, 13, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

#types-of-custom-web .benefit-services-list .benefit-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #58a70d;
  box-shadow: 0 16px 32px rgba(8, 61, 103, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

#types-of-custom-web .benefit-services-list .benefit-item:hover::before {
  opacity: 1;
}

#types-of-custom-web .benefit-services-list .benefit-item .icon-box-full,
#types-of-custom-web .benefit-services-list .benefit-item .benefit-item-content {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

#types-of-custom-web .benefit-services-list .benefit-item:hover .icon-box-full {
  transform: scale(1.1);
}

#types-of-custom-web .benefit-services-list .benefit-item .icon-box-full i {
  font-size: 52px;
  color: #083d67;
  transition: all 0.3s ease;
}

#types-of-custom-web .benefit-services-list .benefit-item:hover .icon-box-full i {
  color: #58a70d;
  transform: scale(1.15) rotate(5deg);
}

#types-of-custom-web .benefit-services-list .benefit-item {
  animation: fadeInUpScale 0.6s ease-out forwards;
  opacity: 0;
}

#types-of-custom-web .benefit-services-list .benefit-item:nth-child(1) {
  animation-delay: 0.1s;
}

#types-of-custom-web .benefit-services-list .benefit-item:nth-child(2) {
  animation-delay: 0.2s;
}

#types-of-custom-web .benefit-services-list .benefit-item:nth-child(3) {
  animation-delay: 0.3s;
}

#types-of-custom-web .benefit-services-list .benefit-item:nth-child(4) {
  animation-delay: 0.4s;
}

#types-of-custom-web .benefit-services-list .benefit-item:nth-child(5) {
  animation-delay: 0.5s;
}

/* Robotic Process Automation Services Section Styling */
.rpa-services-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 50%, #fff5e6 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.rpa-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(88, 167, 13, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(32, 131, 210, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.rpa-services-section .container {
  position: relative;
  z-index: 1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.rpa-services-section .section-title h2 {
  margin-bottom: 25px;
  /* background: linear-gradient(135deg, #2083d2 0%, #58a70d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
}

.rpa-services-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.rpa-service-box {
  background: #ffffff;
  border: 3px solid #e0e0e0;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rpa-service-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(88, 167, 13, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.rpa-service-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2083d2 0%, #58a70d 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1;
}

.rpa-service-box:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #58a70d;
  box-shadow: 0 20px 40px rgba(88, 167, 13, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.rpa-service-box:hover::before {
  opacity: 1;
}

.rpa-service-box:hover::after {
  transform: scaleX(1);
}

.rpa-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2083d2 0%, #58a70d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(32, 131, 210, 0.3);
}

.rpa-icon-box::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2083d2, #58a70d);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.rpa-service-box:hover .rpa-icon-box {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(88, 167, 13, 0.4);
}

.rpa-service-box:hover .rpa-icon-box::before {
  opacity: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

.rpa-icon-box i {
  font-size: 42px;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.rpa-service-box:hover .rpa-icon-box i {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.rpa-service-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rpa-service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #083d67;
  transition: color 0.3s ease;
}

.rpa-service-box:hover .rpa-service-content h3 {
  color: #58a70d;
}

.rpa-service-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  transition: color 0.3s ease;
}

.rpa-service-box:hover .rpa-service-content p {
  color: #333;
}

/* Responsive adjustments for RPA Services Section */
@media (max-width: 992px) {
  .rpa-services-section {
    padding: 60px 0;
  }

  .rpa-services-section .section-title h2 {
    font-size: 36px;
  }

  .rpa-service-box {
    padding: 35px 25px;
    margin-bottom: 25px;
  }

  .rpa-icon-box {
    width: 80px;
    height: 80px;
  }

  .rpa-icon-box i {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .rpa-services-section {
    padding: 50px 0;
  }

  .rpa-services-section .section-title h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .rpa-services-intro {
    font-size: 16px;
    padding: 0 10px;
  }

  .rpa-service-box {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .rpa-icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .rpa-icon-box i {
    font-size: 32px;
  }

  .rpa-service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .rpa-service-content p {
    font-size: 14px;
  }
}


@media (max-width: 576px) {
  .rpa-services-section .section-title h2 {
    font-size: 28px;
  }

  .rpa-service-box {
    padding: 25px 18px;
  }

  .bannerTag {
    font-size: 13px;
  }
}

/* Analytics Specialties Section Styling */
.analytics-specialties-section {
  background: #fafafb;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin: 30px 0px 0px 0px;
}


.analytics-specialties-section .container {
  position: relative;
  z-index: 1;
}

#our-specialties {
  margin-top: 40px;
}

.analytics-specialty-box {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.analytics-specialty-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2083d2 0%, #58a70d 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.analytics-specialty-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 131, 210, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.analytics-specialty-box:hover {
  transform: translateY(-8px);
  border-color: #2083d2;
  box-shadow: 0 15px 35px rgba(32, 131, 210, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.analytics-specialty-box:hover::before {
  transform: scaleX(1);
}

.analytics-specialty-box:hover::after {
  width: 300px;
  height: 300px;
}

.analytics-icon-box {
  width: 85px;
  height: 85px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2083d2 0%, #58a70d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 18px rgba(32, 131, 210, 0.25);
}

.analytics-icon-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2083d2, #58a70d);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(8px);
}

.analytics-specialty-box:hover .analytics-icon-box {
  transform: translateY(-5px) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(88, 167, 13, 0.35);
  border-radius: 12px;
}

.analytics-specialty-box:hover .analytics-icon-box::before {
  opacity: 0.6;
}

.analytics-icon-box i {
  font-size: 40px;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.analytics-specialty-box:hover .analytics-icon-box i {
  transform: scale(1.15);
  filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.4));
}

.analytics-specialty-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.analytics-specialty-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #083d67;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.analytics-specialty-box:hover .analytics-specialty-content h3 {
  color: #2083d2;
  transform: translateY(-2px);
}

/* Responsive adjustments for Analytics Specialties Section */
@media (max-width: 992px) {
  .analytics-specialties-section {
    padding: 60px 0;
  }

  .analytics-specialty-box {
    padding: 30px 20px;
    margin-bottom: 25px;
  }

  .analytics-icon-box {
    width: 75px;
    height: 75px;
    margin-bottom: 18px;
  }

  .analytics-icon-box i {
    font-size: 36px;
  }

  .analytics-specialty-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .analytics-specialties-section {
    padding: 50px 0;
  }

  .analytics-specialty-box {
    padding: 28px 18px;
    border-radius: 12px;
  }

  .analytics-icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    border-radius: 14px;
  }

  .analytics-icon-box i {
    font-size: 32px;
  }

  .analytics-specialty-content h3 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .analytics-specialties-section .section-title h2 {
    font-size: 24px;
  }

  .analytics-specialty-box {
    padding: 20px 12px;
  }

  .analytics-icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .analytics-icon-box i {
    font-size: 22px;
  }

  .analytics-specialty-content h3 {
    font-size: 13px;
    line-height: 1.3;
  }
}

/* End-to-End Cloud Migration Section Styling */
.cloud-migration-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7ff 100%);
  padding: 50px 0px 0px;
  position: relative;
  overflow: hidden;
}

.cloud-migration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(32, 131, 210, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(88, 167, 13, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cloud-migration-section .container {
  position: relative;
  z-index: 1;
}

.cloud-migration-header {
  margin-bottom: 10px;
  text-align: left;
}

.cloud-migration-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 25px;
  text-align: left;
}

.cloud-migration-content p:last-child {
  margin-bottom: 0;
}

.cloud-migration-services {
  margin-top: 30px;
}

.cloud-migration-service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.cloud-migration-service-item:hover {
  transform: translateY(-5px);
  border-color: #58a70d;
  box-shadow: 0 8px 20px rgba(88, 167, 13, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.service-icon-box {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, #2083d2 0%, #58a70d 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(32, 131, 210, 0.25);
  transition: all 0.3s ease;
}

.cloud-migration-service-item:hover .service-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(88, 167, 13, 0.3);
}

.service-icon-box i {
  color: #ffffff;
  font-size: 18px;
}

.service-content {
  flex: 1;
  padding-top: 2px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.index-body .service-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

/* Responsive adjustments for Cloud Migration Section */
@media (max-width: 992px) {
  .cloud-migration-section {
    padding: 60px 0;
  }

  .cloud-migration-header h2 {
    font-size: 36px;
  }

  .cloud-migration-content p {
    font-size: 15px;
  }

  .index-body .service-content p {
    font-size: 15px;
  }

  .service-content p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .cloud-migration-section {
    padding: 50px 0;
  }

  .cloud-migration-header {
    margin-bottom: 30px;
  }

  .cloud-migration-header h2 {
    font-size: 32px;
  }

  .cloud-migration-content {
    margin-bottom: 40px;
  }

  .cloud-migration-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
  }

  .cloud-migration-service-item {
    gap: 15px;
    padding: 20px;
  }

  .service-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .service-icon-box i {
    font-size: 16px;
  }

  .service-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
  }

  .index-body .service-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
  }
}

@media (max-width: 576px) {
  .cloud-migration-section {
    padding: 40px 0;
  }

  .cloud-migration-header h2 {
    font-size: 28px;
  }

  .cloud-migration-content p {
    font-size: 13px;
    color: #333333;
  }

  .cloud-migration-service-item {
    gap: 12px;
    padding: 18px;
  }

  .service-icon-box {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .service-icon-box i {
    font-size: 14px;
  }

  .service-content p {
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
  }

  .index-body .service-content p {
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
  }

  .cloud-migration-services .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Industries Box Styling for our-devops-process section */
#our-devops-process .industries-box {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#our-devops-process .industries-box:hover {
  transform: translateY(-8px);
  border-color: #58a70d;
  box-shadow: 0 12px 30px rgba(88, 167, 13, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

#our-devops-process .industries-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2083d2 0%, #58a70d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(32, 131, 210, 0.25);
}

#our-devops-process .industries-box:hover .industries-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(88, 167, 13, 0.35);
}

#our-devops-process .industries-icon-box i {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease;
}

#our-devops-process .industries-box:hover .industries-icon-box i {
  transform: scale(1.1);
}

#our-devops-process .industries-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#our-devops-process .industries-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #083d67;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.4;
}

#our-devops-process .industries-box:hover .industries-content h3 {
  color: #58a70d;
}

/* Responsive adjustments for Industries Box */
@media (max-width: 992px) {
  #our-devops-process .industries-box {
    padding: 30px 20px;
  }

  #our-devops-process .industries-icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }

  #our-devops-process .industries-icon-box i {
    font-size: 32px;
  }

  #our-devops-process .industries-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #our-devops-process .industries-box {
    padding: 28px 18px;
    border-radius: 12px;
  }

  #our-devops-process .industries-icon-box {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }

  #our-devops-process .industries-icon-box i {
    font-size: 28px;
  }

  #our-devops-process .industries-content h3 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  #our-devops-process .industries-box {
    padding: 25px 15px;
  }

  #our-devops-process .industries-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  #our-devops-process .industries-icon-box i {
    font-size: 24px;
  }

  #our-devops-process .industries-content h3 {
    font-size: 15px;
  }
}

/* Why TriazineSoftware Section Styling */
.why-triazine-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.why-triazine-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(32, 131, 210, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(88, 167, 13, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.why-triazine-section .container {
  position: relative;
  z-index: 1;
}

.why-triazine-subtitle {
  font-size: 18px;
  color: #666666;
  margin-top: 15px;
  margin-bottom: 0;
}

.why-triazine-item {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.why-triazine-item:hover {
  transform: translateY(-5px);
  border-color: #58a70d;
  box-shadow: 0 8px 20px rgba(88, 167, 13, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.why-triazine-icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2083d2 0%, #58a70d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(32, 131, 210, 0.25);
}

.why-triazine-item:hover .why-triazine-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(88, 167, 13, 0.3);
}

.why-triazine-icon-box i {
  font-size: 28px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.why-triazine-item:hover .why-triazine-icon-box i {
  transform: scale(1.1);
}

.why-triazine-content {
  flex: 1;
}

.why-triazine-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #083d67;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.why-triazine-item:hover .why-triazine-content h4 {
  color: #58a70d;
}

/* Need for Software Consulting Section Styling */
.need-consulting-section {
  padding: 40px 0;
  background: #ffffff;
  position: relative;
}

.consulting-subtitle {
  font-size: 18px;
  color: #666666;
  margin-top: 15px;
  margin-bottom: 0;
}

.consulting-category-box {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.consulting-category-box:hover {
  transform: translateY(-8px);
  border-color: #58a70d;
  box-shadow: 0 12px 30px rgba(88, 167, 13, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.consulting-category-header {
  text-align: center;
  margin-bottom: 30px;
}

.consulting-category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2083d2 0%, #58a70d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(32, 131, 210, 0.25);
}

.consulting-category-box:hover .consulting-category-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(88, 167, 13, 0.35);
}

.consulting-category-icon i {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.consulting-category-box:hover .consulting-category-icon i {
  transform: scale(1.1);
}

.consulting-category-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #083d67;
  margin: 0;
  transition: color 0.3s ease;
}

.consulting-category-box:hover .consulting-category-header h3 {
  color: #58a70d;
}

.consulting-category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consulting-category-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding-left: 0;
}

.consulting-category-list ul li:last-child {
  margin-bottom: 0;
}

.consulting-category-list ul li i {
  color: #58a70d;
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.consulting-category-box:hover .consulting-category-list ul li i {
  transform: scale(1.2);
  color: #2083d2;
}

.consulting-category-list ul li span {
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  flex: 1;
}

/* Responsive adjustments for Why TriazineSoftware Section */
@media (max-width: 992px) {
  .why-triazine-section {
    padding: 60px 0;
  }

  .why-triazine-item {
    padding: 22px 18px;
  }

  .why-triazine-icon-box {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }

  .why-triazine-icon-box i {
    font-size: 24px;
  }

  .why-triazine-content h4 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .why-triazine-section {
    padding: 50px 0;
  }

  .why-triazine-item {
    padding: 20px 15px;
    gap: 15px;
  }

  .why-triazine-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .why-triazine-icon-box i {
    font-size: 22px;
  }

  .why-triazine-content h4 {
    font-size: 15px;
  }
}

/* Responsive adjustments for Need for Software Consulting Section */
@media (max-width: 992px) {
  .need-consulting-section {
    padding: 60px 0;
  }

  .consulting-category-box {
    padding: 30px 25px;
  }

  .consulting-category-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 18px;
  }

  .consulting-category-icon i {
    font-size: 28px;
  }

  .consulting-category-header h3 {
    font-size: 22px;
  }

  .consulting-category-list ul li span {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .need-consulting-section {
    padding: 50px 0;
  }

  .consulting-category-box {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .consulting-category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .consulting-category-icon i {
    font-size: 26px;
  }

  .consulting-category-header h3 {
    font-size: 20px;
  }

  .consulting-category-list ul li {
    margin-bottom: 12px;
  }

  .consulting-category-list ul li span {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .why-triazine-section {
    padding: 40px 0;
  }

  .why-triazine-item {
    padding: 18px 12px;
  }

  .why-triazine-icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }

  .why-triazine-icon-box i {
    font-size: 20px;
  }

  .why-triazine-content h4 {
    font-size: 14px;
  }

  .need-consulting-section {
    padding: 40px 0;
  }

  .consulting-category-box {
    padding: 25px 18px;
  }

  .consulting-category-icon {
    width: 55px;
    height: 55px;
  }

  .consulting-category-icon i {
    font-size: 24px;
  }

  .consulting-category-header h3 {
    font-size: 18px;
  }
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
  #building-industry-level {
    padding: 50px 0;
  }

  #building-industry-level .benefit-services-list {
    gap: 20px;
    margin: 30px 0;
  }

  #building-industry-level .benefit-services-list .benefit-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    padding: 25px 20px;
  }

  #building-industry-level .benefit-services-list .benefit-item .icon-box-full i {
    font-size: 40px;
  }

  #types-of-custom-web {
    padding: 50px 0;
  }

  #types-of-custom-web .benefit-services-list {
    gap: 20px;
    margin: 30px 0;
  }

  #types-of-custom-web .benefit-services-list .benefit-item {
    width: calc(50% - 10px);
    padding: 30px 20px;
  }

  #types-of-custom-web .benefit-services-list .benefit-item .icon-box-full i {
    font-size: 42px;
  }
}

@media (max-width: 768px) {

  #building-industry-level,
  #types-of-custom-web {
    padding: 40px 0;
  }

  #building-industry-level .title-sec,
  #types-of-custom-web .title-sec {
    padding: 0 15px;
  }

  #building-industry-level .title-sec h2,
  #types-of-custom-web .title-sec h2 {
    font-size: 24px;
    padding: 0;
  }

  #building-industry-level .benefit-services-list {
    gap: 15px;
    margin: 25px 0;
    padding: 0 15px;
    width: 100%;
  }

  #building-industry-level .benefit-services-list .benefit-item {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
    padding: 25px 18px;
    margin-bottom: 0;
  }

  #building-industry-level .benefit-services-list .benefit-item .icon-box-full {
    margin-bottom: 15px;
  }

  #building-industry-level .benefit-services-list .benefit-item .icon-box-full i {
    font-size: 36px;
  }

  #building-industry-level .benefit-services-list .benefit-item .benefit-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  #building-industry-level .benefit-services-list .benefit-item .benefit-item-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  #types-of-custom-web .benefit-services-list {
    gap: 15px;
    margin: 25px 0;
    padding: 0 15px;
    width: 100%;
  }

  #types-of-custom-web .benefit-services-list .benefit-item {
    width: 100%;
    border-radius: 12px;
    padding: 25px 18px;
    margin-bottom: 0;
  }

  #types-of-custom-web .benefit-services-list .benefit-item .icon-box-full {
    margin-bottom: 15px;
  }

  #types-of-custom-web .benefit-services-list .benefit-item .icon-box-full i {
    font-size: 38px;
  }

  #types-of-custom-web .benefit-services-list .benefit-item .benefit-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  #types-of-custom-web .benefit-services-list .benefit-item .benefit-item-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {

  #building-industry-level,
  #types-of-custom-web {
    padding: 30px 0;
    width: 100%;
  }

  #building-industry-level .title-sec,
  #types-of-custom-web .title-sec {
    padding: 0 10px;
  }

  #building-industry-level .title-sec h2,
  #types-of-custom-web .title-sec h2 {
    font-size: 20px;
    padding: 0;
  }

  #building-industry-level .benefit-services-list,
  #types-of-custom-web .benefit-services-list {
    gap: 12px;
    margin: 20px 0;
    padding: 0 10px;
    width: 100%;
  }

  #building-industry-level .benefit-services-list .benefit-item,
  #types-of-custom-web .benefit-services-list .benefit-item {
    padding: 20px 15px;
    border-radius: 8px;
    width: 100% !important;
    max-width: 100%;
  }

  #building-industry-level .benefit-services-list .benefit-item .icon-box-full i,
  #types-of-custom-web .benefit-services-list .benefit-item .icon-box-full i {
    font-size: 32px;
  }

  #building-industry-level .benefit-services-list .benefit-item .benefit-item-content h3,
  #types-of-custom-web .benefit-services-list .benefit-item .benefit-item-content h3 {
    font-size: 16px;
  }

  #building-industry-level .benefit-services-list .benefit-item .benefit-item-content p,
  #types-of-custom-web .benefit-services-list .benefit-item .benefit-item-content p {
    font-size: 13px;
  }
}

/* Our Agile Custom Web App Development Process Section Styling */
.agile-process-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* .agile-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #58a70d 0%, #083d67 50%, #58a70d 100%);
} */

.agile-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  width: 100%;
  box-sizing: border-box;
}

.agile-process-item {
  background: #ffffff;
  border: 2px solid #e0e7ff;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.agile-process-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(88, 167, 13, 0.1), transparent);
  transition: left 0.6s;
}

.agile-process-item:hover::before {
  left: 100%;
}

.agile-process-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #58a70d 0%, #083d67 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.agile-process-item:hover::after {
  transform: scaleX(1);
}

.agile-process-item:hover {
  transform: translateY(-10px);
  border-color: #58a70d;
  box-shadow: 0 15px 35px rgba(88, 167, 13, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: #f0f4f8;
  line-height: 1;
  z-index: 0;
  transition: all 0.3s ease;
}

.agile-process-item:hover .process-number {
  color: #e8f5e9;
  transform: scale(1.1);
}

.process-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #58a70d 0%, #083d67 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(88, 167, 13, 0.3);
}

.agile-process-item:hover .process-icon {
  transform: translateY(-5px) rotate(5deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(88, 167, 13, 0.4);
}

.process-icon i {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.agile-process-item:hover .process-icon i {
  transform: scale(1.2);
}

.process-content {
  position: relative;
  z-index: 2;
}

.process-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #083d67;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.agile-process-item:hover .process-content h3 {
  color: #58a70d;
}

.process-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  transition: color 0.3s ease;
}

.agile-process-item:hover .process-content p {
  color: #555;
}

.resultSec {
  padding-top: 30px;
}

.resultSec .agile-process-grid {
  margin-top: 0;
}

.resultSec .title-sec h2 {
  padding-bottom: 35px;
}

.resultSec .process-icon {
  display: none;
}

.resultGrid .process-content p {
  font-size: 16px;
  color: #222;
}

.agile-process-section.resultSec {
  padding-bottom: 40px;
}

.resultSec .process-content h3 {
  color: #010535;
  font-weight: 600;
  font-size: 20px;
}

.agile-process-section.resultSec::before {
  display: none;
}

.listBox li {
  color: #333;
  list-style: none;
  padding-top: 10px;
}

.listBox {
  padding-left: 0;
}

/* Responsive adjustments for agile process section */
@media (max-width: 992px) {
  .agile-process-section {
    padding: 60px 0;
  }

  .agile-process-section .title-sec h2 {
    font-size: 26px;
    padding: 0 15px;
  }

  .agile-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    padding: 0 10px;
  }

  .agile-process-item {
    padding: 35px 25px;
  }

  .process-number {
    font-size: 55px;
  }

  .process-icon {
    width: 75px;
    height: 75px;
  }

  .process-icon i {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .agile-process-section {
    padding: 50px 0;
    width: 100%;
  }

  .agile-process-section .title-sec {
    padding: 0 15px;
  }

  .agile-process-section .title-sec h2 {
    font-size: 22px;
    padding: 0;
  }

  .agile-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
    padding: 0 15px;
    width: 100%;
  }

  .agile-process-item {
    padding: 30px 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 100%;
  }

  .process-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .process-icon i {
    font-size: 30px;
  }

  .process-number {
    font-size: 50px;
    top: 15px;
    right: 15px;
  }

  .process-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .process-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .agile-process-section {
    padding: 40px 0;
    width: 100%;
  }

  .agile-process-section .title-sec {
    padding: 0 10px;
  }

  .agile-process-section .title-sec h2 {
    font-size: 20px;
    padding: 0;
  }

  .agile-process-grid {
    gap: 15px;
    margin-top: 30px;
    padding: 0 10px;
    width: 100%;
  }

  .agile-process-item {
    padding: 25px 18px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 15px;
  }

  .process-icon i {
    font-size: 26px;
  }

  .process-number {
    font-size: 45px;
    top: 12px;
    right: 12px;
  }

  .process-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .process-content p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* 15 nov */

.read-more-checkbox {
  display: none;
}

/* Collapsed state */
.read-more-text {
  max-height: 100px;
  /* approx 2–3 lines */
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

/* Expanded state */
.read-more-checkbox:checked~.read-more-text {
  max-height: 500px;
  /* large enough to fit full text */
}

/* Button styling */
.read-more-btn {
  cursor: pointer;
  color: #58a70d;
  text-decoration: unset;
  font-size: 16px;
  font-weight: 700;
  margin-top: 15px;
  float: left;
}

/* Default button text */
.read-more-btn::after {
  content: "Read more";
}

/* Change button text when expanded */
.read-more-checkbox:checked+.read-more-text+.read-more-btn::after {
  content: "Read less";
}

.bg-technology-transparent {
  background: #fff !important;
  margin-top: 0px !important;
  padding-bottom: 0px !important;
}

.hireJSDevSlideP a {
  color: #007bff !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 15px;
  border: 1px solid #000;
  padding: 5px 15px;
  border-radius: 8px;
  float: right;
  /* moves it to right */
}

.hireJSDevSlideP a:hover {
  color: #0056b3;
  /* hover color */
  text-decoration: unset;
}

.hireJSDevSlideP {
  margin-top: 20px !important;
  font-size: 16px;
  /* adjust text size */
  font-weight: 500;
  /* optional */
}

.expert-qa-consultaion {
  background: #ededed;
  padding: 30px 0px;
  margin-top: 40px;
}

.new-mobileapp-class {
  justify-content: start;
}

.new-mobileapp-class .benefit-item {
  text-align: center;
}

.devops-grid .benefit-item {
  text-align: center;
}

.portfolio-sec .title-sec h2 {
  text-transform: capitalize;
}

/* 17-nov-2025 */
.csd-new-class .icon-box-full img {
  background: lightgray;
  padding: 5px;
  border-radius: 4px;
}

.box-shadow-box-border {
  box-shadow: 1px 1px 12px #a2a2a2;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 10px 20px;
}

.box-shadow-box-border-height {
  height: 250px;
}

.service-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 16px;
  transform: translateY(-50%);
  background-image: url(../images/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 24px;
  height: 24px;
  /* transition: all 0.4s ease-in-out; */
  z-index: 2;
  transition: all 0.4s ease-in-out, left 0.4s ease-in-out;
}

.service-item:hover:before {
  transform: translateY(-50%) rotate(45deg);
}

.side-image-cstm {
  background-image: url(../images/side-image-1.svg);
  background-repeat: no-repeat;
  background-position: left top;
  transition: all 0.4s ease-in-out, left 0.4s ease-in-out;
  background-size: contain;
  /* Ensures the image fits within the container */

}

.degree-img-figure {
  width: 85% !important;
  margin: auto !important;
}

.degree-img {
  width: 100% !important;
  margin: auto !important;
}

.post-item-body {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 0px 0px 8px 8px;
  height: 240px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  /* Transition both effects */
}

.post-item-body:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  /* Adds shadow */
}

.case-study-round:hover .color-blue::before {
  transform: translateY(-50%) rotate(45deg);
  /* background-image: url(../images/arrow-green.svg); */
  filter: unset;

}

.header-banner-sub-headding {
  font-size: 16px;
  font-weight: 600;
}

/* career page css */
.career-sectionBg {
  background-color: rgba(25, 118, 210, 0.05);
}

/* Current Opportunities Section */
.current-opportunities-section {
  background-color: #fff
}

.job-listings-accordion {
  margin-top: 30px;
}

.job-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* .job-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
} */

.job-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  /* border-bottom: 1px solid #e0e0e0; */
  transition: background-color 0.3s ease;
}

/* .job-header:hover {
  background-color: #f5f5f5;
} */

.job-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #0066CC;
}

.job-arrow {
  color: #0066CC;
  font-size: 16px;
  transition: transform 0.4s ease;
}

.job-arrow i {
  transition: transform 0.4s ease;
}

.job-content {
  padding: 0 25px;
  background: #ffffff;
  /* border-top: 1px solid #e0e0e0; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.job-content.open {
  max-height: 3000px;
  opacity: 1;
  padding-top: 0px;
  padding-bottom: 20px;
}

.job-details {
  padding: 0px 0px 20px;
}

.job-details p {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

.job-details strong {
  color: #0066CC;
}

.job-responsibilities {
  margin: 15px 0;
  padding-left: 0px;
  list-style: none;
}

.job-responsibilities li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

.job-apply-btn {
  margin-top: 15px;
}

/* Career CTA Section */
.career-cta-section {
  background-color: #ffffff;
}

.career-cta-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.career-textArea {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.career-textArea:focus {
  outline: unset;
}

.locationul {
  display: flex;
  padding-left: 0px;
}

.locationul li {
  display: flex;
  font-weight: 600;
  color: #222;
  font-size: 15px;
  padding-top: 1px;
  margin-bottom: 0 !important;
  width: 76%;
  flex-direction: row;
  justify-content: space-between;
}

.healthcare-content p {
  line-height: 28px;
}

.ibmService {
  padding: 50px 0;
}

.letUs {
  padding: 0 0;
}

.letUs .section-title {
  padding: 0 0;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .job-header {
    padding: 15px 20px;
  }

  .job-header h3 {
    font-size: 16px;
  }

  .job-content {
    padding: 0 20px;
  }

  .job-content.open {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .job-details {
    padding: 15px 0;
  }

  .career-cta-text {
    font-size: 16px;
  }

  .current-opportunities-section .col-lg-10 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 576px) {
  .job-header {
    padding: 12px 15px;
  }

  .job-header h3 {
    font-size: 14px;
  }

  .job-content {
    padding: 0 15px;
  }

  .job-content.open {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .job-details {
    padding: 12px 0;
  }

  .job-responsibilities {
    padding-left: 15px;
  }

  .devops-grid .benefit-item {
    width: calc(100% - -100.25px) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .side-image-cstm {
    background-position: left -40px top 130px !important;
    background-size: cover;
  }
}

.service-content.cdmStatic {
  position: static;
  transform: translate(0px, 0px);
}

.about-side-image-cstm {
  background-image: url(../images/side-image-1.svg);
  background-repeat: no-repeat;
  background-position: left top;
  transition: all 0.4s ease-in-out, left 0.4s ease-in-out;
  background-size: contain;
}

.industriesSection {
  margin-top: 50px;
  background: #f9f9f9;
  padding: 40px 0;
  text-align: center;
}

.that-we-serve-icon {
  background: #2083d2;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
}

div#that-we-serve .benefit-item {
  text-align: center;
  margin: auto;
}

.side-image-one {
  background-image: url(../images/side-image-2.svg);
  background-repeat: no-repeat;
  background-position: right top;
  transition: all 0.4s ease-in-out, left 0.4s ease-in-out;
  background-size: contain;
}

.portfolio-top-body .project-content p {
  display: inline-block;
  color: var(--white-color);
  /* text-transform: capitalize; */
  padding: 0px 10px 5px 0px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 500;
  background: unset;
}

.portfolio-top-body .project-content {
  bottom: 18px;
}

.portfolio-top-body .project-img figure:before {
  background: linear-gradient(360deg, rgb(7 68 104) 1%, rgba(1, 5, 53, 0) 42%) !important;
}

.our-approachBG1 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.our-approachBG1 .rightBgImg_service {
  background: url(../images/our-servicebg-1.png), linear-gradient(73.84deg, #FFFFFF 50.74%, #FFE0FF 91.77%);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% 100%;
  transition: background-position 0.4s ease-in-out, background-size 0.4s ease-in-out;
  padding: 60px;
  background-color: #e6ecf2;
  border-radius: 8px;
  height: 560px;
}

.businessTranformationBg .rightBgImg_service {
  background-image: url(../images/our-servicebg-3.png), linear-gradient(292.86deg, #FFFFFF 50.74%, #E0FFFD 91.77%) !important;
  height: 560px;
}

.our-approachBG1 .what-we-do-content.white-bg {
  background: #fff;
  padding: 30px;
  box-shadow: 0px 4px 34px 10px #0000000D;
  border-radius: 10px;
}

.our-approachBG1 .what-we-do-content.white-bg .what-we-do-body {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.end-to-endBG1 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.end-to-endBG1 .leftBgImg_service {
  background: url(../images/our-servicebg-2.png), linear-gradient(73.84deg, #FFFFFF 46.44%, #E0EDFF 98.25%);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% 100%;
  transition: background-position 0.4s ease-in-out, background-size 0.4s ease-in-out;
  padding: 60px;
  background-color: #EDF2E6;
  border-radius: 8px;
  height: 560px;
}

.cloudServiceBg .leftBgImg_service {
  background-image: url(../images/our-servicebg-4.png), linear-gradient(292.86deg, #FFFFFF 48.59%, #E4E0FF 92.88%) !important;
  height: 560px;
}

.end-to-endBG1 .what-we-do-content.white-bg {
  background: #fff;
  padding: 30px;
  box-shadow: 0px 4px 34px 10px #0000000D;
  border-radius: 10px;
}

.end-to-endBG1 .what-we-do-content.white-bg .what-we-do-body {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.icon-box-height-cstm img {
  max-height: 50px !important;
  width: auto;
}

@media only screen and (max-width: 991px) {
  .our-approachBG1 .rightBgImg_service {
    background-image: linear-gradient(73.84deg, #FFFFFF 50.74%, #FFE0FF 91.77%);
    height: unset;
  }

  .end-to-endBG1 .leftBgImg_service {
    background-image: linear-gradient(73.84deg, #FFFFFF 46.44%, #E0EDFF 98.25%);
    height: unset;
  }

  .end-to-endBG1 .leftBgImg_service .section-title {
    text-align: left !important;
  }

  .our-approachBG1 .rightBgImg_service .section-title {
    text-align: left !important;
  }

  .businessTranformationBg .rightBgImg_service {
    background-image: linear-gradient(292.86deg, #FFFFFF 50.74%, #E0FFFD 91.77%) !important;
    height: unset;
  }

  .cloudServiceBg .leftBgImg_service {
    background-image: linear-gradient(292.86deg, #FFFFFF 48.59%, #E4E0FF 92.88%) !important;
    height: unset;
  }

  .our-approachBG1 .what-we-do-content.white-bg {
    padding: 30px 10px !important;
  }

  .end-to-endBG1 .what-we-do-content.white-bg {
    padding: 30px 10px !important;
  }

  .our-approachBG1 ul li {
    line-height: 22px;
  }

  .explore-more-btn {
    position: relative !important;
    padding-left: 0 !important;
  }

  .project-content p {
    width: 100%;
  }

  .page-projects.portfolioSection .container {
    width: 95%;
  }
  
}

.hireJSDevSlideP a {
  border: 0px;
  color: #58a70d !important;
}

.hireJSDevSlideP a:hover {
  color: #1956c1 !important;
}

/* About React Native Section Styling - Dark Theme */
#about-reactjs-blk {
  padding: 80px 0;
  background: linear-gradient(135deg, #083d67 0%, #0a4a7a 50%, #083d67 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(8, 61, 103, 0.3);
}

#about-reactjs-blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(32, 131, 210, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(88, 167, 13, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#about-reactjs-blk .container {
  position: relative;
  z-index: 1;
}

#about-reactjs-blk .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#about-reactjs-blk .section-title p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e8f0;
  margin-bottom: 15px;
}

/* React Native Reasons Section Styling */
#react-native-reasons-blk {
  padding: 0px 0;
  background: #ffffff;
  position: relative;
}

#react-native-reasons-blk .container {
  position: relative;
  z-index: 1;
}

/* Alternate row backgrounds - Light and Dark combination */
#react-native-reasons-blk .reason-row-odd {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 20px;
  margin-left: -20px;
  margin-right: -20px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

#react-native-reasons-blk .reason-row-even {
  background: linear-gradient(135deg, #083d67 0%, #0a4a7a 100%);
  padding: 40px 20px;
  margin-left: -20px;
  margin-right: -20px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(8, 61, 103, 0.2);
}

#react-native-reasons-blk .reason-row-odd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(32, 131, 210, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 95% 90%, rgba(88, 167, 13, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  border-radius: 12px;
}

#react-native-reasons-blk .reason-row-even::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 95% 10%, rgba(32, 131, 210, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(88, 167, 13, 0.15) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  border-radius: 12px;
}

#react-native-reasons-blk .row .section-title {
  position: relative;
  z-index: 1;
}

/* Light row (odd) text styles */
#react-native-reasons-blk .reason-row-odd .section-title h3 {
  font-size: 26px;
  font-weight: 700;
  color: #083d67;
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  padding-left: 15px;
}

#react-native-reasons-blk .reason-row-odd .section-title h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #2083d2 0%, #58a70d 100%);
  border-radius: 2px;
}

#react-native-reasons-blk .reason-row-odd .section-title p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Dark row (even) text styles */
#react-native-reasons-blk .reason-row-even .section-title h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  padding-left: 15px;
}

#react-native-reasons-blk .reason-row-even .section-title h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #58a70d 0%, #2083d2 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(88, 167, 13, 0.5);
}

#react-native-reasons-blk .reason-row-even .section-title p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e8f0;
  margin-bottom: 15px;
}

/* Hover effects for rows */
#react-native-reasons-blk .reason-row-odd:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f0f5f9 100%);
}

#react-native-reasons-blk .reason-row-even:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(8, 61, 103, 0.4);
  background: linear-gradient(135deg, #0a4a7a 0%, #083d67 100%);
}

/* ------------privacy page css------------ */
.privacy-text {
  color: #222;
  line-height: 29px;
}

.privacyContainer {
  background: #f2f1f1;
  padding: 40px 20px 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
}

.privacy-title {
  font-size: 20px;
  font-weight: 600;
  color: #083d67;
  margin-bottom: 5px;
}

.privacy-ul li {
  color: #222;
  padding-bottom: 13px;
  line-height: 24px;
}

.privacyContainer.blue {
  background-color: #083d67;
}

.privacyContainer.blue .privacy-ul li {
  color: #fff;
}

.privacyContainer.blue .privacy-title {
  color: #fff;
}

.privacyContainer.blue .privacy-text {
  color: #fff;
}

.termSec {
  padding-bottom: 20px;
}

.sitemapSec {
  padding-top: 30px;
}

.sitemap-subul {
  padding-left: 110px;
}

.sitemapSec li {
  list-style: none;
}

.sitemap-ul li a {
  font-size: 18px;
  font-weight: 600;
  color: #083d67;
  padding-bottom: 16px;
  display: inline-block;
}

.sitemap-subul li a {
  font-size: 15px;
  color: #222;
  font-weight: 500;
}

.sitemap-ul li i {
  padding-right: 10px;
  color: #05396a;
}

.sitemap-list h6 {
  padding-left: 80px;
  color: #083d67;
  padding-bottom: 14px;
}

.letUS h3 {
  padding-bottom: 20px;
}

.letUS p {
  color: #333;
}

.ibm_img img {
  min-height: 300px;
  object-fit: cover;
  object-position: right;
}

.industryIot {
  padding-top: 65px;
}

.industryIot .analytics-specialty-content p {
  padding-top: 12px;
}

.industryIot .analytics-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 10px;
}

.industryIot .analytics-icon-box img {
  width: 70%;
}

.industryIot .analytics-icon-box i {
  font-size: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  #about-reactjs-blk {
    padding: 60px 0;
  }

  #about-reactjs-blk .section-title h2 {
    font-size: 32px;
  }

  #about-reactjs-blk .section-title p {
    font-size: 15px;
  }

  #react-native-reasons-blk {
    padding: 60px 0;
  }

  #react-native-reasons-blk .reason-row-odd,
  #react-native-reasons-blk .reason-row-even {
    padding: 30px 15px;
    margin-left: -15px;
    margin-right: -15px;
  }

  #react-native-reasons-blk .reason-row-odd .section-title h3,
  #react-native-reasons-blk .reason-row-even .section-title h3 {
    font-size: 24px;
  }

  #react-native-reasons-blk .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  #about-reactjs-blk {
    padding: 50px 0;
  }

  #about-reactjs-blk .section-title h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  #about-reactjs-blk .section-title p {
    font-size: 15px;
    line-height: 1.7;
  }

  #about-reactjs-blk .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  #react-native-reasons-blk {
    padding: 50px 0;
  }

  #react-native-reasons-blk .reason-row-odd,
  #react-native-reasons-blk .reason-row-even {
    padding: 25px 12px;
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 8px;
  }

  #react-native-reasons-blk .reason-row-odd .section-title h3,
  #react-native-reasons-blk .reason-row-even .section-title h3 {
    font-size: 22px;
    padding-left: 12px;
    margin-bottom: 15px;
  }

  #react-native-reasons-blk .reason-row-odd .section-title h3::before,
  #react-native-reasons-blk .reason-row-even .section-title h3::before {
    width: 3px;
  }

  #react-native-reasons-blk .reason-row-odd .section-title p,
  #react-native-reasons-blk .reason-row-even .section-title p {
    font-size: 15px;
    line-height: 1.7;
  }

  #react-native-reasons-blk .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  #about-reactjs-blk {
    padding: 40px 0;
  }

  #about-reactjs-blk .section-title h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  #about-reactjs-blk .section-title p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  #about-reactjs-blk .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  #react-native-reasons-blk {
    padding: 40px 0;
  }

  #react-native-reasons-blk .reason-row-odd,
  #react-native-reasons-blk .reason-row-even {
    padding: 20px 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 6px;
  }

  #react-native-reasons-blk .reason-row-odd .section-title h3,
  #react-native-reasons-blk .reason-row-even .section-title h3 {
    font-size: 20px;
    padding-left: 10px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  #react-native-reasons-blk .reason-row-odd .section-title h3::before,
  #react-native-reasons-blk .reason-row-even .section-title h3::before {
    width: 3px;
  }

  #react-native-reasons-blk .reason-row-odd .section-title p,
  #react-native-reasons-blk .reason-row-even .section-title p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  #react-native-reasons-blk .row {
    margin-left: 0;
    margin-right: 0;
  }

  #react-native-reasons-blk .row.mb-5 {
    margin-bottom: 30px !important;
  }
}

/* Help Healthcare Section - Dark Theme */
.help-healthcare-sec-dark {
  padding: 80px 0;
  background: linear-gradient(135deg, #083d67 0%, #0a4a7a 50%, #083d67 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(8, 61, 103, 0.3);
}

.help-healthcare-sec-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(32, 131, 210, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(88, 167, 13, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.help-healthcare-sec-dark .container {
  position: relative;
  z-index: 1;
}

.help-healthcare-sec-dark .healthcare-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.help-healthcare-sec-dark .healthcare-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e8f0;
  margin-bottom: 15px;
}

/* Help Healthcare Section - Light Theme */
.help-healthcare-sec-light {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.help-healthcare-sec-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(32, 131, 210, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 95% 90%, rgba(88, 167, 13, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.help-healthcare-sec-light .container {
  position: relative;
  z-index: 1;
}

.help-healthcare-sec-light .healthcare-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #083d67;
  margin-bottom: 25px;
  line-height: 1.3;
}

.help-healthcare-sec-light .healthcare-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.healthcare-image {
  text-align: center;
}

.healthcare-image img {
  max-height: 400px;
}

.portfolio-modal .modal-close-btn {
  padding: 0 0;
  font-size: 19px;
  right: 12px;
  top: 9px;
}

.portfolio-modal .portfolioTech .logo-box {
  width: 100px;
}

.portfolio-modal .portfolioTitle p {
  line-height: 26px;
  padding-top: 4px;
  font-size: 15px;
}

.portfolio-modal .logoBox h2 {
  font-size: 20px;
}

.portfolio-modal .explore-more-btn {
  position: relative;
  min-width: 160px;
}

.portfolio-modal .logoBox img {
  width: 60px !important;
}

.portfolio-modal .opportunities-body ul {
  gap: 0;
}

.portfolio-modal .opportunities-body ul li {
  padding-bottom: 10px;
}

.portfolio-modal .opportunities-body ul li::before {
  top: 10px;
}

.portfolio-industry-tag {
  line-height: 20px !important;
}

/* Responsive adjustments for Help Healthcare Sections */
@media (max-width: 992px) {

  .help-healthcare-sec-dark,
  .help-healthcare-sec-light {
    padding: 60px 0;
  }

  .help-healthcare-sec-dark .healthcare-content h2,
  .help-healthcare-sec-light .healthcare-content h2 {
    font-size: 32px;
  }

  .help-healthcare-sec-dark .healthcare-image,
  .help-healthcare-sec-light .healthcare-image {
    text-align: center;
    margin-bottom: 30px;
  }

  .help-healthcare-sec-dark .healthcare-image img,
  .help-healthcare-sec-light .healthcare-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {

  .help-healthcare-sec-dark,
  .help-healthcare-sec-light {
    padding: 50px 0;
  }

  .help-healthcare-sec-dark .healthcare-content h2,
  .help-healthcare-sec-light .healthcare-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .help-healthcare-sec-dark .healthcare-content p,
  .help-healthcare-sec-light .healthcare-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .help-healthcare-sec-dark .row,
  .help-healthcare-sec-light .row {
    margin-left: 0;
    margin-right: 0;
  }

  .help-healthcare-sec-dark .healthcare-image,
  .help-healthcare-sec-light .healthcare-image {
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {

  .help-healthcare-sec-dark,
  .help-healthcare-sec-light {
    padding: 40px 0;
  }

  .help-healthcare-sec-dark .healthcare-content h2,
  .help-healthcare-sec-light .healthcare-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .help-healthcare-sec-dark .healthcare-content p,
  .help-healthcare-sec-light .healthcare-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .help-healthcare-sec-dark .container,
  .help-healthcare-sec-light .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .help-healthcare-sec-dark .healthcare-image,
  .help-healthcare-sec-light .healthcare-image {
    margin-bottom: 20px;
  }

  .help-healthcare-sec-dark .healthcare-image img,
  .help-healthcare-sec-light .healthcare-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* Additional Responsive Styles for Images and Layout */
@media (max-width: 768px) {
  .healthcare-image {
    text-align: center;
    margin-bottom: 30px;
  }

  .healthcare-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .row.align-items-center {
    align-items: flex-start !important;
  }

  #about-reactjs-blk .row {
    margin-left: 0;
    margin-right: 0;
  }

  #about-reactjs-blk .col-lg-6 {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .healthcare-image {
    margin-bottom: 25px;
  }

  .healthcare-image img {
    width: 100%;
    max-width: 100%;
  }

  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }

  #about-reactjs-blk .col-lg-6 {
    margin-bottom: 25px;
  }

  #react-native-reasons-blk .col-lg-6 {
    margin-bottom: 20px;
  }
}

/* Ensure proper spacing on all devices */
@media (max-width: 991px) {

  .help-healthcare-sec-dark .row,
  .help-healthcare-sec-light .row {
    margin-left: 0;
    margin-right: 0;
  }

  .help-healthcare-sec-dark [class*="col-"],
  .help-healthcare-sec-light [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }

  .portfolio-modal .opportunities-content {
    padding-top: 20px !important;
  }

  .logoBox {
    flex-wrap: wrap;
  }

  .logoLeft {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .portfolio-modal .portfolioTitle p {
    padding-top: 2px;
  }
}

.about-reactjs {
  padding: 50px 0px;
  margin-top: 50px;
}


/* Suraj Css */
.flutter-Bg {
  background: #fbfbfb;
  margin: 50px 0px;
}

.native-reasons .nav-item .nav-link {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
}

.check-icon-green {
  color: #6da12a;
  font-size: 24px;
  margin-right: 15px;
  font-weight: bold;
}

.list-text-style {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
}

.we-offer-list-custom {
  margin-bottom: 20px;
  padding: 0px;
}

.we-offer-list-custom li {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 10px 0px;
}

.oil-gas-item-custom {
  visibility: visible;
  animation-delay: 0.2s;
  animation-name: fadeInUp;
  border: 2px solid #2083d2;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 15px rgba(32, 131, 210, 0.2);
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

/* 24-Nov-2025 */
.cstom-swipper-home .post-featured-image a {
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  bottom: 30px;
  height: 0px;
  margin-top: 0px;
  top: unset;
  background: #fff;
  padding: 18px 18px;
  border-radius: 5%;
  border: 1px solid #237abf;
  color: #237abf;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
  background: #237abf;
}

.swiper-button-prev {
  left: 45%;
}

.swiper-button-next {
  right: 45%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;

}

/* Portfolio Filter Buttons */
.portfolio-filter-buttons {
  margin-bottom: 40px;
}

.portfolio-filter-buttons .filter-btn {
  background: transparent;
  border: 2px solid #2083d2;
  color: #2083d2;
  padding: 12px 30px;
  margin: 0 10px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.portfolio-filter-buttons .filter-btn:hover {
  background: #2083d2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 131, 210, 0.3);
}

.portfolio-filter-buttons .filter-btn.active {
  background: #2083d2;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(32, 131, 210, 0.3);
}

.portfolio-item {
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .portfolio-filter-buttons .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin: 5px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    bottom: 0;
  }

  .swiper-button-prev {
    left: 40%;
  }

  .swiper-button-next {
    right: 40%;
  }
}

.portfolio-top-body .project-item {
  cursor: pointer;
}

.explore-more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  background: unset;
}

.btn-default.explore-more-btn::before {
  top: 47%;
  right: 2px;
}

.btn-default.explore-more-btn {
  padding: 5px 26px 5px 8px;
  line-height: unset;
  border-radius: 5px;
  /* background: linear-gradient(to right, #6da12a 0%, #2083d2 30%); */
}

.btn-default.explore-more-btn:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.btn-default.explore-more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

/*Portfolio Modal Css */
.portfolio-modal .modal-content {
  position: relative;
  background: url(../images/our-opportunities-bg.jpg) no-repeat;
  background-position: center center;
  background-size: contain;
  border: 1px solid #fff;
}

.portfolio-modal .modal-content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 90%;
  z-index: 0;
}

.portfolio-modal .opportunities-image.portfolioBanner {
  display: flex;
  /* align-items: baseline; */
}

.portfolio-modal .opportunities-content {
  padding-top: 0px;
}

.portfolio-modal .portfolioBanner img {
  margin-bottom: 0px;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 35px;
  color: #fff;
  z-index: 999;
  cursor: pointer;
}

.our-approachBG1.nospace {
  padding: 0 0 !important;
}

.customTab {
  background-color: transparent !important;
  border: none !important;
}

.portfolioTab .nav-tabs .nav-link {
  color: #fff;
  font-size: 21px;
  padding: 14px 30px 12px;
  border-radius: 30px;
  border: 1px solid;
}

.portfolioTab .nav-tabs .nav-link.active {
  background: #083d67;
  color: #fff;
  padding-bottom: 12px;
}


.portfolioTab .nav-tabs .nav-link {
  color: #fff;
  font-weight: 600;
  margin-left: 10px;
}

.portfolioTab .nav-tabs {
  border-bottom: none;
}

.nestedTab .nav-link {
  background: #fff;
  border: 1px solid #b7b7b747;
  color: #222;
  font-weight: 500;
  margin: 5px 2px;
  border-radius: 30px;
}

.nestedTab {
  margin-bottom: 27px;
}

.nestedTab .nav-link.active {
  background-color: #9bcdf48c;
  border: 1PX solid #9bcdf48c;
  border-radius: 30px;
  color: #222;
}

.portfolioTab {
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 3px;
  /* Set the width of the scrollbar */
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
  background: #fff;
  /* Light grey background for the track */
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background: #010535;
  /* Dark grey thumb */
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Darker thumb when hovered */
}

.portfolioSection {
  background-color: #fff;
}

/* .portfolioSection .section-title h2{
  color: #000 !important;
} */

.portfolioSection .project-img {
  border: 0px solid #999;
  border-radius: 20px;
}

/* 1-dec-2025 */
.portfolio-industry-tag {
  font-size: 14px !important;
  padding-left: 12px !important;
  color: #fff;
  margin-top: 0 !important;
  text-transform: capitalize;
}

/* 9 dec */
.automation-ul {
  padding-left: 5px;
  margin-top: 10px;
  list-style: none;
}

.automation-ul li {
  line-height: 2em;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.automation-ul li .fa-check {
  margin-right: 10px;
  color: #237abf;
}

/* rahib css contact us page css */
.multiselect-contact-page .customSelect.test {
  padding-left: 22px !important;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
  width: 100% !important;
}

.portfolio-modal .modal-header {
  padding: 7px 0 !important;
}

.portfolioHeading {
  padding-bottom: 0;
  margin-bottom: 15px;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .page-header.service-header .page-header-box {
    width: 50%;
  }

  .topheadding-text-span {
    font-size: 28px;
  }

  .page-header.customBanner .page-header-box h2 {
    font-size: 50px !important;
  }

  .page-header.customBanner .page-header-box h1 {
    font-size: 50px !important;
    line-height: 1.1em;
  }

  .page-header.customBanner .page-header-box .header-banner-sub-headding {
    font-size: 24px;
    line-height: 1.2em;
  }
  .page-header.customBanner .page-header-box .bannerTag {
    font-size: 24px;
    line-height: 1.2em;
  }
  .page-header.customBanner .page-header-box {
    max-width: 650px;
    width: auto;
  }
}