﻿/**************************************************
    TECHWORKS WEBSITE - MAIN STYLESHEET
    Version: 1.0
    Description: Complete styling for TechWorks website
    Author: TechWorks Team
    Last Updated: 2024
**************************************************/

@import "https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap";

/*******************************
    CSS VARIABLES & THEMES
*******************************/

:root {
  --kumbh: "Kumbh Sans", sans-serif;
  --primary-color: #3c72fc;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
  --secondary-color: #0f0d1d;
  --main-bg: #ffffff;
  --sub-bg: #f3f7fb;
  --heading-color: #0f0d1d;
  --paragraph: #585858;
  --span: #585858;
  --border: #e3e3e3;
  --white: #ffffff;
  --black: #000000;
  --border-1px: 1px solid #eaecf0;
  --border-2px: 2px solid #eaecf0;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}
:root[data-theme="dark"] {
  --primary-color: #3c72fc;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
  --secondary-color: #0f0d1d;
  --main-bg: #151327;
  --sub-bg: #16142c;
  --heading-color: #fff;
  --paragraph: rgba(255, 255, 255, 0.8);
  --span: rgba(255, 255, 255, 0.8);
  --border: #e3e3e3;
  --white: #ffffff;
  --black: #000000;
}
:root[data-theme="dark"] .light-area {
  --primary-color: #3c72fc;
  --primary10: rgba(60, 114, 252, 0.1);
  --gradient-bg: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
  --secondary-color: #0f0d1d;
  --main-bg: #ffffff;
  --sub-bg: #f3f7fb;
  --heading-color: #0f0d1d;
  --paragraph: #585858;
  --span: #585858;
  --border: #e3e3e3;
  --white: #ffffff;
  --black: #000000;
}
/*******************************
    BASE STYLES & RESET
*******************************/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
/*******************************
    TYPOGRAPHY & BODY STYLES
*******************************/

body {
  margin: 0;
  padding: 0;
  font-family: var(--kumbh);
  color: var(--paragraph);
  background-color: var(--main-bg);
  line-height: 28px;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--heading-color);
  font-family: var(--kumbh);
}
h1 {
  font-size: 90px;
  font-weight: 700;
  line-height: 100px;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
h4 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
}
h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}
h6 {
  font-size: 14px;
  font-weight: 600;
}
p {
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-size: 16px;
}
span {
  display: inline-block;
  color: var(--span);
}
a {
  text-decoration: none;
  display: inline-block;
  color: var(--heading-color);
  transition: var(--transition);
}
a:hover {
  color: var(--heading-color);
}
ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
}
li {
  list-style: none;
}
button {
  border: none;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 991px) {
  br {
    display: none;
  }
}
::placeholder {
  color: var(--span);
}
::selection {
  color: var(--white);
  background-color: var(--primary-color);
}
/*******************************
    UTILITY CLASSES
*******************************/

.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-95 {
  margin-bottom: 95px;
}
.ml-20 {
  margin-left: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-120 {
  padding-top: 120px;
}
.pt-200 {
  padding-top: 200px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pb-200 {
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
  .pb-120 {
    padding-bottom: 60px;
  }
  .pb-60 {
    padding-bottom: 30px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
}
.bor {
  border: 1px solid var(--border);
}
.bor-top {
  border-top: 1px solid var(--border);
}
.bor-left {
  border-left: 1px solid var(--border);
}
.bor-bottom {
  border-bottom: 1px solid var(--border);
}
.bor-right {
  border-right: 1px solid var(--border);
}
.border-none {
  border: none !important;
}
.text-justify {
  text-align: justify;
}
.image img {
  width: 100%;
}
.primary-color {
  color: var(--primary-color) !important;
}
.primary-hover:hover {
  color: var(--primary-color) !important;
}
.primary-bg {
  background-color: var(--primary-color) !important;
}
.gradient-bg {
  background: var(--gradient-bg) !important;
}
.secondary-color {
  color: var(--secondary-color);
}
.secondary-bg {
  background-color: var(--secondary-color);
}
.sub-bg {
  background-color: var(--sub-bg);
}
.sm-font {
  font-size: 14px !important;
}
.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.transition {
  transition: var(--transition);
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.overlay,
.banner-video__wrp,
.brand-three-area,
.case__image,
.banner__inner-page,
.header__main .main-menu ul li .sub-menu.menu-image .image {
  position: relative;
}
.overlay::before,
.banner-video__wrp::before,
.brand-three-area::before,
.case__image::before,
.banner__inner-page::before,
.header__main .main-menu ul li .sub-menu.menu-image .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.nice-select {
  width: 100%;
  border-radius: 10px;
  height: 50px;
  line-height: 50px;
}
.nice-select:focus {
  border: 1px solid var(--primary-color);
}
.nice-select .list {
  width: 100%;
}
.star i {
  color: var(--primary-color);
}
.star i.disable {
  color: var(--span);
  opacity: 40%;
}
.pegi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pegi a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--sub-bg);
  color: var(--heading-color);
  font-weight: 700;
  border-radius: 0;
}
.pegi a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.pegi a:hover i {
  color: var(--white) !important;
}
.pegi a.active {
  background-color: var(--primary-color);
  color: var(--white);
}
.accordion .accordion-item {
  border: var(--border-1px);
  border-radius: 0px;
  margin-bottom: 10px;
}
.accordion .accordion-item.dark-mode {
  background-color: var(--secondary-color);
}
.accordion .accordion-item h2 button {
  font-size: 15px;
  line-height: 28px;
  font-weight: 700;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 20px 30px;
}
.accordion .accordion-item .accordion-body {
  padding: 20px 30px;
  padding-top: 0;
}
.accordion .accordion-item .accordion-body p {
  color: var(--paragraph);
}
.accordion .accordion-button {
  background-color: rgba(0, 0, 0, 0);
  color: var(--primary-color);
}
.accordion .accordion-button::after {
  display: none;
}
.accordion .accordion-button::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 20px;
  right: 25px;
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0px;
  color: var(--white);
  background-color: var(--primary-color);
  text-align: center;
  transition: var(--transition);
}
.accordion .accordion-button.collapsed {
  background-color: rgba(0, 0, 0, 0);
  color: var(--heading-color);
}
.accordion .accordion-button.collapsed::before {
  content: "+";
  background-color: var(--sub-bg);
  color: var(--primary-color);
}
.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(60, 114, 252, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  background: rgba(0, 0, 0, 0);
  font-size: 25px;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--white);
}
input.main-search-input::placeholder {
  color: var(--white);
  opacity: 1;
  font-size: 25px;
}
@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--white);
  cursor: pointer;
}
.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99999999999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1px;
  overflow: hidden;
  background: hsla(0, 0%, 100%, 0.05);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.pace .pace-progress {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 300px;
  position: fixed;
  z-index: 99999999999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: var(--primary-color);
}
.pace.pace-inactive {
  width: 100vw;
  opacity: 0;
}
.pace.pace-inactive .pace-progress {
  max-width: 100vw;
}
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
}
#preloader:after {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: var(--black);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  bottom: 0;
}
#preloader:before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: var(--black);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  top: 0;
}
#preloader.isdone {
  visibility: hidden;
  opacity: 0;
  display: none !important;
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
#preloader.isdone:after {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
#preloader.isdone:before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.loading {
  position: fixed;
  width: 100%;
  text-align: center;
  left: 50%;
  top: calc(50% - 40px);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-weight: 400;
  font-size: 24px;
  text-transform: lowercase;
  letter-spacing: 5px;
  z-index: 9999999999;
}
.loading span {
  -webkit-animation: loading 1.4s infinite alternate;
  animation: loading 1.4s infinite alternate;
}
.loading span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.loading span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loading span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loading span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loading span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loading span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.loading span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.loading.isdone {
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  visibility: hidden;
  display: none !important;
}

/* Failsafe: Force hide preloader after 3 seconds regardless of JavaScript */
#preloader {
  animation: forceHidePreloader 0s linear 3s forwards;
}

@keyframes forceHidePreloader {
  to {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -9999 !important;
  }
}
@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--primary-color);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  opacity: 0.3;
}
.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.cursor-outer.cursor-hover {
  opacity: 0;
}
.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--border);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: var(--transition);
}
.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: var(--transition);
}
.scroll-up svg path {
  fill: none;
}
.scroll-up svg.scroll-circle path {
  stroke: var(--primary-color);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: var(--transition);
}
.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btn-one {
  padding: 15px 25px;
  background: var(--gradient-bg);
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-one i {
  margin-left: 8px;
  transition: var(--transition);
}
@media (max-width: 575px) {
  .btn-one i {
    margin-left: 3px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .btn-one {
    padding: 8px 18px;
    font-size: 14px;
  }
}
.btn-one::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: var(--secondary-color);
  z-index: -1;
  transition: var(--transition);
}
.btn-one::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 0;
  content: "";
  background-color: var(--secondary-color);
  z-index: -1;
  transition: var(--transition);
}
.btn-one:hover {
  color: var(--white);
}
.btn-one:hover::before {
  height: 100%;
}
.btn-one:hover::after {
  height: 100%;
}
.btn-one:hover i {
  transform: translate(5px);
}
.read-more-btn {
  text-transform: capitalize;
  font-weight: 600;
  color: var(--paragraph);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.read-more-btn i {
  margin-left: 5px;
  transition: var(--transition);
}
.read-more-btn:hover {
  color: var(--primary-color);
}
.read-more-btn:hover i {
  color: var(--primary-color);
  margin-left: 10px;
  transform: scale(1.1);
}
.arry-prev,
.arry-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--primary-color);
  transition: var(--transition);
  border: 1px solid var(--primary-color);
  font-size: 20px;
}
.arry-prev:hover,
.arry-next:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.arry-prev.active,
.active.arry-next {
  background-color: var(--primary-color);
  color: var(--white);
}
.dot .swiper-pagination-bullet,
.dot-light .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.6s;
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0);
}
.dot .swiper-pagination-bullet::before,
.dot-light .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: 0.6s;
}
.dot .swiper-pagination-bullet.swiper-pagination-bullet-active,
.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--primary-color);
}
.dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--primary-color);
}
.dot-light .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
}
.dot-light .swiper-pagination-bullet::before {
  background-color: var(--white);
}
.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid hsla(0, 0%, 100%, 0.2);
}
.dot-light .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--primary-color);
}
.video-btn {
  position: relative;
  text-align: center;
  display: inline-block;
  z-index: 2;
}
.video-btn a {
  position: relative;
  color: var(--white);
  font-size: 20px;
  z-index: 1;
  background: var(--gradient-bg);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
}
.video-btn.video-pulse::after,
.video-btn.video-pulse::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 10px solid var(--primary-color);
  opacity: 0.7;
  left: 0;
  top: 0;
  border-radius: 50%;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: video-animation;
  animation-name: video-animation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.video-btn.video-pulse::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.progress-area .progress {
  background-color: var(--border);
  height: 12px;
  border-radius: 0px;
}
.progress-area .progress.dark-mode {
  background-color: var(--secondary-color);
}
.progress-area .progress .progress-bar {
  background-color: var(--primary-color);
}
.progress__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.progress__title span {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}
.logo {
  display: block;
  width: 400px;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}

.sidebar-area .logo {
  width: 220px;
}
.logo img {
  width: 100%;
}
.header-top {
  padding: 16px 0;
  overflow: hidden;
  background-color: var(--heading-color);
}
.header-top .header-top-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top .header-top-wrp .info {
  color: var(--white);
}
.header-top .header-top-wrp .info span {
  color: var(--white);
}
.header-top .header-top-wrp .info a {
  transition: var(--transition);
  color: var(--white);
  font-size: 15px;
}
.header-top .header-top-wrp .info a:hover {
  color: var(--primary-color);
}
.header-top .header-top-wrp .info i {
  color: var(--primary-color);
  padding-right: 5px;
}
.header-top .header-top-wrp .info li {
  float: left;
  line-height: 0;
}
.header-top .header-top-wrp .link-info {
  position: relative;
  z-index: 2;
}
.header-top .header-top-wrp .link-info li {
  float: left;
  line-height: 0;
}
.header-top .header-top-wrp .link-info li a {
  width: 37px;
  color: var(--white);
  text-align: center;
}
.header-top .header-top-wrp .link-info li a:hover {
  color: var(--primary-color);
}
/*******************************
    HEADER & NAVIGATION
*******************************/

.header-area {
  position: relative;
}
.header-area::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  background: linear-gradient(270deg, #3c72fc 6.32%, #00060c 216.42%);
  height: 100%;
  content: "";
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

@media (max-width: 1199px) {
  .header-area::after {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .header-area::after {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .header-area::after {
    width: 40%;
  }
}
@media (max-width: 575px) {
  .header-area::after {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .header-area::after {
    width: 70%;
  }
}

.header-area.menu-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: var(--white);
  z-index: 999;
  box-shadow: var(--shadow);
}
.header-area.menu-fixed .mega-menu {
  top: 105px !important;
}
.header__container {
  max-width: 1350px;
  padding: 0 15px;
}

.header__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header__main .main-menu ul {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header__main .main-menu ul li {
  position: relative;
}
.header__main .main-menu ul li.has-megamenu {
  position: static;
}
.header__main .main-menu ul li.has-megamenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
}
.header__main .main-menu ul li a {
  font-weight: 600;
  font-size: 1.4rem;
  padding: 40px 0;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 0 0 5px rgba(0, 0, 0, 0.8),
    0 0 2px rgba(0, 0, 0, 0.7);
}

@media (max-width: 1023px) {
  .header__main .main-menu ul li a {
    font-size: 1.2rem;
  }
}
.header__main .main-menu ul li a i {
  font-size: 12px;
  transition: var(--transition);
}
.header__main .main-menu ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 105px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  width: 250px;
  border: var(--border-1px);
  background-color: var(--white);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
/*box-shadow: none;*/
}

.header__main .main-menu ul li .sub-menu a {
  text-shadow: none !important;
}

.header__main .main-menu ul li .sub-menu.mega-menu {
  max-width: 1170px;
  width: 100%;
  left: 50%;
  top: 105px;
  transform: translateX(-50%) translateY(10px);
  padding: 30px;
}
.header__main .main-menu ul li .sub-menu.mega-menu li {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-around;
}
.header__main .main-menu ul li .sub-menu.menu-image .image {
  position: relative;
}
.header__main .main-menu ul li .sub-menu.menu-image .image::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.header__main .main-menu ul li .sub-menu.menu-image .image h6 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
}
.header__main .main-menu ul li .sub-menu.menu-image .image .btn__group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-top: 20px;
}
.header__main
  .main-menu
  ul
  li
  .sub-menu.menu-image
  .image
  .btn__group
  .btn-one {
  color: var(--white) !important;
}
.header__main .main-menu ul li .sub-menu.menu-image .image:hover .btn__group {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header__main .main-menu ul li .sub-menu li {
  width: 100%;
}
.header__main .main-menu ul li .sub-menu li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.header__main .main-menu ul li .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--heading-color) !important;
}
.header__main .main-menu ul li .sub-menu li a:hover {
  padding-left: 25px;
  color: var(--primary-color) !important;
}
.header__main .main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header__main .main-menu ul li:hover:hover a {
  color: var(--primary-color);
}
.header__main .main-menu ul li:hover:hover i {
  transform: rotate(-180deg);
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .header__main {
    padding: 15px 0;
  }
}

.header__main .bars i {
  font-size: 18px;
  cursor: pointer;
  display: inline-block;
  color: var(--paragraph);
  padding: 10px;
  border-radius: 10px;
  border: var(--border-1px);
}
.header-two-area {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
}
.header-two-area:after {
  display: none;
}
.header-two-area.menu-fixed {
  background: linear-gradient(90deg, #0f0d1d -76.72%, #3c72fc 191.51%);
  border-bottom: none;
}
.header-two-area .header__main .main-menu ul li a {
  color: var(--white);
}
.header-two-area .header__main .bars i {
  color: var(--white);
}
.header-three-area {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
}
.header-three-area:after {
  display: none;
}
.header-three-area.menu-fixed {
  background: linear-gradient(90deg, #0f0d1d -76.72%, #3c72fc 191.51%);
  border-bottom: none;
}
.header-three-area .header__main .main-menu ul li a {
  color: var(--white);
  position: relative;
}
.header-three-area .header__main .main-menu ul li a::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    0.49deg,
    #3c72fc -126.52%,
    rgba(60, 114, 252, 0) 92.35%
  );
  width: 85px;
  height: 100%;
  bottom: 0;
  left: -20px;
  opacity: 0;
  visibility: hidden;
}
.header-three-area .header__main .main-menu ul li a.search-trigger::after {
  display: none;
}
.header-three-area .header__main .main-menu ul li:hover a {
  color: var(--white);
}
.header-three-area .header__main .main-menu ul li:hover a::after {
  opacity: 1;
  visibility: visible;
}
.header-three-area .header__main .main-menu .sub-menu {
  left: -20px;
}
.header-three-area .header__main .main-menu .sub-menu a::after {
  display: none;
}
.header-three-area .header__main .bars i {
  color: var(--white);
}
.mean-nav .mega-menu .image {
  padding: 20px;
  border: var(--border-1px);
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}
.mean-nav .mega-menu .image h6 {
  margin-top: 20px;
}
.mean-nav .btn__group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mean-nav .btn__group a {
  text-align: center !important;
  width: 100% !important;
}
.sidebar-area {
  position: fixed;
  top: 0;
  right: 0px;
  width: 400px;
  height: 100%;
  background-color: var(--heading-color);
  padding: 40px;
  padding-top: 30px;
  z-index: 9999;
  transition: var(--transition);
  overflow: hidden;
  overflow-y: auto;
}
@media (max-width: 575px) {
  .sidebar-area {
    width: 350px;
  }
}
.sidebar-area p {
  color: var(--white);
}
.sidebar-area .info {
  border-top: 1px solid hsla(0, 0%, 100%, 0.25);
}
.sidebar-area .info li {
  font-size: 15px;
}
.sidebar-area .info li i {
  margin-right: 8px;
}
.sidebar-area .info li a {
  color: var(--white);
}
.sidebar-area .sidebar__overlay {
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sidebar-area button {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: var(--transition);
}
.sidebar-area button:hover {
  transform: rotate(90deg);
}
.sidebar-area .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid hsla(0, 0%, 100%, 0.25);
  color: var(--primary-color);
  margin-right: 10px;
}
.sidebar-area .social-icon a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
  border: 1px solid var(--primary-color);
}
.sidebar-area.sidebar__hide {
  visibility: hidden;
  opacity: 0;
  right: -30px;
}
.sidebar-area .sidebar__search {
  position: relative;
}
.sidebar-area .sidebar__search input {
  width: 100%;
  padding: 8px 20px;
  padding-right: 40px;
}
.sidebar-area .sidebar__search i {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  color: var(--heading-color);
}
.mobile-menu .meanmenu-reveal {
  display: none !important;
}
.mobile-menu.mean-container .mean-nav > ul {
  width: 100%;
  display: block !important;
}
.mobile-menu ul li a i {
  display: none;
}
/*******************************
    BANNER SECTIONS
*******************************/

.banner-area,
.banner-two-area {
  overflow: hidden;
  position: relative;
}


.video-banner-page,
.video-banner-page .container {
  min-height: 66.67vh;
}

.video-bg video,
.video-bg img,
.video-fallback img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}

@media (max-width: 991px) {
  .video-banner-page,
  .video-banner-page .container {
    min-height: 50vh;
  }
}
@media (max-width: 520px) {
  .video-banner-page,
  .video-banner-page .container {
    min-height: 40vh;
  }
  .video-banner-page .banner-text-bottom-left {
    max-width: 100% !important;
  }
  .video-banner-page .container {
    padding-bottom: 10px !important;
  }
}
/*
@media (max-width: 420px) {
  .video-banner-page,
  .video-banner-page .container {
    min-height: 30vh;
  }
}
*/

.video-bg video {
  display: none; /* Initially hidden until loaded */
}

.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 66.67vh;
  z-index: -1;
  display: block;
}

.video-banner-page .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}

.video-banner-page .video-overlay-text {
  position: relative;
  z-index: 15;
  text-align: right;
  max-width: 40%;
}

.video-overlay-text h2 {
  font-size: 5rem; 
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  line-height: 1.1;
  margin: 0;
}

.video-overlay-text h2 span {
  display: block;
}

.video-overlay-text h2 span:first-child {
  margin-right: 50px; 
}

.video-overlay-text h2 span:last-child {
  margin-left: 0; 
}

.video-banner-page .banner-text-bottom-left {
  position: relative;
  z-index: 10;
  text-align: left;
  max-width: 60%;
  margin-left: 0; /* Remove the 100px margin */
}

.video-banner-page .banner-text-bottom-left h2 {
  margin-bottom: 0; /* Remove the 15px bottom margin */
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  color: #3C72FC !important;
}

.video-banner-page .banner-text-bottom-left .breadcrumb-list {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.video-banner-page .banner-text-bottom-left .breadcrumb-list a,
.video-banner-page .banner-text-bottom-left .breadcrumb-list span {
  color: #3C72FC !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 576px) {
  body:not(.service-detail-page) .video-banner-page .video-overlay-text h2 {
    font-size: 3rem; /* Increased from 2rem to 3rem */
  }
}

@media (max-width: 768px) {
  /* Only apply to main services page, not service detail pages */
  body:not(.service-detail-page) .video-banner-page .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  body:not(.service-detail-page) .video-banner-page .banner-text-bottom-left {
    display: none; /* Hide breadcrumbs on smaller screens */
  }
  
  body:not(.service-detail-page) .video-banner-page .video-overlay-text {
    max-width: 100%;
    text-align: center;
    position: absolute !important;
    bottom: 2% !important;
    right: 0 !important;
    z-index: 15 !important;
    padding-bottom: 60px !important;
  }
  
  body:not(.service-detail-page) .video-banner-page .video-overlay-text h2 {
    font-size: 4rem; /* Increased from 3rem to 4rem */
  }
  
  /* Change video positioning to show left side at 768px breakpoint - MAIN SERVICES PAGE ONLY */
  body:not(.service-detail-page) .video-banner-page .video-bg video {
    transform: translate(-50%, -50%); /* Keep centered transform */
    object-position: left center; /* Show left side of video content */
  }
  
  body:not(.service-detail-page) .video-banner-page .video-bg img,
  body:not(.service-detail-page) .video-banner-page .video-fallback img {
    object-position: left center; /* Show left side of image */
  }
}

.banner__dot-wrp {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
}
.banner__shape-left1 {
  position: absolute;
  top: 30px;
  left: 0;
}
@media (max-width: 575px) {
  .banner__shape-left1 {
    display: none;
  }
}
.banner__shape-left2 {
  position: absolute;
  top: 60px;
  left: 0;
}
@media (max-width: 575px) {
  .banner__shape-left2 {
    display: none;
  }
}
.banner__shape-left3 {
  position: absolute;
  bottom: 0px;
  left: 0;
}
.banner__shape-right1 {
  position: absolute;
  bottom: 0px;
  right: 0;
}
@media (max-width: 767px) {
  .banner__shape-right1 {
    display: none;
  }
}
.banner__shape-right2 {
  position: absolute;
  bottom: 0px;
  right: 0;
}
@media (max-width: 767px) {
  .banner__shape-right2 {
    display: none;
  }
}
.banner__line {
  position: absolute;
  bottom: 25%;
  left: 33%;
  z-index: 2;
}
.banner__right-line1,
.banner__right-line4,
.banner__right-line3,
.banner__right-line2 {
  position: absolute;
  top: -65px;
  right: 0;
}
@media (max-width: 575px) {
  .banner__right-line1,
  .banner__right-line4,
  .banner__right-line3,
  .banner__right-line2 {
    display: none;
  }
}
@media (max-width: 575px) {
  .banner__right-line2 {
    display: none;
  }
}
@media (max-width: 575px) {
  .banner__right-line3 {
    display: none;
  }
}
@media (max-width: 575px) {
  .banner__right-line4 {
    display: none;
  }
}
.banner__content,
.banner-two__content,
.banner-three__content {
  max-width: 770px;
  padding: 218px 0;
  position: relative;
}
@media (max-width: 991px) {
  .banner__content,
  .banner-two__content,
  .banner-three__content {
    padding: 100px 0;
  }
}
.banner__content h4,
.banner-two__content h4,
.banner-three__content h4 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}
.banner__content h4 svg,
.banner-two__content h4 svg,
.banner-three__content h4 svg {
  margin-top: -4px;
}
.banner__content h1,
.banner-two__content h1,
.banner-three__content h1 {
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
}

/* Medium desktop breakpoint for better scaling */
@media (max-width: 1400px) {
  .banner__content h1,
  .banner-two__content h1,
  .banner-three__content h1 {
    font-size: 70px;
    line-height: 80px;
  }
}
@media (max-width: 991px) {
  .banner__content h1,
  .banner-two__content h1,
  .banner-three__content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}

/* Large tablet breakpoint */
@media (max-width: 1200px) {
  .banner__content h1,
  .banner-two__content h1,
  .banner-three__content h1 {
    font-size: 65px;
    line-height: 75px;
  }
}
@media (max-width: 767px) {
  .banner__content h1,
  .banner-two__content h1,
  .banner-three__content h1 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .banner__content h1,
  .banner-two__content h1,
  .banner-three__content h1 {
    font-size: 35px;
    line-height: 50px;
  }
}
.banner__content p,
.banner-two__content p,
.banner-three__content p {
  color: var(--white);
  opacity: 90%;
}
.banner__slider .slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1);
  -webkit-transition: all 9s ease-out 0s;
  -moz-transition: all 9s ease-out 0s;
  -ms-transition: all 9s ease-out 0s;
  -o-transition: all 9s ease-out 0s;
  transition: all 9s ease-out 0s;
}
.banner__slider .swiper-slide-active .slide-bg {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  transform: scale(1.3);
}
.banner-two__shape1 {
  position: absolute;
  right: 0;
  top: 100px;
}
@media (max-width: 575px) {
  .banner-two__shape1 {
    display: none;
  }
}
.banner-two__shape2 {
  position: absolute;
  right: 0;
  top: 130px;
}
@media (max-width: 575px) {
  .banner-two__shape2 {
    display: none;
  }
}
.banner-two__line-left {
  position: absolute;
  left: 0;
  top: 100px;
}
@media (max-width: 575px) {
  .banner-two__line-left {
    display: none;
  }
}
.banner-two__circle-solid {
  position: absolute;
  bottom: -80px;
  left: -100px;
}
@media (max-width: 575px) {
  .banner-two__circle-solid {
    display: none;
  }
}
.banner-two__circle-regular {
  position: absolute;
  bottom: -80px;
  left: -100px;
}
@media (max-width: 575px) {
  .banner-two__circle-regular {
    display: none;
  }
}
.banner-two__right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.banner-two__line {
  position: absolute;
  left: 17%;
  top: 25%;
  z-index: 2;
}
@media (max-width: 575px) {
  .banner-two__line {
    display: none;
  }
}
.banner-two__dot-wrp {
  bottom: 120px;
}
.banner-two__content,
.banner-three__content {
  max-width: 950px;
  margin: 0 auto;
  padding: 250px 0;
}
@media (max-width: 991px) {
  .banner-two__content,
  .banner-three__content {
    padding: 150px 0;
  }
}
.banner-two__content h1,
.banner-three__content h1 {
  font-size: 90px;
  line-height: 100px;
}
@media (max-width: 991px) {
  .banner-two__content h1,
  .banner-three__content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 575px) {
  .banner-two__content h1,
  .banner-three__content h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.banner-two__content h4,
.banner-three__content h4 {
  background-color: hsla(0, 0%, 100%, 0.1);
  display: inline-block;
  padding: 0px 15px;
}
@media (max-width: 575px) {
  .banner-two__content h4,
  .banner-three__content h4 {
    padding: 0px 10px;
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media (max-width: 575px) {
  .banner-two__content p,
  .banner-three__content p {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .banner-two__content .btn-one,
  .banner-three__content .btn-one {
    margin-top: 30px;
  }
}

.banner-three-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #0f0d1d -76.72%, #3c72fc 191.51%);
  padding-top: 250px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .banner-three-area {
    padding: 80px 0;
  }
}
.banner-three__bg {
  position: absolute;
  left: 20px;
  bottom: 80px;
  z-index: -1;
}
.banner-three__shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 575px) {
  .banner-three__shape-left {
    display: none;
  }
}
.banner-three__shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 90%;
}
.banner-three__shape-right img {
  height: 100%;
}
@media (max-width: 575px) {
  .banner-three__shape-right {
    display: none;
  }
}
.banner-three__content {
  max-width: 100%;
}
@media (max-width: 991px) {
  .banner-three__content {
    margin-top: 100px;
  }
}
@media (max-width: 575px) {
  .banner-three__content {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .banner-three__content h4 {
    font-size: 12px;
  }
}
.banner-three__container {
  max-width: 1350px;
  padding: 30px;
  margin: 0 auto;
}
.banner-three__video-btn a {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--white);
  color: var(--primary-color);
  font-size: 16px;
}
.banner-three__info {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.banner__inner-page {
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
  background-size: cover;
  background-position: center;
  min-height: 800px;
  width: 100%;
  margin: 0 auto;
}

.banner__inner-page.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner__inner-page .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.banner__inner-page .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.banner__inner-page .shape3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.banner__inner-page::before {
  z-index: -1;
  opacity: 0.75;
}
@media (max-width: 767px) {
  .banner__inner-page {
    padding: 80px 0;
  }
}
.banner__inner-page h2 {
  margin-bottom: 10px;
  color: var(--white);
}
.banner__inner-page span {
  color: var(--white);
  font-weight: 500;
}
.banner__inner-page span i {
  color: var(--white);
}
.banner__inner-page a {
  color: var(--white);
  font-weight: 500;
}
.banner__inner-page a:hover {
  color: var(--primary-color);
}
.section-header h5 {
  color: var(--primary-color);
  padding-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
.section-header h5 svg,
.section-header h5 img {
  margin-top: -5px;
}
@media (max-width: 767px) {
  .section-header h5 {
    padding-bottom: 5px;
  }
}
.section-header h2 {
  text-transform: capitalize;
}
.section-header p {
  margin-top: 30px;
}
.service-area {
  position: relative;
  overflow: hidden;
}
.service__shape {
  position: absolute;
  right: -100px;
  top: 80px;
  z-index: -1;
}
.service__icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--primary10);
  border-radius: 0px;
  transition: var(--transition);
}
.service__item {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  padding: 40px 30px;
  box-shadow: var(--shadow);
}
.service__item .service-shape {
  position: absolute;
  top: 22px;
  right: 0;
  opacity: 0.3;
  transition: var(--transition);
}
.service__item h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.service__item p {
  transition: var(--transition);
}
.service__item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-bg);
  transition: var(--transition);
  z-index: -1;
}
.service__item.active .service__icon {
  background-color: var(--white);
}
.service__item.active .service-shape {
  opacity: 0.5;
}
.service__item.active h4 a {
  color: var(--white);
}
.service__item.active p {
  color: var(--white);
  opacity: 90%;
}
.service__item.active::after {
  width: 100%;
  right: unset;
  left: 0;
}
.service-two-area,
.project-three-area {
  overflow: hidden;
  position: relative;
}
.service-two__shape-left {
  position: absolute;
  left: 0;
  top: 0;
}
.service-two__shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.service-two__content {
  position: relative;
  padding: 30px;
  padding-top: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Ensure swiper slides have uniform height */
.service-two__slider .swiper-slide {
  height: auto;
  display: flex;
}

.service-two__slider .swiper-slide .service-two__item {
  width: 100%;
}
.service-two__content .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  background: var(--gradient-bg);
  margin-bottom: 30px;
  margin-top: -35px;
  transition: 1s;
}
.service-two__content .shape {
  position: absolute;
  top: 35px;
  right: 0;
  opacity: 0.3;
  transition: var(--transition);
}
.service-two__content p {
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--paragraph) !important;
  flex: 1;
}
.service-two__item {
  box-shadow: var(--shadow);
  background-color: var(--main-bg);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-two__item h4 {
  color: var(--heading-color) !important;
}

.service-two__item h4 a {
  color: var(--heading-color) !important;
}

/* Service page section header styling to match index.html */
.service-inner-area .section-header h5 {
  color: #3C72FC !important;
}

/* Reduce spacing between h5 and p elements in service page header */
.service-inner-area .section-header p {
  margin-top: 10px !important;
}

/* FAQ Category Header Styling */
.faq-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px 0;
  position: relative;
}

.faq-category-header .category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3C72FC 0%, #6C63FF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(60, 114, 252, 0.3);
  position: relative;
  overflow: hidden;
}

.faq-category-header .category-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.faq-category-header .category-icon i {
  color: #ffffff;
  font-size: 24px;
  z-index: 1;
  position: relative;
}

.faq-category-header .category-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.faq-category-header .category-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #3C72FC 0%, transparent 100%);
  border-radius: 1px;
  position: relative;
}

.faq-category-header .category-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #3C72FC;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(60, 114, 252, 0.5);
}

/* Responsive adjustments for category header */
@media (max-width: 768px) {
  .faq-category-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .faq-category-header .category-title {
    font-size: 24px;
  }
  
  .faq-category-header .category-line {
    width: 100%;
    max-width: 200px;
  }
}

/* Service Navigation Sidebar - Service Detail Pages Only */
.service-nav-sidebar {
    position: fixed;
    top: 50%; /* Start at center of screen */
    left: -100%;
    width: 300px;
    max-height: 80vh; /* Maximum height to prevent going off-screen */
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto; /* Only shows scrollbar if content doesn't fit */
    border-radius: 0 12px 12px 0; /* Rounded corners on right side */
    transform: translateY(-50%); /* Center vertically */
}

.service-nav-sidebar.active {
    left: 0;
}

.service-nav-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-nav-header {
    display: flex;
    justify-content: flex-start; /* Align to the left like the links */
    align-items: center;
    border-bottom: 2px solid rgba(60, 114, 252, 0.2);
    margin-bottom: 25px;
    position: relative; /* For absolute positioning of close button */
    padding-left: 20px; /* Match the left padding of the navigation links */
}

.service-nav-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center; /* Center the header text */
}

.service-nav-close {
    position: absolute; /* Position absolutely so it doesn't affect centering */
    right: 0; /* Position on the right side */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Perfect vertical centering */
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.service-nav-close:hover {
    color: var(--primary-color);
}

.service-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.service-nav-list li {
    margin-bottom: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(60, 114, 252, 0.1);
    display: flex;
    align-items: center;
}

.service-nav-list li:hover {
    background: rgba(60, 114, 252, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.service-nav-list li.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(60, 114, 252, 0.3);
}

.service-nav-list li.active a,
.service-nav-list li.active i {
    color: white !important;
}

.service-nav-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
}

.service-nav-list a:hover {
    color: var(--primary-color);
}

.service-nav-list i {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 8px;
    flex-shrink: 0;
}

.service-nav-list li:hover i {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Floating Service Navigation Toggle */
.service-nav-toggle {
    position: fixed;
    right: 20px;
    top: calc(25%); /* 50px higher than center */
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(60, 114, 252, 0.3);
    transition: all 0.3s ease;
}

.service-nav-toggle:hover {
    background: var(--secondary-color);
    transform: translateY(-25%) scale(1.1);
    box-shadow: 0 6px 16px rgba(60, 114, 252, 0.4);
}

.service-nav-toggle i {
    font-size: 18px;
}

/* Show toggle button on smaller screens */
@media (max-width: 991px) {
    .service-detail-page .service-nav-toggle {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Hide the original service navigation on smaller screens */
    .service-detail-page .service-single__right-item {
        display: none !important;
    }
}

/* Responsive adjustments for sidebar */
@media (max-width: 768px) {
    .service-nav-sidebar {
        width: 280px; /* Slightly smaller on mobile */
        max-height: 85vh; /* Allow more height on mobile */
        top: 50%; /* Keep centered on mobile */
        transform: translateY(-50%); /* Center vertically */
    }
}

@media (max-width: 480px) {
    .service-nav-sidebar {
        width: 260px;
        max-height: 90vh; /* Allow even more height on small mobile */
        top: 50%; /* Keep centered on small screens */
        transform: translateY(-50%); /* Center vertically */
    }
}
.service-two__item:hover .icon {
  transform: rotateX(-360deg);
}
.service-two__item:hover .shape {
  opacity: 0.5;
}
.service-two__item:hover .read-more-btn {
  color: var(--primary-color);
}
.service-two__item:hover .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
  transform: scale(1.1);
}
.service-two__slider .swiper-slide-active .icon {
  transform: rotateX(-360deg);
}
.service-two__slider .swiper-slide-active .shape {
  opacity: 0.5;
}
.service-two__slider .swiper-slide-active .read-more-btn {
  color: var(--primary-color);
}
.service-two__slider .swiper-slide-active .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
  transform: scale(1.1);
}
.service-three-area {
  overflow: hidden;
  position: relative;
}
.service-three__shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.service-three__image img {
  border-radius: 8px;
}
.service-three__content {
  background-color: var(--white);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  width: 85%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
  opacity: 1;
}
@media (max-width: 1399px) {
  .service-three__content {
    width: 95%;
  }
}
.service-three__content .icon {
  padding-right: 15px;
  margin-right: 15px;
  border-right: var(--border-1px);
}
.service-three__up-content {
  padding: 40px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: var(--transition);
  opacity: 0;
}
.service-three__up-content .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0px;
  background: linear-gradient(180deg, #3c72fc -93.57%, #00060c 228.57%);
  margin: 0 auto;
}
.service-three__item {
  position: relative;
  border-radius: 8px;
  z-index: 1;
}
.service-three__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #3c72fc -21.56%, #00060c 252.19%);
  border-radius: 8px;
  transition: var(--transition);
}
.service-three__item:hover .service-three__content {
  opacity: 0;
  bottom: 0;
}
.service-three__item:hover .service-three__up-content {
  opacity: 1;
}
.service-three__item:hover::before {
  height: 100%;
  bottom: 0;
  top: unset;
}
@media (max-width: 1199px) {
  .service-three__item {
    margin-bottom: 40px;
  }
}
.service-single-area {
  overflow: hidden;
}
.service-single__left-item .image {
  position: relative;
}

/* OUTSTANDING Professional Image Effects */

/* 3D Image Effect with Glow Sweep and Fade Borders */
.service-single__left-item .image.holographic {
  position: relative;
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 20%,
    transparent 50%,
    rgba(255, 255, 255, 0.4) 80%,
    rgba(255, 255, 255, 0.8) 100%
  );
}

.service-single__left-item .image.holographic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: glowSweep 2s ease-in-out forwards;
  z-index: 2;
  pointer-events: none;
}

.service-single__left-item .image.holographic img {
  width: 100%;
  border-radius: 10px;
  transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
  transition: all 0.15s ease-out;
  box-shadow: 
    8px 8px 25px rgba(0, 0, 0, 0.35),
    4px 4px 12px rgba(0, 0, 0, 0.25);
  filter: contrast(1.05);
}

.service-single__left-item .image.holographic:hover img {
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.4),
    0 12px 25px rgba(0, 0, 0, 0.25);
  filter: contrast(1.1);
}

@keyframes glowSweep {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Holographic effect without default shadow */
.service-single__left-item .image-wrapper.holographic-no-shadow {
  position: relative;
  overflow: visible;
  display: inline-block;
  width: 100%;
}

.service-single__left-item .image-wrapper.holographic-no-shadow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: glowSweep 2s ease-in-out forwards;
  z-index: 2;
  pointer-events: none;
  border-radius: 10px;
}

.service-single__left-item .image-wrapper.holographic-no-shadow img {
  width: 100%;
  border-radius: 10px;
  filter: contrast(1.05);
  display: block;
}

/* 2. Liquid Metal Effect */
.service-single__left-item .image.liquid-metal {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #f5576c 75%,
    #4facfe 100%
  );
  padding: 3px;
}

.service-single__left-item .image.liquid-metal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: liquidFlow 4s ease-in-out infinite;
  z-index: 2;
}

.service-single__left-item .image.liquid-metal img {
  border-radius: 17px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  filter: brightness(0.95);
}

.service-single__left-item .image.liquid-metal:hover img {
  transform: scale(1.06) translateY(-8px);
  filter: brightness(1.1);
}

/* 3. Quantum Portal Effect */
.service-single__left-item .image.quantum-portal {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(
    circle at center,
    #667eea 0%,
    #764ba2 30%,
    #f093fb 60%,
    #000 100%
  );
  padding: 4px;
}

.service-single__left-item .image.quantum-portal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: quantumPulse 2s ease-in-out infinite;
  z-index: 2;
}

.service-single__left-item .image.quantum-portal img {
  border-radius: 16px;
  transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
  filter: contrast(1.2);
}

.service-single__left-item .image.quantum-portal:hover img {
  transform: scale(1.1) rotateZ(5deg);
  filter: contrast(1.4) brightness(1.2);
}

/* 4. Neural Network Effect */
.service-single__left-item .image.neural-network {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a0a;
  padding: 4px;
}

.service-single__left-item .image.neural-network::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, #00ff88 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, #0088ff 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, #ff0088 0%, transparent 50%);
  animation: neuralPulse 3s ease-in-out infinite;
  z-index: 2;
  opacity: 0.3;
}

.service-single__left-item .image.neural-network img {
  border-radius: 16px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
  filter: brightness(0.9);
}

.service-single__left-item .image.neural-network:hover img {
  transform: scale(1.05) translateZ(20px);
  filter: brightness(1.2);
}

/* 5. Crystal Prism Effect */
.service-single__left-item .image.crystal-prism {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    45deg,
    #ff6b6b,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    #feca57
  );
  background-size: 300% 300%;
  animation: crystalRotate 4s ease infinite;
  padding: 3px;
}

.service-single__left-item .image.crystal-prism::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    transparent 100%
  );
  animation: crystalShimmer 2s ease-in-out infinite;
  z-index: 2;
}

.service-single__left-item .image.crystal-prism img {
  border-radius: 17px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.service-single__left-item .image.crystal-prism:hover img {
  transform: scale(1.08) rotateY(10deg);
}

/* Animations */
@keyframes singleSweep {
  0% { 
    left: -100%; 
    opacity: 0; 
  }
  50% { 
    opacity: 1; 
  }
  100% { 
    left: 100%; 
    opacity: 0; 
  }
}

@keyframes liquidFlow {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes quantumPulse {
  0%, 100% { 
    width: 0; 
    height: 0; 
    opacity: 0; 
  }
  50% { 
    width: 200px; 
    height: 200px; 
    opacity: 0.3; 
  }
}

@keyframes neuralPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes crystalRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes crystalShimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Current simple effect */
.service-single__left-item .image.fade-border img {
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-single__left-item .image.fade-border:hover img {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Alternative: Soft glow effect */
.service-single__left-item .image.soft-glow {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.service-single__left-item .image.soft-glow::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(
    circle at center,
    rgba(60, 114, 252, 0.3) 0%,
    rgba(0, 221, 0, 0.2) 25%,
    rgba(255, 107, 107, 0.2) 50%,
    rgba(78, 205, 196, 0.2) 75%,
    transparent 100%
  );
  border-radius: 25px;
  z-index: 1;
  animation: softPulse 4s ease-in-out infinite;
}

.service-single__left-item .image.soft-glow img {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.service-single__left-item .image.soft-glow:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Alternative: Vignette effect */
.service-single__left-item .image.vignette {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.service-single__left-item .image.vignette::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 30%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.service-single__left-item .image.vignette::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(60, 114, 252, 0.8) 20%,
    rgba(0, 221, 0, 0.8) 40%,
    rgba(255, 107, 107, 0.8) 60%,
    rgba(78, 205, 196, 0.8) 80%,
    transparent 100%
  );
  border-radius: 18px;
  z-index: 1;
  animation: borderRotate 6s linear infinite;
}

.service-single__left-item .image.vignette img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.service-single__left-item .image.vignette:hover img {
  transform: scale(1.03);
}

/* Animations */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes softPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Frame effect with inner shadow */
.service-single__left-item .image.frame-effect {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 
    inset 0 0 20px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(60, 114, 252, 0.2);
}

.service-single__left-item .image.frame-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.service-single__left-item .image.frame-effect img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.service-single__left-item .image.frame-effect:hover img {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.service-single__left-item .title {
  font-size: 30px;
}
.service-single__left-item ul li {
  font-weight: 500;
  color: var(--heading-color);
}
.service-single__left-item ul li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}
.service-single__right-item .service-category li:hover {
  background-color: var(--primary-color) !important;
}
.service-single__right-item .service-category li:hover a {
  color: var(--white) !important;
}
.service-single__right-item .service-category li:hover i {
  color: var(--white) !important;
}
.service-single__right-item .service-category li.active {
  background-color: var(--primary-color) !important;
}
.service-single__right-item .service-category li.active a {
  color: var(--white) !important;
}
.service-single__right-item .service-category li.active i {
  color: var(--white) !important;
}
.about-area,
.about-two-area {
  overflow: hidden;
  position: relative;
  padding-bottom: 240px;
}
.about__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.about__shape img {
  width: 100%;
  animation: sway_Y 5s linear infinite alternate;
}
.about__left-item,
.about-two__left-item {
  position: relative;
}
@media (max-width: 1199px) {
  .about__left-item,
  .about-two__left-item {
    max-width: 580px;
    margin: 0 auto;
  }
}
.about__left-item .big-image,
.about-two__left-item .big-image {
  max-width: 386px;
  position: relative;
  z-index: 1;
}
.about__left-item .sm-image,
.about-two__left-item .sm-image {
  max-width: 295px;
  position: absolute;
  right: 25px;
  bottom: 30px;
  z-index: 2;
}
.about__left-item .sm-image .video__btn-wrp,
.about-two__left-item .sm-image .video__btn-wrp {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about__left-item .circle-shape,
.about-two__left-item .circle-shape {
  position: absolute;
  top: 30px;
  right: 80px;
}
.about__right-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.about__right-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  width: 100%;
  max-width: 80px;
  border-radius: 0;
  background-color: var(--primary10);
}
.about__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 575px) {
  .about__info {
    gap: 5px;
  }
}

@media (max-width: 404px) {
  .about__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.about-two-area {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .about-two-area {
    padding-bottom: 60px;
  }
}
.about-two__shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.about-two__left-item .circle-shape {
  right: unset;
  left: -32%;
  top: 12%;
  animation: rotate 5s linear infinite;
}
.about-two__left-item .dots {
  position: absolute;
  right: 15%;
  top: 0;
}
.about-two__left-item .shape-helper {
  position: absolute;
  top: 28%;
  right: 26%;
}
.about-two__left-item .sm-image {
  bottom: 20px;
}
.about-two__right-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 500px;
}
.about-two__right-item ul li {
  color: var(--heading-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  text-indent: 0;
  padding-left: 0;
}

.about-two__right-item ul li:not(:last-child) {
  margin-bottom: 20px;
}

.about-two__right-item ul li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 80%;
  height: 1px;
  background-color: rgba(128, 128, 128, 0.5);
  transition: all 0.3s ease;
}

.about-two__right-item ul li:hover,
.about-two__right-item ul li.text-dark:hover {
  transform: translateX(15px) scale(1.02) !important;
  color: var(--primary-color) !important;
  animation: listItemPulse 0.6s ease-in-out;
}

.about-two__right-item ul li:hover::after,
.about-two__right-item ul li.text-dark:hover::after {
  background-color: var(--primary-color);
  opacity: 0.8;
  transform: scaleX(1.2);
  animation: underlineGrow 0.4s ease-out;
}

.about-two__right-item ul li:hover i,
.about-two__right-item ul li.text-dark:hover i {
  transform: scale(1.3) rotate(360deg) !important;
  box-shadow: 0 0 20px rgba(60, 114, 252, 0.7) !important;
  animation: iconBounce 0.8s ease-in-out;
}

/* Keyframe animations for about list items */
@keyframes listItemPulse {
  0% { transform: translateX(0) scale(1); }
  50% { transform: translateX(20px) scale(1.05); }
  100% { transform: translateX(15px) scale(1.02); }
}

@keyframes underlineGrow {
  0% { transform: scaleX(0); opacity: 0; }
  50% { transform: scaleX(1.5); opacity: 1; }
  100% { transform: scaleX(1.2); opacity: 0.8; }
}

@keyframes iconBounce {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.4) rotate(90deg); }
  50% { transform: scale(1.2) rotate(180deg); }
  75% { transform: scale(1.35) rotate(270deg); }
  100% { transform: scale(1.3) rotate(360deg); }
}

.about-two__right-item ul li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
  margin-top: 2px; /* Small adjustment to align with text baseline */
  flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Signature hover effect */
.about__info img[src*="TechSignature"] {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.about__info img[src*="TechSignature"]:hover {
  transform: scale(1.1);
}

/* FAQ All button styling */
.faq-all-btn {
  margin-left: 20px;
  margin-top: 20px;
  font-size: 1.2em;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(60, 114, 252, 0.1) 0%, rgba(60, 114, 252, 0.05) 100%);
  border: 2px solid rgba(60, 114, 252, 0.3);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(60, 114, 252, 0.2);
  transition: all 0.3s ease;
}

.faq-all-btn:hover {
  background: linear-gradient(135deg, rgba(60, 114, 252, 0.2) 0%, rgba(60, 114, 252, 0.1) 100%);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(60, 114, 252, 0.3);
  transform: translateY(-2px);
}

.faq-all-btn i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.faq-all-btn:hover i {
  margin-left: 12px;
  transform: scale(1.1);
}

/* Service page sidebar styling */
.service-category li {
  transition: all 0.3s ease;
  position: relative;
}

.service-category li a {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-category li a i.fa-arrow-right-long {
  transition: all 0.3s ease;
}

.service-category li:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(60, 114, 252, 0.05) 0%, rgba(60, 114, 252, 0.02) 100%);
  border-radius: 8px;
  padding-left: 15px;
  margin-left: -15px;
  padding-right: 15px;
  margin-right: -15px;
}

.service-category li:hover a {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.service-category li:hover a i.fa-arrow-right-long {
  transform: translateX(5px);
  color: var(--primary-color) !important;
}

.service-category li.active a {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.service-category li.active a i.fa-infinity {
  animation: colorCycle 4s infinite;
  font-size: 1.6em;
  margin-right: 10px;
  color: #ffffff !important;
  text-shadow: 0 0 5px rgba(60, 114, 252, 0.8);
}

.service-category li.active:hover {
  background: linear-gradient(135deg, rgba(60, 114, 252, 0.1) 0%, rgba(60, 114, 252, 0.05) 100%);
}

@keyframes colorCycle {
  0% { color: #ffffff !important; text-shadow: 0 0 5px rgba(60, 114, 252, 0.8); }
  25% { color: #e8e8e8 !important; text-shadow: 0 0 8px rgba(192, 192, 192, 1); }
  50% { color: #c0c0c0 !important; text-shadow: 0 0 10px rgba(169, 169, 169, 1.2); }
  75% { color: #e8e8e8 !important; text-shadow: 0 0 8px rgba(192, 192, 192, 1); }
  100% { color: #ffffff !important; text-shadow: 0 0 5px rgba(60, 114, 252, 0.8); }
}

/* Benefits list effects - same as about area */
.benefits-list li {
  color: var(--heading-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefits-list li:not(:last-child) {
  margin-bottom: 20px;
}

.benefits-list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 80%;
  height: 1px;
  background-color: rgba(128, 128, 128, 0.5);
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(10px);
  color: var(--primary-color);
}

.benefits-list li:hover::after {
  background-color: var(--primary-color);
  opacity: 0.8;
  transform: scaleX(1.1);
}

.benefits-list li:hover i {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(60, 114, 252, 0.5);
}

.benefits-list li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}
.about-three-area {
  z-index: 1;
}
.about-three__box-up {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: -1;
}
.about-three__box-down {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: -1;
}
.about-three__info {
  max-width: 430px;
}
.about-three__info .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0px;
  width: 100%;
  max-width: 64px;
}
.about-three__left-item {
  max-width: 450px;
}
.about-three__left-item .about-call-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
}
.about-three__left-item .about-call-icon span {
  width: 48px;
  height: 48px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
}
.about-three__image {
  max-width: 634px;
  float: right;
  z-index: 1;
}
.about-three__image .faq__line {
  left: 20% !important;
  z-index: -1;
  top: 10px;
}
.about-three__image .about-three-dot {
  position: absolute;
  left: 8%;
  bottom: 15%;
  z-index: -1;
}
.about-three__image .about-three-count {
  box-shadow: var(--shadow);
  width: 208px;
  position: absolute;
  top: 23%;
  left: 10px;
  background-color: var(--white);
  border-radius: 8px;
}
.about-three__image .about-three-count h3 {
  font-size: 28px;
  line-height: 40px;
}
.about-three__image .about-three-count h3 span {
  color: var(--secondary-color);
}
.about-three__image .about-three-count .icon {
  width: 40px;
}
.counter-area {
  position: relative;
}
.counter__shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
.counter__wrp,
.quote__wrp {
  overflow: hidden;
  padding: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin-top: -120px;
  z-index: 2;
}
@media (max-width: 767px) {
  .counter__wrp,
  .quote__wrp {
    justify-content: center;
  }
}
.counter__item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.counter__item h3 {
  font-size: 36px;
  color: var(--white);
  font-weight: 700;
  line-height: 50px;
}
.counter__item h3 span {
  color: var(--white);
}
.case-area {
  overflow: hidden;
}
.case__image {
  position: relative;
}
.case__image::before {
  background: linear-gradient(0deg, #0f0d1d 0%, rgba(15, 13, 29, 0) 125%);
}
.case__content {
  position: absolute;
  bottom: 40px;
  width: 100%;
  left: 30px;
}
.case__btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}
.case__btn i {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  background: var(--gradient-bg);
  font-size: 20px;
  color: var(--secondary-color);
  color: var(--white);
  transition: var(--transition);
}
.case__btn::after {
  position: absolute;
  content: url(/assets/images/shape/case-btn-shape.png);
  right: -20px;
  top: 0px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.case__btn::before {
  position: absolute;
  content: url(/assets/images/shape/case-btn-shape.png);
  left: -20px;
  top: -28px;
  z-index: -1;
  transform: rotate(180deg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.case__btn:hover::before {
  left: -10px;
  top: -18px;
  opacity: 1;
  visibility: visible;
}
.case__btn:hover::after {
  right: -10px;
  top: -10px;
  opacity: 1;
  visibility: visible;
}
.case__btn:hover i {
  color: var(--primary-color);
  background: var(--white);
}
.case__item,
.project-three__item {
  position: relative;
}
.case__item:hover .case__btn,
.project-three__item:hover .case__btn {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.case__slider {
  margin-left: 19%;
}
@media (max-width: 1600px) {
  .case__slider {
    margin-left: 12%;
  }
}
@media (max-width: 1399px) {
  .case__slider {
    margin-left: 10%;
  }
}
@media (max-width: 991px) {
  .case__slider {
    margin-left: 0%;
    padding: 0 12px;
  }
}
.case__slider .swiper-slide.swiper-slide-active .case__item .case__btn,
.case__slider
  .swiper-slide.swiper-slide-active
  .project-three__item
  .case__btn {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.case-two-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: 420px;
}
.case-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.case-two__bg img {
  width: 100%;
}
.case-two__container {
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
}
.case-two__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}
.case-two__content span {
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}
.case-two__btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid var(--white);
  font-size: 20px;
  color: var(--white);
  z-index: 1;
}
.case-two__btn:hover {
  color: var(--primary-color);
  background-color: var(--white);
}
.case-two__item {
  position: relative;
  z-index: 1;
}
.case-two__item::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  content: "";
  background: linear-gradient(0deg, #3c72fc 0%, rgba(0, 0, 0, 0) 100%);
  transition: var(--transition);
}
.case-two__item:hover::after {
  height: 100%;
}
.case-two__item:hover .case-two__content span {
  color: var(--white);
}
.case-three-area {
  overflow: hidden;
}
.case-single-area {
  overflow: hidden;
}
.case-single__title {
  font-size: 30px;
  line-height: 32px;
}
.case-single__item .case-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.case-single__item .case-date li {
  font-weight: 500;
  color: var(--heading-color);
}
.case-single__item .case-date li span {
  font-weight: 400;
  color: var(--primary-color);
}
.case-single__item .case-challenge-list {
  max-width: 780px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.case-single__item .case-challenge li {
  font-weight: 500;
  color: var(--heading-color);
}
.case-single__item .case-challenge li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 10px;
  margin-right: 10px;
}
.choose-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.choose__shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.choose__shape-right1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.choose__shape-right2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.choose__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  z-index: -1;
}
.choose__image img {
  height: 100%;
}
.choose__video-btn,
.banner-video__video-btn,
.service-single__video-btn {
  position: absolute;
  right: 20%;
  top: 45%;
  z-index: 2;
}
.choose__video-btn .video-btn a,
.banner-video__video-btn .video-btn a,
.service-single__video-btn .video-btn a {
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 25px;
}
@media (max-width: 991px) {
  .choose__video-btn,
  .banner-video__video-btn,
  .service-single__video-btn {
    right: 42%;
    top: 20%;
  }
}
@media (max-width: 450px) {
  .choose__video-btn,
  .banner-video__video-btn,
  .service-single__video-btn {
    right: 34%;
    top: 15%;
  }
}
.offer-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.offer__shadow {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.offer__shape-left {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.3;
}
.offer__shape-right {
  position: absolute;
  top: 0px;
  right: 0;
  opacity: 0.3;
}
.offer__icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 auto;
  background: linear-gradient(180deg, #3c72fc -210.71%, #00060c 100%);
  margin-top: -35px;
  transition: 1s;
}
.offer__item {
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  padding: 20px;
  padding-top: 0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
@media (max-width: 991px) {
  .offer__item {
    margin-top: 30px;
  }
}
.offer__item .shape-top {
  position: absolute;
  top: 50%;
  right: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.offer__item .shape-bottom {
  position: absolute;
  bottom: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.offer__item:hover .shape-top {
  top: -1px;
  right: -1px;
  opacity: 1;
  visibility: visible;
}
.offer__item:hover .shape-bottom {
  position: absolute;
  bottom: -1px;
  left: -1px;
  opacity: 1;
  visibility: visible;
}
.offer__item:hover .offer__icon {
  background: var(--gradient-bg);
  transform: rotateY(360deg);
}
.offer__item:hover .offer__icon svg path {
  fill: #fff;
}

/* BRAND AREA STYLING */
.brand__wrp {
  padding: 65px;
  border-radius: 25px;
  background: var(--gradient-bg);
  margin-top: -85px;
  position: relative;
  z-index: 1;
}

/* Responsive adjustments for brand slider */
/*@media (max-width: 768px) {
  .brand__wrp {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .brand__wrp {
    padding: 30px 15px;
  }
}*/

.brand__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

/*.brand__shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/

/* .brand__shape {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 67%;
    transform: translateY(-50%);
    opacity: 0.3;
    z-index: 1;
} */

.brand__image {
  max-width: 175px;
}
.brand-three-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.brand-three-area::before {
  background-color: var(--heading-color);
  opacity: 0.9;
  z-index: -1;
}
.brand-three__shape1 {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* .brand__slider {
    position: relative;
    z-index: 2;
} */

/* .brand__slide-wrapper {
    display: flex;
    align-items: center;
    gap: 3px;
    max-width: 150px;
    height: 50px;
    justify-content: center;
} */

/* .swiper .swiper-slide .ecomm-slider {
  margin-right: -10px;
} */

@media (max-width: 767px) {
  .brand-three__shape1 {
    display: none;
  }
}
.brand-three__line1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .brand-three__line1 {
    display: none;
  }
}
.brand-three__shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .brand-three__shape2 {
    display: none;
  }
}
.brand-three__line2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .brand-three__line2 {
    display: none;
  }
}
.process-area {
  overflow: hidden;
}
.process__image {
  max-width: 178px;
  padding: 10px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
}
.process__image img {
  width: 100%;
}
.process__image::after {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--primary-color);
  content: "";
  border-radius: 50%;
  position: absolute;
  animation: rotate 20s linear infinite;
}
.process__image .process-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}
.process__item {
  text-align: center;
  padding: 0 30px;
  position: relative;
}
@media (min-width: 992px) {
  .process__item {
    margin-bottom: 0px;
  }
}
.process__item .process-arry {
  position: absolute;
  top: 18%;
  right: -14%;
}
@media (max-width: 991px) {
  .process__item .process-arry {
    top: unset;
    right: unset;
    bottom: -110px;
    left: 40%;
  }
  .process__item .process-arry img {
    transform: rotate(90deg);
  }
}
.testimonial__arry-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  position: relative;
}
.testimonial__arry-btn::after {
  position: absolute;
  content: "";
  width: 35%;
  height: 1px;
  background-color: var(--primary-color);
  right: 0;
  top: 25px;
  opacity: 0.5;
}
@media (max-width: 575px) {
  .testimonial__arry-btn::after {
    width: 30%;
  }
}
.testimonial__arry-btn::before {
  position: absolute;
  content: "";
  width: 35%;
  height: 1px;
  background-color: var(--primary-color);
  left: 0;
  top: 25px;
  opacity: 0.5;
}
@media (max-width: 575px) {
  .testimonial__arry-btn::before {
    width: 30%;
  }
}
.testimonial__item {
  position: relative;
  padding: 40px;
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 25px;
  overflow: hidden;
}
.testimonial__item .coma {
  position: absolute;
  top: 40px;
  right: 40px;
}
.testimonial-two-area {
  margin-top: -300px;
  position: relative;
  z-index: 1;
}
.testimonial-two__slider {
  padding: 20px 0;
}
.testimonial-two__item,
.testimonial-three__item {
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 40px;
  position: relative;
}
.testimonial-two__item .coma,
.testimonial-three__item .coma {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.testimonial-two__item.dark-mode,
.dark-mode.testimonial-three__item {
  background-color: var(--sub-bg);
}
.testimonial-three-area {
  overflow: hidden;
}
.testimonial-three__wrp {
  margin-left: 19%;
  margin-right: -70px;
}
@media (max-width: 1399px) {
  .testimonial-three__wrp {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.testimonial-three__image {
  position: relative;
}
.testimonial-three__image svg {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translate(-50%);
}
.testimonial-three__item {
  box-shadow: none;
}

.blog__image {
  position: relative;
  overflow: hidden;
}
.blog__image img {
  transition: var(--transition);
}
.blog__image .blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-bg);
  padding: 10px 22px;
}
.blog__image .blog-tag h3 {
  line-height: 22px;
  font-weight: 700;
}
.blog__image .blog-tag span {
  font-size: 12px;
  line-height: 22px;
}
.blog__content {
  padding: 30px;
}
.blog__content .blog-info {
  display: flex;
  align-items: center;
  gap: 22px;
}
.blog__content .blog-info li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog__content .blog-info li a {
  color: var(--paragraph);
  font-size: 14px;
  line-height: 22px;
}
.blog__content .blog-info li a:hover {
  color: var(--primary-color);
}
.blog__item,
.blog-two__grid-item,
.blog-two__list-item {
  box-shadow: var(--shadow);
}
.blog__item .read-more-btn,
.blog-two__grid-item .read-more-btn,
.blog-two__list-item .read-more-btn {
  color: var(--paragraph);
}
.blog__item:hover .read-more-btn,
.blog-two__grid-item:hover .read-more-btn,
.blog-two__list-item:hover .read-more-btn {
  color: var(--primary-color);
}
.blog__item:hover .read-more-btn i,
.blog-two__grid-item:hover .read-more-btn i,
.blog-two__list-item:hover .read-more-btn i {
  color: var(--primary-color);
  margin-left: 10px;
}
.blog__item:hover .blog__image img,
.blog-two__grid-item:hover .blog__image img,
.blog-two__list-item:hover .blog__image img {
  transform: scale(1.1) rotate(3deg);
  filter: brightness(70%);
}
.blog-two-area {
  overflow: hidden;
}
.blog-two__grid-item,
.blog-two__list-item {
  border: 1px solid var(--border);
  padding: 20px;
}
.blog-two__grid-item .blog__content,
.blog-two__list-item .blog__content {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
.blog-two__list-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .blog-two__list-item {
    flex-direction: column;
  }
}
.blog-two__list-item .blog__content {
  padding: 10px;
  flex-basis: 50%;
}
@media (max-width: 575px) {
  .blog-two__list-item .blog__content {
    flex-basis: 100%;
  }
}
.blog-single__title {
  font-size: 30px;
}
.blog-single__left-item:hover .image img {
  transform: scale(1) rotate(0deg);
}
.blog-single__left-item .fs-30 {
  font-size: 30px;
}
.blog-single__left-item .highlight-text {
  border-left: 4px solid var(--primary-color);
  padding: 40px;
}
.blog-single__left-item .highlight-text p {
  max-width: 650px;
  color: var(--heading-color);
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}
.blog-single__left-item .highlight-text svg {
  float: right;
  margin-top: -30px;
}
.blog-single__left-item .tags-share {
  padding: 20px 0;
  border-top: var(--border-1px);
  border-bottom: var(--border-1px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.blog-single__left-item .tags-share .tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-single__left-item .tags-share .tags strong {
  color: var(--heading-color);
}
.blog-single__left-item .tags-share .tags a {
  padding: 2px 15px;
  font-size: 14px;
  font-weight: 600;
  border: var(--border-1px);
  text-transform: capitalize;
}
.blog-single__left-item .tags-share .tags a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.blog-single__left-item .tags-share .share {
  display: flex;
  align-items: center;
}
.blog-single__left-item .tags-share .share strong {
  color: var(--heading-color);
}
.blog-single__left-item .tags-share .share a {
  font-size: 20px;
  color: var(--paragraph);
  margin-left: 20px;
}
.blog-single__left-item .tags-share .share a:hover {
  color: var(--primary-color);
}
.blog-single__left-item .tags-share .share a.active {
  color: var(--primary-color);
}
.blog-single__right-item .item,
.service-single__right-item .item {
  padding: 30px;
}
.blog-single__right-item .item .title,
.service-single__right-item .item .title {
  position: relative;
  margin-bottom: 35px;
  font-weight: 700;
}
.blog-single__right-item .item .title::after,
.service-single__right-item .item .title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 40px;
  background-color: var(--primary-color);
}
.blog-single__right-item .item .search-bar,
.service-single__right-item .item .search-bar {
  position: relative;
}
.blog-single__right-item .item .search-bar input,
.service-single__right-item .item .search-bar input {
  width: 100%;
  border: var(--border-1px);
  padding: 16px;
}
.blog-single__right-item .item .search-bar input:focus,
.service-single__right-item .item .search-bar input:focus {
  border: 1px solid rgba(13, 110, 253, 0.5);
}
.blog-single__right-item .item .search-bar button,
.service-single__right-item .item .search-bar button {
  position: absolute;
  right: 15px;
  top: 18px;
  color: var(--span);
  background-color: var(--white);
}
.blog-single__right-item .item .category li,
.service-single__right-item .item .category li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--white);
  transition: var(--transition);
}
.blog-single__right-item .item .category li span,
.service-single__right-item .item .category li span {
  transition: var(--transition);
}
.blog-single__right-item .item .category li:hover a,
.service-single__right-item .item .category li:hover a {
  color: var(--primary-color);
}
.blog-single__right-item .item .category li:hover span,
.service-single__right-item .item .category li:hover span {
  color: var(--primary-color);
}
.blog-single__right-item .item .category li:not(:last-child),
.service-single__right-item .item .category li:not(:last-child) {
  margin-bottom: 10px;
}
.blog-single__right-item .item .single-post li,
.service-single__right-item .item .single-post li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-single__right-item .item .single-post li:not(:last-child),
.service-single__right-item .item .single-post li:not(:last-child) {
  margin-bottom: 15px;
}
.blog-single__right-item .item .single-post li span,
.service-single__right-item .item .single-post li span {
  font-size: 14px;
}
.blog-single__right-item .item .tags,
.service-single__right-item .item .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-single__right-item .item .tags a,
.service-single__right-item .item .tags a {
  padding: 5px 14px;
  font-weight: 500;
  border: var(--border-1px);
  text-transform: capitalize;
  background-color: var(--white);
  font-size: 14px;
}
.blog-single__right-item .item .tags a:hover,
.service-single__right-item .item .tags a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.blog-single__review .image {
  max-width: 96px;
  width: 100%;
}
.blog-single__review .reply {
  border-radius: 30px;
  padding: 0px 12px;
  font-weight: 500;
}
.team-area {
  overflow: hidden;
}
.team__share {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media (max-width: 991px) {
  .team__share {
    right: 20px;
  }
}
.team__share button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background: var(--gradient-bg);
  color: var(--white);
  font-size: 18px;
}
.team__share ul {
  width: 40px;
  background: var(--gradient-bg);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 12px;
  border-radius: 40px;
  margin-bottom: 15px;
  display: none;
  transition: var(--transition);
}
.team__share ul li:not(:last-child) {
  margin-bottom: 5px;
}
.team__share ul li a {
  color: var(--white);
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.team__share ul li a:hover {
  border: 1px solid #e7e7e7;
  transform: scale(1.1);
}
.team__share:hover ul {
  display: block;
}
.team__content {
  position: absolute;
  max-width: 270px;
  padding: 20px 30px;
  background: var(--gradient-bg);
  bottom: 0;
  left: 0;
  width: 100%;
}
.team__item {
  position: relative;
}
.team__item::before {
  transition: var(--transition);
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    359.9deg,
    #00060c 0.09%,
    rgba(22, 36, 62, 0) 99.91%
  );
}
.team__item:hover::before {
  height: 100%;
  top: 0;
}
.team-single__image {
  overflow: hidden;
  position: relative;
}
.team-single__image img {
  width: 100%;
}
.team-single__image .team-info {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.team-single__image .team-info a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  color: var(--white);
  border: 1px solid var(--white);
}
.team-single__image .team-info a:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.team-single__image .team-info a.active {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.team-single__info .skills .experience-title {
  font-weight: 400;
}
.team-single__info .skills .progress {
  height: 8px;
}
.team-single__info .skills .progress .progress-bar {
  background-color: var(--primary-color);
}
.faq-area {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.faq__shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.faq__image {
  position: relative;
}
.faq__line {
  position: absolute;
  top: 30px;
  left: 30px;
}
.quote__wrp {
  display: block;
  padding: 60px;
  z-index: 1;
  margin-top: 0;
  margin-bottom: -120px;
}
.quote__shape {
  position: absolute;
  left: 0;
  border-top: 0;
  z-index: -1;
}
.pricing-area {
  position: relative;
  z-index: 1;
}
.pricing__shape-up {
  position: absolute;
  top: -120px;
  left: 0;
  z-index: -1;
}
.pricing__shape-down {
  position: absolute;
  top: -80px;
  left: 0;
  z-index: -1;
}
.pricing__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.pricing__item {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #3c72fc -1.09%, #00060c 175.27%);
  padding: 50px 40px;
}
.pricing__item .item-shape {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: -1;
}
.pricing__item ul {
  padding: 40px 0;
}
.pricing__item ul li {
  color: var(--white);
}
.pricing__item ul li:not(:last-child) {
  margin-bottom: 20px;
}
.pricing__item .pricing-head {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(227, 227, 227, 0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.pricing__item .pricing-head h2 {
  color: var(--white);
}
.pricing__item .pricing-head h2 span {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}
.pricing__item .pricing-icon {
  width: 94px;
  height: 90px;
  text-align: center;
  line-height: 90px;
}
.pricing__item .pricing-icon img {
  transition: 1s;
}
.pricing__item:hover .item-shape {
  animation: bobble 2s ease-in-out infinite alternate;
}
.pricing__item:hover .pricing-icon img {
  transform: rotateY(-360deg);
}
.project-three-area {
  padding-bottom: 240px;
  padding-top: 240px;
  margin-top: -120px;
}
.project-three__item .case__content {
  text-align: center;
}
.project-three__item .case__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: unset;
  right: unset;
}
.banner-video-area {
  position: relative;
}
.banner-video__wrp {
  margin-top: -120px;
  z-index: 1;
}
.banner-video__wrp img {
  border-radius: 20px;
}
.banner-video__wrp::before {
  background-color: var(--heading-color);
  border-radius: 20px;
  opacity: 0.5;
}
.banner-video__video-btn,
.service-single__video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: unset;
}
.contact__left-item {
  padding: 50px;
}
.contact__left-item ul li {
  margin-bottom: 30px;
}
.contact__left-item .social a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--white);
  color: var(--heading-color);
  margin-right: 5px;
}
.contact__left-item .social a:hover {
  color: var(--primary-color);
}

/* Contact info links with hover animation */
.contact-info-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 8px;
}

.contact-info-link:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.contact-info-link:hover * {
  color: #ffffff;
}

.contact-info-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--white);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.contact-info-link i svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

.contact-info-link i::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  border: 1px dashed var(--primary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact__map {
  margin-bottom: -10px;
}
.contact__map iframe {
  width: 100%;
  height: 600px;
}
.error__item {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.error__item h2 {
  font-size: 64px;
  line-height: 72px;
}
@media (max-width: 991px) {
  .error__item h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .error__item h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
/*******************************
    FOOTER SECTIONS
*******************************/

.footer-area,
.footer-two-area {
  overflow: hidden;
  position: relative;
}
.footer__wrp {
  position: relative;
  padding: 30px 0 0;
  z-index: 1;
}
@media (max-width: 575px) {
  .footer__wrp {
    flex-direction: column;
    justify-content: left;
    align-items: unset;
  }
}
.footer__shape-solid-left {
  position: absolute;
  top: 0;
  left: 0;
}
.footer__shape-regular-left {
  position: absolute;
  top: 30px;
  left: 0;
}
@media (max-width: 767px) {
  .footer__shape-regular-left {
    display: none;
  }
}
.footer__shape-solid-right {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .footer__shape-solid-right {
    display: none;
  }
}
.footer__shape-regular-right {
  position: absolute;
  top: 30px;
  right: 0;
}
@media (max-width: 767px) {
  .footer__shape-regular-right {
    display: none;
  }
}
.footer__shadow-shape {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  animation: footer__shadow 10s linear infinite alternate;
}
.footer__item .logo {
  margin-top: -30px;
}
@media (max-width: 575px) {
  .footer__item .logo {
    margin-top: 0;
  }
}
.footer__item .footer-title {
  margin-bottom: 30px;
  color: var(--white);
}
.footer__item ul li:not(:last-child) {
  margin-bottom: 15px;
}
.footer__item ul li a {
  color: var(--white);
  opacity: 0.8;
}
.footer__item ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer__item .footer-contact li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
}
.footer__item .footer-contact li i {
  font-size: 24px;
}
.footer__item .footer-contact li h5 {
  color: var(--white);
}
.footer__item p {
  color: var(--white);
  opacity: 0.8;
}
.footer__item.item-big {
  max-width: 270px;
  width: 100%;
}
.footer__item.item-sm {
  max-width: 170px;
  width: 100%;
}
.footer__item .social-icon {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer__item .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  border-radius: 0;
  border: 1px solid rgba(227, 227, 227, 0.2);
  color: var(--white);
}
.footer__item .social-icon a:hover {
  background-color: var(--primary-color);
}
.footer__item .social-icon a.active {
  background-color: var(--primary-color);
}
.footer__copyright {
  padding: 20px 50px;
  text-align: center;
  background-color: var(--sub-bg);
}
.footer__copyright p {
  color: var(--white);
  opacity: 0.8;
}
.footer__copyright a {
  color: var(--white);
  opacity: 0.8;
}
.footer__copyright a:hover {
  color: var(--primary-color);
}
.footer-two-area {
  padding-top: 120px;
}
@keyframes sway {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
.sway__animation {
  animation: sway 3s linear infinite alternate;
}
@keyframes swayX {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
.sway__animationX {
  animation: swayX 3s linear infinite alternate;
}
@keyframes footer__shadow {
  0% {
    margin-left: -200px;
  }
  100% {
    margin-right: -200px;
  }
}
@keyframes sway_Y {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}
.sway_Y__animation {
  animation: sway_Y 3s linear infinite alternate;
}
@keyframes sway_YY {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.sway_Y__animationY {
  animation: sway_YY 3s linear infinite alternate;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation__rotate {
  animation: rotate 40s linear infinite;
}
@keyframes rotateY {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.animation__rotateY {
  animation: rotateY 40s linear infinite;
}
@keyframes bobble {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.bobble__animation {
  animation: bobble 3s ease-in-out infinite alternate;
}
@-webkit-keyframes video-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
@keyframes video-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/*******************************
    Custom CSS
*******************************/    

/** SOCIAL BAR **/
.social-bar {
  width: 500px;
  position: fixed;
  left: 0;
  top: 50%;
  margin-top: 200px;
  z-index: 3;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  text-align: center;
}

/* Responsive positioning for shorter windows */
@media (max-height: 800px) {
  .social-bar {
    top: 120px; /* Start below header */
    margin-top: 0;
    left: 50px; /* Move it more to the right to stay visible */
  }
}

@media (max-height: 600px) {
  .social-bar {
    top: 100px; /* Even closer to header for very short windows */
    margin-top: 0;
    left: 30px; /* Keep it visible on very short windows */
  }
}

/* SOCIAL BAR */
.social-bar li {
  display:inline-block;
  list-style: none;
  padding: 20px 0;
  margin: 0 10px;
}
.social-bar li a {
  position: relative;
  color: #3c72fc;
  font-size: 35px;
  text-decoration: none;
  font-weight: 600;
    -webkit-text-stroke: 1px #ffffff;
  -webkit-transition: color 0.5s ease, transform 0.5s ease;
  -moz-transition: color 0.5s ease, transform 0.5s ease;
  -ms-transition: color 0.5s ease, transform 0.5s ease;
  -o-transition: color 0.5s ease, transform 0.5s ease;
  transition: color 0.5s ease, transform 0.5s ease;
}
.social-bar li a:hover {
  color: #00dd00;
  text-decoration: none;
  transform: scale(1.5);
}
.social-bar li a:before, .social-bar li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  height: 5px;
  width: 0;
  background: #00dd00;
  transition: width 0.5s ease;
}
.social-bar li a:before {
  left: 0;
}
.social-bar li a:after { 
  right: 0;
}
.social-bar li a:hover:before, .social-bar li a:hover:after {
  width: 100%;
}
.social-bar li a i {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-bar li a:hover i {
  transform: translateY(-5px);
}  
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
    .social-bar{
      display: none;
    }
}

/*******************************
    Page-specific Custom Styles
*******************************/

/* Banner height adjustments */
.banner-two__content {
    padding: 33.5vh 0;
    min-height: 67vh;
}

@media (max-width: 991px) {
    .banner-two__content {
        padding: 25vh 0;
        min-height: 50vh;
    }
}

/* Only apply opacity 0 to about page banner text */
.banner-two-area:has(.slide-bg[data-background*="about-us"]) .banner-two__content .banner-text-bottom-left {
    opacity: 0;
}

/* Text positioning */
.banner-text-bottom-left {
    position: absolute;
    bottom: 2%;
    left: 0;
    text-align: left;
    max-width: 50%;
    margin-left: 0; /* Ensure no left margin */
    padding-left: 0; /* Ensure no left padding */
}

/* Text colors and strokes */
.text-blue {
    color: rgb(60, 114, 252);
}

h2.text-blue {
    -webkit-text-stroke: 1px black;
}

.breadcrumb-list .text-blue {
    -webkit-text-stroke: none;
}

/* Static text overlay for non-looping banner text */
.static-banner-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
}

.static-text-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.static-text-animated:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive text positioning */
@media (max-width: 991px) {
    .banner-text-bottom-left {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .banner-text-bottom-left {
        max-width: 70%;
        position: absolute;
        bottom: 2%;
        left: 0;
        text-align: left;
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .banner-text-bottom-left {
        max-width: 80%;
    }
}




/*******************************
    SERVICE COMPONENTS
*******************************/

/* Service icon size standardization */
.service-two__content .icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.service-two__content .icon img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

/* Specific handling for SVG icons to prevent scaling issues */
.service-two__content .icon img[src$=".svg"] {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

.testimonial-area .section-header h2 {
    color: #ffffff;
    text-align: center;
}

.testimonial-area .container .swiper {
    border-radius: 25px;
}

/* Footer Scroll Effect */
.footer-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-top: 50px;
}

.footer {
    background: var(--gradient-bg);
    padding: 60px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: visible;
}

.footer .counter__shape {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 200px;
    height: auto;
    pointer-events: none;
}

.footer .quote__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 200px;
    height: auto;
    pointer-events: none;
}

.footer img {
    max-width: 200px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.footer .social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
}

.footer .social-media a {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.footer .social-media a:hover {
    transform: translateY(-5px);
    color: #fff;
    background: var(--primary-color);
    border-color: #fff;
}

.footer h4 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.footer h2 {
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.footer .btn-contact {
    padding: 15px 25px;
    background: var(--gradient-bg);
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.footer .btn-contact::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: var(--secondary-color);
    z-index: -1;
    transition: var(--transition);
}

.footer .btn-contact::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: var(--secondary-color);
    z-index: -1;
    transition: var(--transition);
}

.footer .btn-contact:hover {
    color: var(--white);
}

.footer .btn-contact:hover::before {
    height: 100%;
}

.footer .btn-contact:hover::after {
    height: 100%;
}

.footer .btn-contact span {
    color: var(--white) !important;
}

.footer-bar {
  margin-top: 10px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  position: relative;
  z-index: 2;
}

.footer-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bar span {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.footer-bar span:hover {
    opacity: 1;
}

.footer-spacing {
    height: 50px;
    position: relative;
    z-index: 1;
    margin-bottom: -50px;
}

.copyright {
    padding: 15px 0;
    font-size: 14px;
    color: var(--color-white);
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

/* Footer Scroll Effect Styles */
.footer-spacing {
    height: 100px;
    position: relative;
    z-index: 1;
}

.footer-wrapper {
    position: relative;
    margin-top: -50px;
    z-index: 2;
    overflow: hidden;
}

@media (max-width: 1200px) {
  .footer-bar {
    font-size: 12px;
  }
}

.footer {
    position: relative;
    overflow: visible;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin-top: 0;
}

.footer__shape-regular-left,
.footer__shape-solid-left,
.footer__shape-solid-right,
.footer__shape-regular-right {
    position: absolute;
    z-index: 1;
}

.footer__shape-regular-left {
    left: 0;
    top: 20%;
    transform: translateX(-50%);
}

.footer__shape-solid-left {
    left: 5%;
    top: 30%;
}

.footer__shape-solid-right {
    right: 5%;
    top: 30%;
}

.footer__shape-regular-right {
    right: 0;
    top: 20%;
    transform: translateX(50%);
}

.footer__shadow-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.social-media {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-media li a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-media li a:hover {
    transform: translateY(-5px);
    color: #3C72FC;
}

.footer h4 {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.footer h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.btn-contact {
    display: inline-block;
    padding: 15px 30px;
    background: #3C72FC;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(60, 114, 252, 0.3);
}

/* Animation Classes */
.wow {
    visibility: hidden;
}

.slideInLeft {
    animation: slideInLeft 1s ease forwards;
}

.slideInRight {
    animation: slideInRight 1s ease forwards;
}

.sway_Y__animation {
    animation: swayY 3s ease-in-out infinite;
}

.bobble__animation {
    animation: bobble 2s ease-in-out infinite;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes swayY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bobble {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Mobile menu hover animations */
.mean-container .mean-nav ul li {
  transition: all 0.3s ease;
  position: relative;
}

.mean-container .mean-nav ul li a {
  transition: all 0.3s ease;
  position: relative;
  display: block;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 2px 0;
}

.mean-container .mean-nav ul li:hover {
  transform: translateX(10px);
  background: var(--primary-color);
  border-radius: 8px;
  padding-left: 15px;
  margin-left: -15px;
  padding-right: 15px;
  margin-right: -15px;
  box-shadow: 0 4px 15px rgba(60, 114, 252, 0.3);
}

.mean-container .mean-nav ul li:hover a {
  color: #ffffff !important;
  font-weight: 600;
}

/* Active page indicator in sidebar menu - only for current page */
.mean-container .mean-nav ul li a.current-page::before {
  content: "\f534"; /* FontAwesome infinity icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff !important;
  margin-right: 8px;
  animation: colorCycle 4s infinite;
}

/* Inline styles moved from index.html */
.video-wrapper-padding {
  padding: 30px;
}

.video-container-styles {
  width: 800px;
  margin-left: 20px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transform: perspective(1000px) rotateY(-5deg);
}

.video-frame-styles {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.progress-bar-40 {
  width: 40%;
}

.progress-bar-20 {
  width: 20%;
}

.progress-bar-100 {
  width: 100%;
}

/* Animated scroll arrow for banner */
.scroll-arrow-container {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollArrowBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-arrow i {
    color: #ffffff;
    font-size: 32px;
    animation: scrollArrowPulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.scroll-arrow-container.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes scrollArrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scrollArrowPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive adjustments for scroll arrow */
@media (max-width: 768px) {
    .scroll-arrow-container {
        bottom: 10px;
    }
    
    .scroll-arrow i {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .scroll-arrow-container {
        bottom: 10px;
    }
    
    .scroll-arrow i {
        font-size: 22px;
    }
}

/* Prevent content overlap with social bar */
@media (min-width: 1200px) and (max-width: 1280px) {
    .about-two-area .container,
    .service-two-area .container,
    .choose-area .container,
    .faq-area .container,
    .offer-area .container,
    .testimonial-area .container,
    .contact-area .container,
    .service-inner-area .container,
    .service-single-area .container {
        margin-left: 60px;
        margin-right: 60px;
        max-width: calc(100% - 120px);
    }
    .choose-area .col-lg-7 {
        padding-right: 40px;
    }
    .banner-text-bottom-left {
        padding-left: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .about-two-area .container, 
    .service-two-area .container,
    .choose-area .container,
    .faq-area .container,
    .offer-area .container,
    .testimonial-area .container,
    .contact-area .container,
    .service-inner-area .container,
    .service-single-area .container {
        margin-left: 60px;
        margin-right: 60px;
        max-width: calc(100% - 120px);
    }
    .about-two-area .section-header, 
    .service-two-area .container, 
    .choose-area .col-lg-7, 
    .faq-area .container {
        padding-right: 40px;
    }
    .banner-text-bottom-left {
      padding-left: 40px;
   }
}

@media (min-width: 768px) and (max-width: 850px) {
    .about-two-area .container,
    .service-two-area .container,
    .choose-area .container,
    .faq-area .container,
    .offer-area .container,
    .testimonial-area .container,
    .contact-area .container,
    .service-inner-area .container,
    .service-single-area .container {
        margin-left: 60px;
        margin-right: 60px;
        max-width: calc(100% - 120px);
    }
    .about-two-area .section-header,
    .service-two-area .container,
    .choose-area .col-lg-7,
    .faq-area .container {
        padding-right: 40px;
    }
    .banner-text-bottom-left {
      padding-left: 40px;
    }
}

@media (max-width: 992px) {
    .choose-area {
        padding-top: 60px;
    }
}

@media (max-width: 360px) {
    .about-two-area .section-header {
        padding-top: 50px;
    }
}

@media (max-width: 315px) {
    .about-two-area .section-header {
        padding-top: 100px;
    }
}

/* Fix inline styles - move to CSS classes */


.brand-negative-margin {
  margin-top: -85px;
  margin-bottom: -85px;
}

.testimonial-background-rounded {
  border-radius: 25px;
  padding: 30px;
  background-image: linear-gradient(90deg, rgb(60, 114, 252, 0.9) -10.59%, rgb(0, 6, 12) 300.59%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial
}

.testimonial-slider-rounded {
  border-radius: 25px;
  overflow: hidden;
}

.team-header-margin {
  margin-right: 250px;
}



/* Increase font size for about list items on larger screens */
@media (min-width: 992px) {
  .about-two__right-item ul li {
    font-size: 18px;
  }
}

/* Balance testimonial column height with contact form - ABOUT PAGE SPECIFIC */
.testimonial-area .testimonial__item {
  padding: 40px 35px;
  font-size: 19px;
  line-height: 1.9;
}

.testimonial-area .testimonial__item .testi-info h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.testimonial-area .testimonial__item .testi-info p {
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-area .testimonial__item p.mt-30 {
  font-size: 19px;
  line-height: 1.9;
  margin-top: 30px;
}

/* Increase testimonial section header spacing - ABOUT PAGE SPECIFIC */
.testimonial-area .testimonial-background-rounded {
  padding: 45px 40px;
  min-height: 400px; /* Force minimum height to match form */
}

.testimonial-area .testimonial-background-rounded h3 {
  font-size: 36px;
  margin-bottom: 25px;
  line-height: 1.3;
  text-align: center;
}

.testimonial-area .testimonial-background-rounded p {
  font-size: 19px;
  line-height: 1.8;
}

/* Additional spacing for testimonial slider */
.testimonial-area .testimonial__slider {
  margin-top: 30px;
  margin-bottom: 30px;
}

.testimonial-area .testimonial__arry-btn {
  margin-top: 50px;
}

/* Turn off background centering for testimonial area on smaller screens */
@media (max-width: 1200px) {
  .testimonial-area.bg-image {
    background-position: initial !important;
  }
}

/* Ensure testimonial background shows on all screen sizes */
.testimonial-area.bg-image[data-background] {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

/* Contact page specific styles - move inline styles to CSS */
.contact-banner-text-hidden {
  opacity: 0;
}

.contact-map-iframe {
  border: 0;
  width: 100%;
  height: 450px;
}

/* Email wrapping for specific screen sizes to prevent overflow */
@media (min-width: 992px) and (max-width: 1220px) {
  .contact-email-wrap .email-domain {
    display: block;
    line-height: 1.2;
  }
}

/* Reset email display for larger screens */
@media (min-width: 1221px) {
  .contact-email-wrap .email-domain {
    display: inline;
  }
}

/* Responsive banner images for INDEX PAGE slider - all 3 slides - optimized for each screen size */
/* Base rules for smallest screens (576px and smaller) */
.banner__slider .slide-bg[data-background*="assets/images/banner/reimagine-your-business-375.png"] {
  background-image: url('../../assets/images/banner/reimagine-your-business-375.png') !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__slider .slide-bg[data-background*="assets/images/banner/convert-to-technology-375.png"] {
  background-image: url('../../assets/images/banner/convert-to-technology-375.png') !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__slider .slide-bg[data-background*="assets/images/banner/empower-your-business-375.png"] {
  background-image: url('../../assets/images/banner/empower-your-business-375.png') !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__slider .slide-bg[data-background*="assets/images/banner/about-us-375.png"] {
  background-image: url('../../assets/images/banner/about-us-375.png') !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__slider .slide-bg[data-background*="assets/images/banner/contact-us-375.png"] {
  background-image: url('../../assets/images/banner/contact-us-375.png') !important;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Mobile (577px and up) */
@media (min-width: 577px) {
  .banner__slider .slide-bg[data-background*="assets/images/banner/reimagine-your-business-576.png"] {
    background-image: url('../../assets/images/banner/reimagine-your-business-576.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/convert-to-technology-576.png"] {
    background-image: url('../../assets/images/banner/convert-to-technology-576.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/empower-your-business-576.png"] {
    background-image: url('../../assets/images/banner/empower-your-business-576.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/about-us-576.png"] {
    background-image: url('../../assets/images/banner/about-us-576.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/contact-us-576.png"] {
    background-image: url('../../assets/images/banner/contact-us-576.png') !important;
  }
}

/* Tablet (769px and up) */
@media (min-width: 769px) {
  .banner__slider .slide-bg[data-background*="assets/images/banner/reimagine-your-business-768.png"] {
    background-image: url('../../assets/images/banner/reimagine-your-business-768.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/convert-to-technology-768.png"] {
    background-image: url('../../assets/images/banner/convert-to-technology-768.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/empower-your-business-768.png"] {
    background-image: url('../../assets/images/banner/empower-your-business-768.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/about-us-768.png"] {
    background-image: url('../../assets/images/banner/about-us-768.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/contact-us-768.png"] {
    background-image: url('../../assets/images/banner/contact-us-768.png') !important;
  }
}

/* Desktop (1200px and up) */
@media (min-width: 1200px) {
  .banner__slider .slide-bg[data-background*="assets/images/banner/reimagine-your-business-1200.png"] {
    background-image: url('../../assets/images/banner/reimagine-your-business-1200.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/convert-to-technology-1200.png"] {
    background-image: url('../../assets/images/banner/convert-to-technology-1200.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/empower-your-business-1200.png"] {
    background-image: url('../../assets/images/banner/empower-your-business-1200.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/about-us-1200.png"] {
    background-image: url('../../assets/images/banner/about-us-1200.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/contact-us-1200.png"] {
    background-image: url('../../assets/images/banner/contact-us-1200.png') !important;
  }
}

/* Large Desktop/4K (1921px and up) */
@media (min-width: 1921px) {
  .banner__slider .slide-bg[data-background*="assets/images/banner/reimagine-your-business-1920.png"] {
    background-image: url('../../assets/images/banner/reimagine-your-business-1920.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/convert-to-technology-1920.png"] {
    background-image: url('../../assets/images/banner/convert-to-technology-1920.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/empower-your-business-1920.png"] {
    background-image: url('../../assets/images/banner/empower-your-business-1920.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/about-us-1920.png"] {
    background-image: url('../../assets/images/banner/about-us-1920.png') !important;
  }
  .banner__slider .slide-bg[data-background*="assets/images/banner/contact-us-1920.png"] {
    background-image: url('../../assets/images/banner/contact-us-1920.png') !important;
  }
}

/* --------------------------------------------------------------------------------------- */

.talk-us__item .section-header h5 {
  padding-bottom: 5px;
}
.talk-us__item .section-header h2 {
  font-size: 36px;
  text-align: start;
  margin-bottom: 40px;
}

.contact__right-item {
  padding-left: 50px;
}

@media (max-width: 991px) {
  .contact__right-item {
    padding-left: 0;
  }
}

.talk-us__item {
  padding: 40px 30px;
  border-radius: 25px;
  background-image: linear-gradient(90deg, rgb(60, 114, 252, 0.9) -10.59%, rgb(0, 6, 12) 300.59%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial
}

.input-with-icon,
.text-area {
  position: relative;
  margin-bottom: 30px;
}

.input-with-icon::after {
  content: '';
  position: absolute;
  left: 44px;
  right: 20px;
  bottom: 18px;
  height: 3px;
  background: linear-gradient(
    90deg, 
    rgba(255,255,255,0.25), 
    rgba(255,255,255,0.95), 
    rgba(255,255,255,0.25)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
  box-shadow: 
    0 0 6px rgba(255,255,255,.45),
    0 0 12px rgba(60,114,252,.25);
  pointer-events: none;
  z-index: 3;
}

.input-with-icon:focus-within::after {
  transform: scaleX(1);
}

.text-area::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  height: 3px;
  background: linear-gradient(
    90deg, 
    rgba(255,255,255,.25),
    rgba(255,255,255,.95),
    rgba(255,255,255,.25)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
  box-shadow: 
    0 0 6px rgba(255,255,255,.45),
    0 0 12px rgba(60,114,252,.25);
  pointer-events: none;
  z-index: 3;
}

.text-area:focus-within::after {
  transform: scaleX(1);
}

.contact__form input,
.contact__form textarea {
  color: #ffffff;
  caret-color: #ffffff;
}

.contact__form .contact-form-input,
.contact__form .contact-form-textarea {
    width: 100%;
    padding: 18px 20px 18px 44px;
    margin-bottom: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    box-shadow: 
        inset -15px -15px 30px -5px rgba(60, 154, 252, .4),
        5px 8px 15px -5px rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(245, 245, 245, 0.1);
    font-size: 16px;
    color: #ffffff;
    caret-color: #ffffff;
    transition: all 0.3s ease;
    cursor: text;
    transform: translateZ(0);
}

.contact__form .contact-form-textarea {
  height: 110px;
  resize: vertical;
}

.contact-input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  /*color: #666;*/
  color: #9bb3ff;
  font-size: 14px;
  z-index: 2;
  pointer-events: none;
}

.contact__form .contact-form-input::placeholder,
.contact__form .contact-form-textarea::placeholder {
    color: #ffffff;
    opacity: 0.8;
    white-space: pre-line;
}

.contact__form .contact-form-input:hover,
.contact__form .contact-form-textarea:hover {
    transform: translateY(-5px);
    box-shadow: 
        inset -15px -15px 30px -5px rgba(60, 154, 252, .6),
        5px 8px 30px -5px rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(245, 245, 245, 0.2);
    background: linear-gradient(135deg, rgba(60, 114, 252, 0.5), rgba(60, 114, 252, 0.3));
}

.contact__form .contact-form-input:focus,
.contact__form .contact-form-textarea:focus {
  outline:none;
  color: #ffffff;
  caret-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 
    0 15px 45px rgba(60, 114, 252, 0.25),
    inset 0 4px 16px rgba(60, 114, 252, 0.2);
  border-top: 2px solid rgba(60, 114, 252, 0.3); 
  border-left: 2px solid rgba(60, 114, 252, 0.3); 
  border-bottom: 2px solid rgb(60, 114, 252);     
  border-right: 2px solid rgb(60, 114, 252);
  background: linear-gradient(135deg, rgb(60, 114, 252), rgba(60, 114, 252, 0.5));
}

.input-with-icon:focus-within .contact-input-icon {
  transform: translateY(-50%) translateX(2px);
  color: #fff;
  opacity: .95;
}

.talk-us__item form button {
  padding: 15px 20px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-top: 15px;
  transition: var(--transition);
}

/*******************************
    RESPONSIVE BREAKPOINTS
*******************************/

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
  /* Add large desktop specific styles here */
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  /* Add desktop specific styles here */
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  /* Add tablet landscape specific styles here */
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  /* Add tablet portrait specific styles here */
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  /* Add mobile large specific styles here */
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
  /* Add mobile small specific styles here */
}

/* Extra Small Mobile (up to 480px) */
@media (max-width: 480px) {
  /* Add extra small mobile specific styles here */
}

/*******************************
    ANIMATIONS & EFFECTS
*******************************/



