/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme-color: #6C57D2;
  --theme-color-2: #FF792E;
  --header: #003566;
  --text: #656565;
  --border: #E6EFFF;
  --ratting: #F8BC26;
  --bg: #FFF9ED;
  --bg-2: #6C57D21A;
  ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

.theme-btn {
  background: #1d305f;
  color: var(--white);
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  padding: 7px 30px;
  padding-right: 5px;
  border-radius: 0;
  line-height: 1;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  overflow: hidden;
}

.theme-btn i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme-color);
  margin-left: 30px;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
}

.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
  border-radius: 6px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
  border-radius: 6px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.theme-btn:hover::before,
.theme-btn:hover::after {
  width: 100%;
}

.theme-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white);
}

.theme-btn.bg-header {
  background-color: var(--header);
}

.theme-btn.bg-header::before,
.theme-btn.bg-header::after {
  background-color: var(--white);
}

.theme-btn.bg-header i {
  background-color: var(--theme-color);
  color: var(--white);
}

.theme-btn.bg-header:hover {
  color: var(--header);
}

.link-btn {
  font-size: 15px;
  font-weight: 900;
  color: var(--theme-color);
  text-transform: capitalize;
  display: inline-block;
  font-family: "DM Sans";
  margin-top: 10px;
}

.link-btn:hover {
  color: var(--theme-color-2);
}

.link-btn i {
  margin-left: 10px;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-weight: 400;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

h1 {
  font-size: 72px;
  font-weight: 600;
  line-height: 110%;
}

@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 58px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 130%;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 470px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
}

h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
}

h6 {
  font-size: 14px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #AF49E5;
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em "Outfit", sans-serif, "Inter", sans-serif;
  text-align: center;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: #AF49E5;
  position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #AF49E5;
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.header-search-bar {
  height: 270px;
  position: fixed;
  top: -200%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  transition: 0.3s;
}

.header-search-bar.search-open {
  top: 0;
}

.contact-search-form-box {
  margin-top: 50px;
}

.contact-search-form-box form {
  position: relative;
}

.contact-search-form-box form button {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 18px;
}

.search-close {
  position: absolute;
  right: 50px;
  top: 35px;
  font-size: 50px;
  color: var(--header);
  font-weight: 300;
  width: 45px;
  height: 45px;
}

.search-bar .contact-search-form-box input {
  border: none;
  width: 100%;
  outline: none;
  color: var(--header);
  border-bottom: 1px solid var(--border);
  font-size: 24px;
  padding-bottom: 30px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 767px) {
  .search-bar .contact-search-form-box input {
    font-size: 22px;
  }
}

.search-bar .contact-search-form-box input::placeholder {
  color: var(--header);
}

.search-bar .contact-search-form-box i {
  color: var(--theme-color);
}

.search-bar .contact-search-form-box p {
  color: #666C78;
  padding-top: 15px;
}

.search-bar .search-bar-title {
  font-size: 25px;
}

.back-to-top {
  border-radius: 10px;
  background-color: var(--theme-color-2);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -7px;
}

@media (max-width: 767px) {
  .section-title {
    text-align: center;
    margin-bottom: 0;
  }
}

.section-title span {
  font-size: 26px;
  font-weight: 800;
  color: #1d2f5e;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-family: 'flaticon';
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: center;
  }
}

.section-title-area .section-title {
  margin-bottom: 0;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg) !important;
}

.section-bg-2 {
  background-color: var(--bg-2) !important;
}

.footer-bg {
  background-color: #2F304C;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

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

.body-bg-4 {
  background-color: #040A3D;
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes arryUpDown {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}

.animation__arryUpDown {
  animation: arryUpDown 2s ease infinite alternate;
}

@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(10px);
  }
}

.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}

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

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.GlidingArrow {
  -webkit-animation: slide 5s linear infinite;
  animation: slide 5s linear infinite;
}

.delay1 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay2 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.delay3 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.delay4 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.delay5 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

/* Defining animation Keyframes */
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }

  20% {
    opacity: 1;
    transform: translateX(-90);
  }

  80% {
    opacity: 1;
    transform: translateX(90);
  }

  100% {
    opacity: 0;
    transform: translateX(150);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }

  20% {
    opacity: 1;
    transform: translateX(-90);
  }

  80% {
    opacity: 1;
    transform: translateX(90);
  }

  100% {
    opacity: 0;
    transform: translateX(150);
  }
}

/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

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

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

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

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }

  100% {
    background-position: top left 2000px;
  }
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 30px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  font-family: "Inter", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a .head-icon {
  margin-left: 0;
  margin-right: 5px;
}

.header-main .main-menu ul li a i {
  margin-left: 5px;
  font-size: 14px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme-color-2) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
  padding: 30px 30px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li .submenu li:not(:last-child) {
  padding-bottom: 15px;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 0;
  padding-bottom: 0;
  padding-top: 0;
  text-transform: u;
  font-family: "Inter", sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme-color-2) !important;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-color-2);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme-color-2);
}

.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  justify-content: center;
  gap: 10px;
  display: initial !important;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  font-size: 16px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme-color-2);
  line-height: initial;
  justify-content: center;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme-color-2);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme-color-2);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-main .header-right {
  gap: 40px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--header);
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.header-1 .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .header-1 .header-main {
    padding: 14px 0;
  }
}

.header-1 .header-main .sidebar__toggle {
  color: var(--header);
}

.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-1 .header-right .link-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color-2);
  margin-top: 0;
}

@media (max-width: 1399px) {
  .header-1 .header-right .link-btn {
    display: none;
  }
}

.header-1 .header-right .link-btn a {
  font-weight: 500;
}

.header-1 .header-right .theme-btn {
  background-color: var(--white);
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

@media (max-width: 1199px) {
  .header-1 .header-right .theme-btn {
    display: none;
  }
}

.header-1 .header-right .theme-btn i {
  background-color: #1d305f;
  color: var(--white);
}

.header-1 .header-right .theme-btn:hover {
  color: var(--white);
}

.header-1.header-4 .header-main .main-menu ul li a {
  color: var(--white);
}

.header-1.header-4 .header-main .main-menu ul li a:hover {
  color: var(--theme-color-2) !important;
}

.header-1.header-4 .header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
  padding: 30px 30px;
}

.header-1.header-4 .header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-1.header-4 .header-main .main-menu ul li .submenu li:not(:last-child) {
  padding-bottom: 15px;
}

.header-1.header-4 .header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 0;
  padding-bottom: 0;
  padding-top: 0;
  text-transform: u;
  font-family: "Inter", sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-1.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}

.header-1.header-4 .header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-1.header-4 .header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-1.header-4 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme-color-2) !important;
}

.header-1.header-4 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-color-2);
}

.header-1.header-4 .header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-1.header-4 .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme-color-2);
}

.header-1.header-4 .header-main .main-menu ul li:hover>a {
  color: var(--theme-color-2);
}

.header-1.header-4 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme-color-2);
}

.header-1.header-4 .header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-1.header-4 .header-main .header-right {
  gap: 40px;
}

@media (max-width: 1399px) {
  .header-1.header-4 .header-main .header-right {
    gap: 20px;
  }
}

.header-1.header-4 .header-main .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}

.header-1.header-4 .header-main .sidebar__toggle {
  color: var(--white);
}

.header-1.header-4 .header-right .header-button .theme-btn {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.header-1.header-4 .header-right .header-button .theme-btn i {
  background-color: rgba(255, 255, 255, 0.15);
}

.header-1.header-4 .header-right .header-button .theme-btn::before,
.header-1.header-4 .header-right .header-button .theme-btn::after {
  background-color: var(--theme-color-2);
}

.header-1.header-4 .header-right .header-button .theme-btn:hover {
  border: 1px solid transparent;
}

.header-1.header-4 .header-right .header-button .theme-btn:hover i {
  background-color: var(--white);
  color: var(--header);
}

.header-section-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.header-section-2 .container {
  max-width: 1555px;
}

.header-section-2 .header-1 {
  position: static;
}

.header-section-2 .header-1 .container {
  max-width: 1555px;
}

.header-section-2 .header-1 .mega-menu-wrapper {
  border-radius: 9px;
  background: var(--white);
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.04);
  padding: 0 40px;
}

.header-section-2 .header-top-wrapper {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: blueviolet;
}

@media (max-width: 1199px) {
  .header-section-2 .header-top-wrapper {
    display: none;
  }
}

.header-section-2 .header-top-wrapper .top-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-section-2 .header-top-wrapper .top-list li b {
  color: var(--theme-color-2);
}

.header-section-2 .header-top-wrapper .top-list li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.header-section-2 .header-top-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
}

.header-section-2 .header-top-wrapper .social-icon a {
  color: var(--white);
}

.header-section-2 .header-top-wrapper .social-icon a:hover {
  color: var(--theme-color);
}

.header-section-2 .header-top-wrapper.style-2 .top-list li {
  color: var(--white);
}

.header-section-2 .header-top-wrapper.style-2 .top-list li b {
  color: var(--theme-color-2);
}

.header-section-2 .header-top-wrapper.style-2 .top-list li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.header-section-2 .header-top-wrapper.style-2 .top-list li a {
  color: var(--white);
}

.header-section-2 .header-top-wrapper.style-2 .social-icon a {
  color: var(--white);
}

.header-section-2 .header-top-wrapper.style-2 .social-icon a:hover {
  color: var(--theme-color-2);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: var(---box-shadow);
}

.sticky.header-1 .header-logo {
  display: none;
}

.sticky.header-1 .header-logo-2 {
  display: block;
}

.sticky.header-1 .header-main .main-menu ul li a {
  color: #1d305f;
}

.sticky.header-1 .header-main .main-menu ul li a:hover {
  color: var(--theme-color-2) !important;
}

.sticky.header-1 .header-main .main-menu ul li:hover>a {
  color: var(--theme-color-2);
}

.sticky.header-1 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme-color-2);
}

.sticky.header-1 .header-main .sidebar__toggle {
  color: var(--header);
}

.sticky.header-4 {
  background-color: #00073e;
  box-shadow: rgba(4, 10, 61, 0.9) 0px 8px 24px;
}

.sticky.header-4 .header-main .main-menu ul li a {
  color: var(--white);
}

.sticky.header-4 .header-main .main-menu ul li a:hover {
  color: var(--theme-color-2) !important;
}

.sticky.header-4 .header-main .main-menu ul li .submenu {
  background: var(--white);
}

.sticky.header-4 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.sticky.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}

.sticky.header-4 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme-color-2) !important;
}

.sticky.header-4 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-color-2);
}

.sticky.header-4 .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme-color-2);
}

.sticky.header-4 .header-main .main-menu ul li:hover>a {
  color: var(--theme-color-2);
}

.sticky.header-4 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme-color-2);
}

.sticky.header-4 .header-main .sidebar__toggle {
  color: var(--white);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-color-2);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas-title {
  font-size: 28px;
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color-2);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
  border: 1px solid var(--theme-color-2);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
  margin-bottom: 40px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 400;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  font-size: 16px;
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
  font-weight: 400;
  color: var(--header);
  font-size: 18px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
  font-size: 16px;
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: flex;
  align-items: center;
}

.offcanvas__wrapper .offcanvas__content .theme-btn {
  width: 100%;
  text-align: center;
  background-color: var(--theme-color-2);
  color: var(--white);
  padding: 22px 36px 22px;
}

.offcanvas__wrapper .offcanvas__content .theme-btn i {
  background-color: var(--white);
  color: var(--header);
  position: absolute;
  bottom: 5px;
  right: 10px;
  top: 10px;
  margin-left: 0;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-section {
  position: relative;
}

.page-heading {
  padding: 170px 0 58px;
  position: relative;
  text-align: center;
}



@media (max-width: 1199px) {
  .page-heading {
    padding: 140px 0 50px;
    text-align: center;
  }
}

.page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}

.page-heading .breadcrumb-list li {
  color: var(--white);
  font-weight: 600;
  position: relative;
  font-size: 16px;
  text-transform: capitalize;
}

.page-heading .breadcrumb-list li a {
  color: var(--white);
}

.page-heading .breadcrumb-list li a:hover {
  color: var(--theme-color);
}

.page-heading h2 {
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  text-transform: c;
}

.page-heading h1 {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 30px;
}

@media (max-width: 575px) {
  .page-heading h2 {
    font-size: 20px;
  }

  .page-heading h1 {
    font-size: 13px;
    line-height: 28px !important;
  }
}

.error-items {
  text-align: center;
}

.error-items .thumb {
  max-width: 1000px;
  margin: 0 auto;
}

.error-items .thumb img {
  width: 100%;
  height: 100%;
}

.error-items .content {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
}

.error-items .content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

.error-items .content .theme-btn {
  border: 1px solid transparent;
  border-radius: 100px;
  margin-top: 50px;
}

.error-items .content .theme-btn i {
  border-radius: 100px;
}

.error-items .content .theme-btn::after,
.error-items .content .theme-btn::before {
  border-radius: 100px;
}

.error-items .content .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.error-items .content .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.error-items .content .theme-btn.style-2 {
  border: 1px solid var(--theme-color-2);
  background-color: transparent;
  color: var(--theme-color-2);
}

.error-items .content .theme-btn.style-2 i {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.error-items .content .theme-btn.style-2::after,
.error-items .content .theme-btn.style-2::before {
  background-color: var(--theme-color-2);
}

.error-items .content .theme-btn.style-2:hover {
  color: var(--white);
}

.error-items .content .theme-btn.style-2:hover i {
  background-color: var(--white);
  color: var(--header);
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.mean-container .mean-nav ul li a.border-none {
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.mean-container .mean-nav ul li a .head-icon {
  display: none;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  padding: 150px 0 100px;
  padding-bottom: 90px;
  position: relative;
}

.hero-1 .hero-content {
  position: relative;
  z-index: 99;
}

@media (max-width: 767px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}

.hero-1 .hero-content h1 {
  margin-bottom: 15px;
}

.hero-1 .hero-content p {
  margin-bottom: 32px;
}

.hero-1 .hero-content .client-info {
  display: flex;
  gap: 20px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .client-info {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content .client-info {
    justify-content: center;
  }
}

.hero-1 .hero-content .hero-btn {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-btn {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content .hero-btn {
    justify-content: center;
    margin-top: 30px;
  }
}

.hero-1 .hero-content .hero-btn .theme-btn {
  border: 1px solid transparent;
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2 {
  border: 1px solid var(--theme-color-2);
  background-color: transparent;
  color: var(--theme-color-2);
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2 i {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2::after,
.hero-1 .hero-content .hero-btn .theme-btn.style-2::before {
  background-color: var(--theme-color-2);
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2:hover {
  color: var(--white);
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2:hover i {
  background-color: var(--white);
  color: var(--header);
}

.hero-1 .hero-img {
  text-align: right;
  position: relative;
}

@media (max-width: 1399px) {
  .hero-1 .hero-img img {
    width: 100%;
    height: 100%;
  }
}

.hero-1 .hero-img .box-shape {
  position: absolute;
  left: -100px;
  bottom: 4%;
}

@media (max-width: 1399px) {
  .hero-1 .hero-img .box-shape {
    display: none;
  }
}

.hero-1 .hero-img .box-shape-2 {
  position: absolute;
  right: -210px;
  top: 20%;
}

@media (max-width: 1600px) {
  .hero-1 .hero-img .box-shape-2 {
    right: -85px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-img .box-shape-2 {
    display: none;
  }
}

.hero-1 .left-shape {
  position: absolute;
  top: 10%;
  left: 100px;
}

@media (max-width: 1199px) {
  .hero-1 .left-shape {
    display: none;
  }
}

.hero-1 .plane-shape {
  position: absolute;
  left: 43%;
  bottom: 45%;
}

@media (max-width: 1199px) {
  .hero-1 .plane-shape {
    display: none;
  }
}

.hero-2 {
  background-color: #FFFCF2;
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .hero-2 {
    padding: 100px 0 100px;
  }
}

@media (max-width: 991px) {
  .hero-2 {
    padding-top: 190px;
  }
}

@media (max-width: 767px) {
  .hero-2 {
    padding-top: 160px;
  }
}

.hero-2 .hero-content {
  padding-top: 60px;
}

@media (max-width: 1399px) {
  .hero-2 .hero-content {
    padding-top: 0;
  }
}

.hero-2 .hero-content .hero-text {
  font-size: 18px;
  color: #3B3B3B;
  max-width: 530px;
  margin-top: 30px;
}

.hero-2 .hero-content .hero-btn {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1399px) {
  .hero-2 .hero-content .hero-btn {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}

.hero-2 .hero-content .hero-btn .theme-btn {
  border: 1px solid transparent;
  border-radius: 100px;
}

.hero-2 .hero-content .hero-btn .theme-btn i {
  border-radius: 100px;
}

.hero-2 .hero-content .hero-btn .theme-btn::after,
.hero-2 .hero-content .hero-btn .theme-btn::before {
  border-radius: 100px;
}

.hero-2 .hero-content .hero-btn .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-2 .hero-content .hero-btn .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.hero-2 .hero-content .hero-btn .theme-btn.style-2 {
  border: 1px solid var(--theme-color-2);
  background-color: transparent;
  color: var(--theme-color-2);
}

.hero-2 .hero-content .hero-btn .theme-btn.style-2 i {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.hero-2 .hero-content .hero-btn .theme-btn.style-2::after,
.hero-2 .hero-content .hero-btn .theme-btn.style-2::before {
  background-color: var(--theme-color-2);
}

.hero-2 .hero-content .hero-btn .theme-btn.style-2:hover {
  color: var(--white);
}

.hero-2 .hero-content .hero-btn .theme-btn.style-2:hover i {
  background-color: var(--white);
  color: var(--header);
}

.hero-2 .hero-content .hero-counter-item {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
}

@media (max-width: 1399px) {
  .hero-2 .hero-content .hero-counter-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}

.hero-2 .hero-content .hero-counter-item .counter-box h2 {
  font-size: 48px;
  font-weight: 600;
}

.hero-2 .hero-image {
  position: relative;
  margin-right: -50%;
}

@media (max-width: 1600px) {
  .hero-2 .hero-image {
    margin-right: -60px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-image {
    margin-right: -100px;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-image {
    margin-right: 0;
  }
}

.hero-2 .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-2 .hero-image .video-btn {
  display: inline-block;
  width: 138px;
  height: 138px;
  line-height: 138px;
  text-align: center;
  background-color: var(--white);
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.04);
  border-radius: 50%;
  transform: translateY(-50%);
  left: 74px;
  top: 42%;
  position: absolute;
  font-size: 18px;
}

.hero-2 .plane-shape {
  position: absolute;
  left: 40%;
  bottom: 30%;
}

.hero-3 {
  padding: 300px 0 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
  margin-bottom: 75px;
}

@media (max-width: 1199px) {
  .hero-3 {
    padding-top: 250px;
  }
}

@media (max-width: 767px) {
  .hero-3 {
    padding: 150px 0 250px;
  }
}

.hero-3 .video-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -75px;
  width: 140px;
  height: 140px;
  line-height: 140px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.04);
}

.hero-3 .left-shape {
  position: absolute;
  left: 130px;
  top: 29%;
}

@media (max-width: 1600px) {
  .hero-3 .left-shape {
    left: 0;
  }
}

@media (max-width: 991px) {
  .hero-3 .left-shape {
    display: none;
  }
}

.hero-3 .right-shape {
  right: 55px;
  top: 30%;
  position: absolute;
}

@media (max-width: 1600px) {
  .hero-3 .right-shape {
    right: 0;
  }
}

@media (max-width: 991px) {
  .hero-3 .right-shape {
    display: none;
  }
}

.hero-3 .plane-shape {
  position: absolute;
  left: 20%;
  bottom: 80px;
}

@media (max-width: 991px) {
  .hero-3 .plane-shape {
    display: none;
  }
}

.hero-3 .plane-shape-2 {
  position: absolute;
  right: 20%;
  bottom: 90px;
}

@media (max-width: 991px) {
  .hero-3 .plane-shape-2 {
    display: none;
  }
}

.hero-3 .hero-content {
  position: relative;
  z-index: 99;
}

.hero-3 .hero-content span {
  display: inline-block;
  font-size: 18px;
  color: var(--white);
  border: 1px solid var(--white);
  line-height: 1;
  padding: 12px 28px;
  line-height: 1;
  transform: rotate(-9.696deg);
  max-width: 160px;
  margin-bottom: 20px;
  margin-left: 160px;
}

.hero-3 .hero-content h1 {
  color: var(--white);
  font-size: 72px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 35px !important;
    line-height: 44px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 42px;
  }
}

.hero-3 .hero-content p {
  font-size: 18px;
  color: var(--white);
  margin-top: 30px;
  margin: 30px auto 0;
  text-align: center;
  max-width: 530px;
}

.hero-3 .hero-content form {
  max-width: 872px;
  width: 100%;
  background-color: var(--white);
  height: 71px;
  line-height: 71px;
  border-radius: 74px;
  border: 1px solid rgba(0, 53, 102, 0.12);
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.04);
  margin: 50px auto 0;
  padding-left: 30px;
  position: relative;
}

.hero-3 .hero-content form .input-item input {
  width: 100%;
  max-width: 300px;
  border: none;
  background: transparent;
  outline: none;
  color: var(--text);
}

@media (max-width: 767px) {
  .hero-3 .hero-content form .input-item input {
    max-width: 180px;
  }
}

@media (max-width: 470px) {
  .hero-3 .hero-content form .input-item input {
    max-width: 140px;
  }
}

.hero-3 .hero-content form .input-item input:last-child {
  border-left: 1px solid rgba(0, 53, 102, 0.12);
  padding-left: 20px;
}

.hero-3 .hero-content form .theme-btn {
  border-radius: 100px;
  position: absolute;
  bottom: 4px;
  right: 4px;
  background-color: var(--theme-color-2);
}

@media (max-width: 767px) {
  .hero-3 .hero-content form .theme-btn {
    position: static;
    margin-top: 15px;
  }
}

.hero-3 .hero-content form .theme-btn::before,
.hero-3 .hero-content form .theme-btn::after {
  border-radius: 100px;
}

.hero-3 .hero-content form .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-3 .hero-content form .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.hero-3 .hero-content form .theme-btn i {
  border-radius: 100px;
}

.hero-4 {
  padding: 190px 0 120px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .hero-4 {
    background: linear-gradient(270deg, #8801FF 0%, #A287EE 95.97%);
  }
}

.hero-4 .shape-1 {
  position: absolute;
  right: 0;
  top: 20%;
}

@media (max-width: 1600px) {
  .hero-4 .shape-1 {
    display: none;
  }
}

.hero-4 .shape-2 {
  position: absolute;
  right: 90px;
  bottom: 32%;
}

@media (max-width: 1600px) {
  .hero-4 .shape-2 {
    display: none;
  }
}

.hero-4 .shape-3 {
  position: absolute;
  right: 20%;
  top: 25%;
}

@media (max-width: 1600px) {
  .hero-4 .shape-3 {
    display: none;
  }
}

.hero-4 .shape-4 {
  position: absolute;
  top: 20%;
  left: 80px;
}

@media (max-width: 1600px) {
  .hero-4 .shape-4 {
    display: none;
  }
}

.hero-4 .hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .hero-4 .hero-bg {
    display: none;
  }
}

.hero-4 .hero-bg img {
  height: 100%;
}

@media (max-width: 991px) {
  .hero-4 .hero-content {
    text-align: center;
  }
}

.hero-4 .hero-content h1 {
  color: var(--white);
}

.hero-4 .hero-content p {
  font-size: 18px;
  color: var(--white);
  margin-top: 30px;
}

.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .hero-4 .hero-content .hero-button {
    justify-content: center;
    margin-top: 25px;
  }
}

.hero-4 .hero-content .hero-button .theme-btn {
  border-radius: 55px;
  background: #FF792E;
}

.hero-4 .hero-content .hero-button .theme-btn i {
  border-radius: 50%;
  color: var(--theme-color-2);
}

.hero-4 .hero-content .hero-button .theme-btn::before,
.hero-4 .hero-content .hero-button .theme-btn::after {
  border-radius: 55px;
}

.hero-4 .hero-content .hero-button .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-4 .hero-content .hero-button .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.hero-4 .hero-content .hero-button .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme-color-2);
}

.hero-4 .hero-content .hero-button .link-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-top: 0;
  text-decoration: underline;
}

@media (max-width: 1399px) {
  .hero-4 .hero-content .hero-button .link-btn {
    display: none;
  }
}

.hero-4 .hero-content .hero-button .link-btn a {
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 1600px) {
  .hero-4 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-content .section-title {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .choose-us-wrapper .choose-us-content {
    text-align: center;
  }

  .choose-us-wrapper .choose-us-content .section-title {
    text-align: center;
  }
}

.choose-us-wrapper .choose-us-content .icon-box-items .icon-box {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-content .icon-box-items .icon-box {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.choose-us-wrapper .choose-us-content .icon-box-items .icon-box .icon {
  border-radius: 2px;
  background: #FFEBEB;
  width: 101px;
  height: 101px;
  line-height: 110px;
  text-align: center;
}

@media (max-width: 575px) {
  .choose-us-wrapper .choose-us-content .icon-box-items .icon-box .icon {
    margin: 0 auto;
  }
}

.choose-us-wrapper .choose-us-content .icon-box-items .icon-box .icon i {
  font-size: 57px;
  color: #F05454;
}

.choose-us-wrapper .choose-us-content .icon-box-items .icon-box .content h6 {
  color: #F05454;
  font-family: "Outfit", sans-serif;
}

.choose-us-wrapper .choose-us-content .icon-box-items .icon-box .content h6 br {
  display: block;
}

.choose-us-wrapper .choose-us-content .icon-box-items .icon-box.style-2 .icon {
  border-radius: 2px;
  background: #F0EEFB;
}

.choose-us-wrapper .choose-us-content .icon-box-items .icon-box.style-2 .icon i {
  color: #6C57D2;
}

.choose-us-wrapper .choose-us-content .icon-box-items .icon-box.style-2 .content h6 {
  color: #6C57D2;
}

.choose-us-wrapper .choose-us-content .choose-us-card {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-content .choose-us-card {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .choose-us-wrapper .choose-us-content .choose-us-card {
    justify-content: center;
  }
}

.choose-us-wrapper .choose-us-content .choose-us-card .phone-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.choose-us-wrapper .choose-us-content .choose-us-card .phone-box .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #FF792E;
  text-align: center;
  border-radius: 50%;
}

.choose-us-wrapper .choose-us-content .choose-us-card .phone-box .icon i {
  color: var(--white);
  font-size: 22px;
}

.choose-us-wrapper .choose-us-img img {
  width: 100%;
  height: 100%;
}

.counter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1199px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
  }
}

.counter-wrapper .counter-items {
  display: flex;
  gap: 20px;
  align-items: center;
}

.counter-wrapper .counter-items .icon {
  font-size: 60px;
  color: #FF792E;
}

.counter-wrapper .counter-items .content h2 {
  line-height: 1;
  color: #FF792E;
}

.counter-wrapper .counter-items .content p {
  color: #003566;
  font-size: 20px;
  font-weight: 500;
}

.counter-wrapper .counter-items.style-2 .icon {
  color: #6C57D2;
}

.counter-wrapper .counter-items.style-2 .content h2 {
  color: #6C57D2;
}

.counter-wrapper .counter-items.style-3 .icon {
  color: #F0BF11;
}

.counter-wrapper .counter-items.style-3 .content h2 {
  color: #F0BF11;
}

.counter-wrapper .counter-items.style-4 .icon {
  color: #49DCA2;
}

.counter-wrapper .counter-items.style-4 .content h2 {
  color: #49DCA2;
}

.pricing-section .nav {
  border: none;
  margin-top: 30px;
}

.pricing-section .nav .nav-tabs {
  border-bottom: 0;
  display: flex;
  justify-content: center;
}

.pricing-section .nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  padding: 7px 56px;
  position: relative;
  background: transparent;
  z-index: 2;
  color: var(--text);
  margin-bottom: 0;
}

.pricing-section .nav .nav-link::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: var(--theme-color);
  width: 75px;
  height: 32px;
  border-radius: 20px;
  border: 1px solid var(--theme-color);
}

.pricing-section .nav .nav-link::after {
  position: absolute;
  content: "";
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--theme-color-2);
  z-index: 1;
}

.pricing-section .nav .nav-link:first-child {
  padding-left: 0;
}

.pricing-section .nav .nav-link:last-child {
  padding-right: 0;
}

.pricing-section .nav .nav-link:last-child::after {
  display: none;
}

.pricing-section .nav .nav-link:last-child::before {
  display: none;
}

.pricing-section .nav .nav-link.active {
  color: var(--theme-color);
}

.pricing-section .nav .nav-link.active::after {
  right: 8px;
}

.pricing-box-items {
  border-radius: 34px;
  border: 1px solid rgba(0, 53, 102, 0.12);
  background: #FFF;
  padding: 50px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .pricing-box-items {
    padding: 30px;
  }
}

@media (max-width: 470px) {
  .pricing-box-items {
    padding: 25px;
  }
}

.pricing-box-items .pricing-header h3 {
  line-height: 160%;
}

.pricing-box-items .pricing-header h2 {
  font-size: 72px;
  font-weight: 700;
  color: #FF792E;
}

@media (max-width: 767px) {
  .pricing-box-items .pricing-header h2 {
    font-size: 50px;
  }
}

.pricing-box-items .pricing-header h2 sup {
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
  color: #FF792E;
  top: -1em;
}

.pricing-box-items .pricing-header h2 sub {
  font-size: 15px;
  font-weight: 500;
  color: #5C6672;
}

.pricing-box-items .theme-btn {
  width: 100%;
  margin-top: 30px;
  margin-right: 0;
  text-align: center;
  padding: 22px 30px;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.pricing-box-items .theme-btn i {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: var(--theme-color);
  bottom: 0;
  color: var(--white);
}

.pricing-box-items .theme-btn::before,
.pricing-box-items .theme-btn::after {
  background-color: var(--theme-color);
}

.pricing-box-items .theme-btn:hover {
  color: var(--white);
}

.pricing-box-items .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme-color);
}

.pricing-box-items .pricing-list {
  margin-top: 30px;
}

.pricing-box-items .pricing-list li:nth-last-of-type(1) i {
  color: #FF792E;
}

.pricing-box-items .pricing-list li:nth-last-of-type(2) i {
  color: #FF792E;
}

.pricing-box-items .pricing-list li i {
  color: #49DCA2;
  margin-right: 10px;
}

.pricing-box-items .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}

.pricing-box-items.active {
  background-color: #6C57D2;
}

.pricing-box-items.active .pricing-header h3 {
  color: var(--white);
}

.pricing-box-items.active .pricing-header h2 {
  color: var(--white);
}

.pricing-box-items.active .pricing-header h2 sup {
  color: var(--white);
}

.pricing-box-items.active .pricing-header h2 sub {
  color: var(--white);
}

.pricing-box-items.active p {
  color: var(--white);
}

.pricing-box-items.active .theme-btn {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.pricing-box-items.active .theme-btn i {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: var(--white);
  bottom: 0;
  color: var(--theme-color-2);
}

.pricing-box-items.active .theme-btn::before,
.pricing-box-items.active .theme-btn::after {
  background-color: var(--white);
}

.pricing-box-items.active .theme-btn:hover {
  color: var(--header);
}

.pricing-box-items.active .theme-btn:hover i {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.pricing-box-items.active .pricing-list li {
  color: var(--white);
}

.working-process-section-2 .icon-box-items-2 {
  border-radius: 34px;
  border: 1px solid rgba(0, 53, 102, 0.12);
  background: #FFF;
  padding: 55px 50px;
  display: flex;
  gap: 20px;
  position: relative;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .working-process-section-2 .icon-box-items-2 {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .working-process-section-2 .icon-box-items-2 {
    flex-wrap: wrap;
  }
}

.working-process-section-2 .icon-box-items-2 .number {
  position: absolute;
  top: 35px;
  right: 33px;
  font-size: 72px;
  font-weight: 600;
  color: rgba(0, 53, 102, 0.08);
}

.working-process-section-2 .icon-box-items-2 .icon {
  font-size: 47px;
  color: #F05454;
}

.working-process-section-2 .icon-box-items-2 .icon.style-2 {
  color: #6C57D2;
}

.working-process-section-2 .icon-box-items-2 .icon.style-3 {
  color: #49DCA2;
}

.working-process-section-2 .icon-box-items-2 .content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-choose-us-wrapper-2 {
  position: relative;
  z-index: 9;
}

.why-choose-us-wrapper-2 .vec-shape {
  position: absolute;
  left: 54%;
  top: 45px;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.why-choose-us-wrapper-2 .choose-us-left-content .choose-us-text {
  margin-top: 20px;
}

.why-choose-us-wrapper-2 .choose-us-left-content .left-content h4 {
  font-size: 28px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-2 .choose-us-left-content .left-content h4 {
    font-size: 24px;
  }
}

.why-choose-us-wrapper-2 .choose-us-left-content .left-content p {
  margin-top: 10px;
}

.why-choose-us-wrapper-2 .choose-us-left-content .right-content h4 {
  font-size: 28px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-2 .choose-us-left-content .right-content h4 {
    font-size: 24px;
  }
}

.why-choose-us-wrapper-2 .choose-us-left-content .right-content p {
  margin-top: 10px;
}

.why-choose-us-wrapper-2 .choose-us-image {
  position: relative;
}

.why-choose-us-wrapper-2 .choose-us-image img {
  width: 100%;
  height: 100%;
}

.why-choose-us-wrapper-2 .choose-us-image .video-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94px;
  height: 94px;
  line-height: 94px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
}

.counter-wrapper-2 {
  padding: 50px 80px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background-attachment: fixed;
}

@media (max-width: 991px) {
  .counter-wrapper-2 {
    padding: 50px 50px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper-2 {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .counter-wrapper-2 {
    padding: 40px 30px;
    display: grid;
    justify-content: center;
  }
}

.counter-wrapper-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(108, 87, 210, 0.92);
  z-index: -1;
  border-radius: 10px;
}

.counter-wrapper-2 .counter-box-items-2 {
  text-align: center;
}

.counter-wrapper-2 .counter-box-items-2 .counter-icon {
  font-size: 76px;
  color: var(--white);
}

.counter-wrapper-2 .counter-box-items-2 .counter-content {
  margin-top: 10px;
}

.counter-wrapper-2 .counter-box-items-2 .counter-content h2 {
  color: var(--white);
  font-size: 54px;
  font-family: none;
}

@media (max-width: 575px) {
  .counter-wrapper-2 .counter-box-items-2 .counter-content h2 {
    font-size: 42px;
  }
}

.counter-wrapper-2 .counter-box-items-2 .counter-content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.working-process-box-items-3 {
  margin-top: 30px;
  position: relative;
}

.working-process-box-items-3 .working-icon {
  position: relative;
  width: 126px;
  height: 126px;
  line-height: 150px;
  background-color: #F05454;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
}

.working-process-box-items-3 .working-icon .number {
  position: absolute;
  width: 56px;
  height: 56px;
  background-color: var(--white);
  filter: drop-shadow(10px 8px 34px rgba(10, 3, 46, 0.03));
  border-radius: 50%;
  line-height: 56px;
  text-align: center;
  right: -10px;
  top: -12px;
  font-size: 20px;
  font-weight: 600;
  color: #003566;
}

.working-process-box-items-3 .working-icon i {
  font-size: 64px;
  color: var(--white);
}

.working-process-box-items-3 .working-icon.style-2 {
  background-color: #6C57D2;
}

.working-process-box-items-3 .working-icon.style-3 {
  background-color: #EAC02B;
}

.working-process-box-items-3 .working-icon.style-4 {
  background-color: #49DCA2;
}

.working-process-box-items-3 .working-content {
  margin-top: 25px;
  text-align: center;
}

.working-process-box-items-3 .working-content h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-feature-section-3 {
  position: relative;
  z-index: 9;
  background-attachment: fixed;
}

.about-feature-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(28, 28, 28, 0.72);
  z-index: -1;
  border-radius: 10px;
}

.about-feature-box-3 {
  margin-top: 30px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.03);
  padding: 40px 35px;
}

.about-feature-box-3 .about-feature-icon {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 1199px) {
  .about-feature-box-3 .about-feature-icon {
    flex-wrap: wrap;
  }
}

.about-feature-box-3 .about-feature-icon .about-icon {
  width: 85px;
  height: 85px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: #FFEBEB;
}

.about-feature-box-3 .about-feature-icon .about-icon i {
  color: #F05454;
  font-size: 45px;
}

.about-feature-box-3 .about-feature-icon .about-icon.style-2 {
  background-color: #DAF8EC;
}

.about-feature-box-3 .about-feature-icon .about-icon.style-2 i {
  color: #49DCA2;
}

.about-feature-box-3 .about-feature-icon .about-icon.style-3 {
  background-color: #F0EEFB;
}

.about-feature-box-3 .about-feature-icon .about-icon.style-3 i {
  color: #6C57D2;
}

.about-feature-box-3 p br {
  display: none;
}

.video-wrapper-4 {
  height: 500px;
  border-radius: 34px;
  position: relative;
  background-attachment: fixed;
}

.video-wrapper-4 .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-wrapper-4 .video .video-btn {
  width: 114px;
  height: 114px;
  line-height: 114px;
  text-align: center;
  border-radius: 100px;
  background: linear-gradient(270deg, #8801FF 0%, #A287EE 95.97%);
  color: var(--white);
  display: inline-block;
  text-align: center;
  font-size: 24px;
}

.video-wrapper-4 .video .circle-image {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  display: none;
}

.video-wrapper-4 .video .circle-image img {
  animation: cir36 10s linear infinite;
}

.video-wrapper-4 .watch-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1399px) {
  .video-wrapper-4 .watch-text {
    display: none;
  }
}

.counter-section-2 {
  position: relative;
  z-index: 9;
}

.counter-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: #FFFCF2;
  height: 40%;
}

.cta-value-secton-3 {
  position: relative;
  z-index: 9;
}

.cta-value-secton-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: #FFFCF2;
  height: 50%;
}

.video-section-4 {
  position: relative;
}

.video-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #0E1445;
  z-index: -1;
  top: 50%;
}

.pricing-section-4 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.pricing-box-4 {
  margin-top: 30px;
  text-align: center;
  position: relative;
  z-index: 9;
  padding: 48px 50px;
  padding-top: 0;
}

.pricing-box-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  z-index: -1;
  top: 60px;
  height: initial;
  border-radius: 12px;
}

.pricing-box-4::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px dashed rgba(0, 53, 102, 0.24);
  top: 80px;
  height: initial;
  z-index: -1;
  width: calc(100% - 40px);
  bottom: 18px;
  left: 20px;
  border-radius: 4px;
}

.pricing-box-4 .icon {
  width: 130px;
  height: 130px;
  text-align: center;
  border-radius: 50%;
  line-height: 125px;
  margin: 0 auto;
  background-color: var(--theme-color-2);
  font-size: 50px;
  color: var(--white);
  border: 12px solid var(--white);
  border-radius: 50%;
}

.pricing-box-4 .icon.bg-2 {
  background-color: var(--theme-color);
}

.pricing-box-4 .icon.bg-3 {
  background-color: #49DCA2;
}

.pricing-box-4 .pricing-header {
  margin-top: 25px;
  border-bottom: 1px dashed rgba(0, 53, 102, 0.24);
  padding-bottom: 30px;
}

.pricing-box-4 .pricing-header h2 {
  font-size: 72px;
  font-weight: 700;
  color: var(--theme-color-2);
}

.pricing-box-4 .pricing-header h2 sup {
  font-size: 32px;
  top: -28px;
  left: 8px;
}

.pricing-box-4 .pricing-header h2 sub {
  color: #5C6672;
  font-size: 15px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  bottom: 5px;
}

.pricing-box-4 .pricing-header p {
  font-size: 15px;
  font-weight: 500;
}

.pricing-box-4 .pricing-list {
  margin-top: 30px;
}

.pricing-box-4 .pricing-list li {
  color: #59647E;
}

.pricing-box-4 .pricing-list li del {
  color: #59647E;
}

.pricing-box-4 .pricing-list li i {
  color: #49DCA2;
  margin-right: 5px;
}

.pricing-box-4 .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}

.pricing-box-4 .pricing-list li.color-2 i {
  color: var(--theme-color-2);
}

.pricing-box-4 .theme-btn {
  width: 100%;
  margin-top: 30px;
  margin-right: 0;
  text-align: center;
  padding: 22px 30px;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  border-radius: 59px;
}

.pricing-box-4 .theme-btn::before,
.pricing-box-4 .theme-btn::after {
  border-radius: 100px;
}

.pricing-box-4 .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.pricing-box-4 .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.pricing-box-4 .theme-btn i {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: var(--theme-color);
  bottom: 0;
  color: var(--white);
  border-radius: 50%;
}

.pricing-box-4 .theme-btn::before,
.pricing-box-4 .theme-btn::after {
  background-color: var(--theme-color);
}

.pricing-box-4 .theme-btn:hover {
  color: var(--white);
}

.pricing-box-4 .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme-color);
}

.pricing-section-4 {
  padding-top: 220px;
  margin-top: 115px;
}

@media (max-width: 1399px) {
  .pricing-section-4 {
    padding-top: 120px;
    margin-top: 120px;
  }
}

@media (max-width: 1199px) {
  .pricing-section-4 {
    padding-top: 100px;
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .pricing-section-4 {
    padding-top: 80px;
    margin-top: 80px;
  }
}

.pricing-section-4 .nav {
  border: none;
  margin-top: 30px;
}

.pricing-section-4 .nav .nav-tabs {
  border-bottom: 0;
  display: flex;
  justify-content: center;
}

.pricing-section-4 .nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  padding: 7px 56px;
  position: relative;
  background: transparent;
  z-index: 2;
  color: var(--white);
  margin-bottom: 0;
}

.pricing-section-4 .nav .nav-link::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: var(--white);
  width: 75px;
  height: 32px;
  border-radius: 20px;
  border: 1px solid var(--white);
}

.pricing-section-4 .nav .nav-link::after {
  position: absolute;
  content: "";
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--theme-color-2);
  z-index: 1;
}

.pricing-section-4 .nav .nav-link:first-child {
  padding-left: 0;
}

.pricing-section-4 .nav .nav-link:last-child {
  padding-right: 0;
}

.pricing-section-4 .nav .nav-link:last-child::after {
  display: none;
}

.pricing-section-4 .nav .nav-link:last-child::before {
  display: none;
}

.pricing-section-4 .nav .nav-link.active {
  color: var(--theme-color-2);
}

.pricing-section-4 .nav .nav-link.active::after {
  right: 8px;
}

.about-wrapper .about-img img {
  width: 100%;
  height: 100%;
}

.about-wrapper .about-content {
  margin-left: 45px;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .section-title {
    text-align: left;
  }

  .section-title span {
    font-size: 21px !important;
    font-weight: bold;
  }
}

.about-wrapper .about-content .about-text {
  margin-top: 20px;
  max-width: 545px;
  font-size: 16px;
  color: black;
}

.about-wrapper .about-content .icon-items {
  display: flex;
  gap: 27px;
  margin-top: 40px;
}

.about-wrapper .about-content .icon-items .icon {
  font-size: 48px;
  color: var(--theme-color);
}

.about-wrapper .about-content .icon-items .content p {
  margin-top: 10px;
}

.about-wrapper .about-content .list-items {
  margin-top: 20px;
}

.about-wrapper .about-content .list-items li i {
  color: #49DCA2;
  font-size: 26px;
}

.about-wrapper .about-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper .about-content .theme-btn {
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 {
    margin-top: -115px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 {
    margin-top: -105px;
  }
}

.about-wrapper-2 .about-img img {
  width: 100%;
  height: 100%;
}

.about-wrapper-2 .about-content {
  margin-left: 35px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
}

.about-wrapper-2 .about-content .about-text {
  margin-top: 20px;
}

.about-wrapper-2 .about-content .icon-box {
  display: flex;
  gap: 20px;
  align-items: center;
  border-radius: 9px;
  background: #FFF;
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.03);
  padding: 30px;
  margin-top: 20px;
}

.about-wrapper-2 .about-content .icon-box .icon {
  font-size: 48px;
  color: #6C57D2;
}

.about-wrapper-2 .about-content .icon-box .icon.style-2 {
  color: #FF792E;
}

.about-feature-wrapper-1 {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .about-feature-wrapper-1 {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-feature-wrapper-1 .about-feature-box {
  display: flex;
  gap: 20px;
}

.about-feature-wrapper-1 .about-feature-box .about-icon {
  font-size: 48px;
  color: #F05454;
  position: relative;
  z-index: 8;
}

.about-feature-wrapper-1 .about-feature-box .about-icon i {
  margin-top: 20px;
  margin-left: 20px;
  display: inline-block;
}

.about-feature-wrapper-1 .about-feature-box .about-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  width: 58px;
  height: 58px;
  background-color: #FFEBEB;
  z-index: -1;
}

.about-feature-wrapper-1 .about-feature-box .about-icon.style-2 {
  color: #EAC02B;
}

.about-feature-wrapper-1 .about-feature-box .about-icon.style-2::before {
  background-color: #FFF5D2;
}

.about-feature-wrapper-1 .about-feature-box .about-icon.style-3 {
  color: #49DCA2;
}

.about-feature-wrapper-1 .about-feature-box .about-icon.style-3::before {
  background-color: #DAF8EC;
}

.about-company-section {
  background-color: #1C1C1C;
  position: relative;
  z-index: 9;
}

.about-company-section::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 70px;
  background-color: var(--white);
}

@media (max-width: 1399px) {
  .about-company-section::before {
    display: none;
  }
}

.about-company-section .dot-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.about-company-section .vector-shape {
  position: absolute;
  right: 10%;
  top: 20%;
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-company-wrapper {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .about-company-wrapper {
    padding: 80px 0;
  }
}

.about-company-wrapper .about-company-image {
  direction: rtl;
  margin-right: 30px;
  position: relative;
}

@media (max-width: 1399px) {
  .about-company-wrapper .about-company-image {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .about-company-wrapper .about-company-image img {
    width: 100%;
    height: 100%;
  }
}

.about-company-wrapper .about-company-image .box-items {
  border-radius: 6px;
  background: #FF792E;
  font-size: 32px;
  font-weight: 600;
  padding: 70px 50px;
  text-align: left;
  line-height: 138%;
  color: var(--white);
  max-width: 420px;
  position: absolute;
  bottom: 0;
  right: -70px;
  z-index: 9;
}

@media (max-width: 1399px) {
  .about-company-wrapper .about-company-image .box-items {
    font-size: 20px;
    padding: 29px 40px;
    max-width: 372px;
    bottom: 0;
    right: 0px;
  }
}

.about-company-wrapper .about-company-content {
  margin-left: 80px;
}

@media (max-width: 1199px) {
  .about-company-wrapper .about-company-content {
    margin-left: 0;
  }
}

.about-company-wrapper .about-company-content .about-text {
  color: rgba(255, 255, 255, 0.7490196078);
}

.about-company-wrapper .about-company-content p {
  color: rgba(255, 255, 255, 0.7490196078);
  margin-top: 20px;
}

.about-company-wrapper .about-company-content .list-items {
  margin-top: 30px;
}

.about-company-wrapper .about-company-content .list-items li {
  color: rgba(255, 255, 255, 0.7490196078);
}

.about-company-wrapper .about-company-content .list-items li i {
  color: #49DCA2;
  font-size: 26px;
}

.about-company-wrapper .about-company-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-left-image {
    max-width: 350px;
    margin: 0 auto;
  }
}

.about-wrapper-3 .about-left-image img {
  width: 100%;
  height: 100%;
}

.about-wrapper-3 .about-content-3 {
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content-3 {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content-3 .section-title {
    text-align: center;
  }
}

.about-wrapper-3 .about-content-3 .about-text-3 {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content-3 .about-text-3 {
    text-align: center;
  }
}

.about-wrapper-3 .about-content-3 .about-btn {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content-3 .about-btn {
    text-align: center;
  }
}

.about-wrapper-3 .about-content-3 .about-btn .theme-btn {
  border-radius: 100px;
}

.about-wrapper-3 .about-content-3 .about-btn .theme-btn::before,
.about-wrapper-3 .about-content-3 .about-btn .theme-btn::after {
  border-radius: 100px;
}

.about-wrapper-3 .about-content-3 .about-btn .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.about-wrapper-3 .about-content-3 .about-btn .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.about-wrapper-3 .about-content-3 .about-btn .theme-btn i {
  border-radius: 100px;
}

.about-wrapper-3 .about-content-3 .list-items {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-content-3 .list-items {
    text-align: center;
  }
}

.about-wrapper-3 .about-content-3 .list-items li i {
  color: #49DCA2;
  font-size: 26px;
}

.about-wrapper-3 .about-content-3 .list-items li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper-3 .about-right-image {
  position: relative;
}

@media (max-width: 991px) {
  .about-wrapper-3 .about-right-image {
    max-width: 280px;
    margin: 0 auto;
  }
}

.about-wrapper-3 .about-right-image img {
  width: 100%;
  height: 100%;
}

.about-wrapper-3 .about-right-image .about-right-image-2 {
  position: absolute;
  bottom: 50px;
  left: -90px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-right-image .about-right-image-2 {
    left: -59px;
  }
}

.about-wrapper-4 {
  margin-bottom: -25px;
  margin-top: -30px;
}

.about-wrapper-4 .about-images {
  direction: rtl;
}

@media (max-width: 1199px) {
  .about-wrapper-4 .about-images img {
    width: 100%;
    height: 100%;
  }
}

.about-wrapper-4 .about-contents {
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper-4 .about-contents {
    margin-left: 0;
    text-align: center;
  }
}

.about-wrapper-4 .about-contents .list-box {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper-4 .about-contents .list-box {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
}

.about-wrapper-4 .about-contents .list-box ul li {
  color: var(--white);
}

.about-wrapper-4 .about-contents .list-box ul li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper-4 .about-contents .list-box ul li i {
  color: #49DCA2;
  margin-right: 5px;
}

.about-wrapper-4 .about-contents .progress-wrap {
  margin-top: 20px;
}

.about-wrapper-4 .about-contents .progress-wrap .pro-items {
  width: 100%;
}

.about-wrapper-4 .about-contents .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}

.about-wrapper-4 .about-contents .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.about-wrapper-4 .about-contents .progress-wrap .pro-items .pro-head .title {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.about-wrapper-4 .about-contents .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--white);
}

.about-wrapper-4 .about-contents .progress-wrap .pro-items .progress {
  background: rgba(255, 255, 255, 0.13);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}

.about-wrapper-4 .about-contents .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-color);
  height: 6px;
  width: 0;
}

.about-wrapper-4 .about-contents .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.about-wrapper-4 .about-contents .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.about-wrapper-4 .about-contents .about-btn {
  margin-top: 50px;
}

.about-wrapper-4 .about-contents .about-btn .theme-btn {
  border-radius: 100px;
}

.about-wrapper-4 .about-contents .about-btn .theme-btn::before,
.about-wrapper-4 .about-contents .about-btn .theme-btn::after {
  border-radius: 100px;
}

.about-wrapper-4 .about-contents .about-btn .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.about-wrapper-4 .about-contents .about-btn .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.about-wrapper-4 .about-contents .about-btn .theme-btn i {
  border-radius: 100px;
}

.about-section-4 {
  position: relative;
  margin-top: 120px;
  margin-bottom: 95px;
}

@media (max-width: 1199px) {
  .about-section-4 {
    margin-top: 50px;
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .about-section-4 {
    margin-top: 30px;
    margin-bottom: 5px;
  }
}

.about-section-4 .about-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .about-section-4 .about-shape {
    display: none;
  }
}

.about-section-2 {
  background-color: #FFFCF2;
  position: relative;
  z-index: 9;
}

.about-section-2 .plane-shape {
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: -1;
}

.about-section-2 .vec-shape {
  position: absolute;
  top: 10%;
  right: 25%;
  z-index: -1;
}

.about-company-wrapper-3 {
  position: relative;
}

.about-company-wrapper-3 .dot-shape {
  position: absolute;
  top: -30%;
  left: 10%;
  z-index: -1;
}

.about-company-wrapper-3 .vector-shape {
  position: absolute;
  top: 60px;
  left: 31%;
}

.about-company-wrapper-3 .plane-shape {
  position: absolute;
  left: 10%;
  bottom: 0;
}

@media (max-width: 1199px) {
  .about-company-wrapper-3 .plane-shape {
    display: none;
  }
}

.about-company-wrapper-3 .about-company-image .about-image-1 {
  max-width: 340px;
}

@media (max-width: 575px) {
  .about-company-wrapper-3 .about-company-image .about-image-1 {
    max-width: 500px;
  }
}

.about-company-wrapper-3 .about-company-image .about-image-1 img {
  width: 100%;
  height: 100%;
  border-radius: 175.5px;
  object-fit: cover;
}

.about-company-wrapper-3 .about-company-image .about-image-2 {
  max-width: 285px;
  margin-top: 176px;
}

@media (max-width: 575px) {
  .about-company-wrapper-3 .about-company-image .about-image-2 {
    margin-top: 25px;
    max-width: 500px;
  }
}

.about-company-wrapper-3 .about-company-image .about-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 175.5px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .about-company-wrapper-3 .about-company-content .section-title {
    text-align: left;
  }
}

.about-company-wrapper-3 .about-company-content .about-text {
  margin-top: 25px;
}

.about-company-wrapper-3 .about-company-content .progress-wrap {
  margin-top: 20px;
}

.about-company-wrapper-3 .about-company-content .progress-wrap .pro-items {
  width: 100%;
}

.about-company-wrapper-3 .about-company-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}

.about-company-wrapper-3 .about-company-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.about-company-wrapper-3 .about-company-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
}

.about-company-wrapper-3 .about-company-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}

.about-company-wrapper-3 .about-company-content .progress-wrap .pro-items .progress {
  background: #F0EEFB;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}

.about-company-wrapper-3 .about-company-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-color);
  height: 6px;
  width: 0;
}

.about-company-wrapper-3 .about-company-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.about-company-wrapper-3 .about-company-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.about-company-wrapper-3 .about-company-content .company-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .about-company-wrapper-3 .about-company-content .company-btn {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .about-company-wrapper-3 .about-company-content .company-btn {
    margin-top: 30px;
  }
}

.about-company-wrapper-3 .about-company-content .company-btn .client-info {
  display: flex;
  gap: 20px;
}

@media (max-width: 1199px) {
  .about-company-wrapper-3 .about-company-content .company-btn .client-info {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper-5 .about-content {
  max-width: 600px;
}

.about-wrapper-5 .about-content .about-text {
  margin-top: 25px;
}

.about-wrapper-5 .about-content .about-list {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1199px) {
  .about-wrapper-5 .about-content .about-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper-5 .about-content .about-list ul li {
  padding: 18px 22px;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.04);
  font-size: 16px;
  font-weight: 400;
  color: #292929;
  line-height: 1;
}

.about-wrapper-5 .about-content .about-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper-5 .about-content .about-list ul li i {
  margin-right: 8px;
  color: #49DCA2;
}

.about-wrapper-5 .about-content .client-info {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

@media (max-width: 1199px) {
  .about-wrapper-5 .about-content .client-info {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-5 .about-content .client-info {
    justify-content: center;
  }
}

.about-wrapper-5 .about-content .choose-us-card {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .about-wrapper-5 .about-content .choose-us-card {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.about-wrapper-5 .about-content .choose-us-card .phone-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.about-wrapper-5 .about-content .choose-us-card .phone-box .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #FF792E;
  text-align: center;
  border-radius: 50%;
}

.about-wrapper-5 .about-content .choose-us-card .phone-box .icon i {
  color: var(--white);
  font-size: 22px;
}

.about-wrapper-5 .about-image {
  position: relative;
}

.about-wrapper-5 .about-image img {
  width: 100%;
  height: 100%;
}

.about-wrapper-5 .about-image .content {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 9;
  text-align: center;
  transform: translateY(-50%);
}

@media (max-width: 1199px) {
  .about-wrapper-5 .about-image .content {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.about-wrapper-5 .about-image .content .star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.about-wrapper-5 .about-image .content .star img {
  width: initial;
  height: initial;
}

.about-wrapper-5 .about-image .content h2 {
  font-size: 66px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

@media (max-width: 575px) {
  .about-wrapper-5 .about-image .content h2 {
    font-size: 48px;
  }
}

.about-wrapper-5 .about-image .content p {
  font-size: 15px;
  color: var(--white);
  margin-top: -8px;
}

.service-card-items-1 {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .service-card-items-1 {
    text-align: center;
  }
}

.service-card-items-1 .service-icon {
  color: #EAC02B;
  font-size: 54px;
  position: relative;
  z-index: 9;
  display: inline-block;
}

.service-card-items-1 .service-icon i {
  margin-top: 20px;
  margin-left: 20px;
  display: inline-block;
}

.service-card-items-1 .service-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  width: 58px;
  height: 58px;
  background-color: #FFFAE8;
  z-index: -1;
}

.service-card-items-1 .service-icon.color-2 {
  color: #F05454;
}

.service-card-items-1 .service-icon.color-2::before {
  background-color: #FFEBEB;
}

.service-card-items-1 .service-icon.color-3 {
  color: #49DCA2;
}

.service-card-items-1 .service-icon.color-3::before {
  background-color: #DAF8EC;
}

.service-card-items-1 .service-icon.color-4 {
  color: #6C57D2;
}

.service-card-items-1 .service-icon.color-4::before {
  background-color: #F0EEFB;
}

.service-card-items-1 .service-content {
  margin-top: 20px;
}

.service-card-items-1 .service-content h3 {
  margin-bottom: 5px;
}

.service-card-items-1 .service-content h3 a:hover {
  color: var(--theme-color);
}

.service-card-items-1 .service-content p {
  max-width: 270px;
}

@media (max-width: 767px) {
  .service-card-items-1 .service-content p {
    margin: 0 auto;
  }
}

.service-card-items {
  background: #FFFAE8;
  padding: 65px 35px;
  text-align: center;
  margin-top: 30px;
}

.service-card-items.bg-1 {
  background: #FFEBEB;
}

.service-card-items.bg-2 {
  background: #E3DAF8;
}

.service-card-items.bg-3 {
  background: #F0EEFB;
  border-radius: 0px 6px 6px 0px;
}

.service-card-items.border-radius-style {
  border-radius: 6px 0px 0px 6px;
}

.service-card-items .service-icon {
  min-height: 120px;
}

.service-card-items .service-content {
  margin-top: 15px;
}

.service-card-items .service-content h3 a:hover {
  color: var(--theme-color);
}

.service-card-items .service-content p {
  font-size: 15px;
  margin-top: 5px;
}

.service-card-items.style-2 {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0E1445;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
}

.service-card-items.style-2 .service-content h3 a {
  color: var(--white);
}

.service-card-items.style-2 .service-content p {
  margin: 0 auto;
  margin-top: 20px;
}

.service-card-items.style-2.style-margin-1 {
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .service-card-items.style-2.style-margin-1 {
    margin-top: 30px;
  }
}

.service-card-items.style-2.style-margin-2 {
  margin-top: 70px;
}

@media (max-width: 1199px) {
  .service-card-items.style-2.style-margin-2 {
    margin-top: 30px;
  }
}

.service-card-items.style-2:hover {
  background: #6C57D2;
}

.service-card-items.style-2:hover .service-content .link-btn {
  color: var(--white);
}

.service-section-solve {
  position: relative;
}

.service-section-solve .right-shape-2 {
  position: absolute;
  right: 0;
  top: -250px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .service-section-solve .right-shape-2 {
    display: none;
  }
}

.service-icon-box-items-2 {
  margin-top: 30px;
  text-align: center;
}

.service-icon-box-items-2 .icon {
  font-size: 45px;
  position: relative;
  z-index: 9;
  color: var(--white);
}

.service-icon-box-items-2 .icon .icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.service-icon-box-items-2 .content {
  margin-top: 40px;
}

.service-icon-box-items-2 .content h3 {
  margin-bottom: 10px;
}

.service-icon-box-items-2 .content h3 a:hover {
  color: var(--theme-color);
}

@media (max-width: 767px) {
  .service-wrapper-3 .service-box-items-3 .service-right-box {
    text-align: center;
  }
}

.service-wrapper-3 .service-box-items-3 .service-right-box .icon {
  width: 85px;
  height: 85px;
  line-height: 90px;
  background-color: #F05454;
  border-radius: 50%;
  text-align: center;
  font-size: 45px;
  color: var(--white);
}

@media (max-width: 767px) {
  .service-wrapper-3 .service-box-items-3 .service-right-box .icon {
    margin: 0 auto;
  }
}

.service-wrapper-3 .service-box-items-3 .service-right-box .icon.style-2 {
  background-color: #6C57D2;
}

.service-wrapper-3 .service-box-items-3 .service-right-box .icon.style-3 {
  background-color: #EAC02B;
}

.service-wrapper-3 .service-box-items-3 .service-right-box .icon.style-4 {
  background-color: #49DCA2;
}

.service-wrapper-3 .service-box-items-3 .service-right-box .content {
  margin-top: 20px;
}

.service-wrapper-3 .service-box-items-3 .service-right-box .content h3 a:hover {
  color: var(--theme-color);
}

.service-section-3 {
  position: relative;
}

.service-section-3 .right-shape {
  position: absolute;
  right: 50px;
  top: 100px;
}

@media (max-width: 1399px) {
  .service-section-3 .right-shape {
    display: none;
  }
}

.service-section-3 .left-shape {
  position: absolute;
  left: 360px;
  bottom: 120px;
}

@media (max-width: 1399px) {
  .service-section-3 .left-shape {
    display: none;
  }
}

.service-details-wrapper .service-details-content .service-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.service-details-wrapper .service-details-content h2 {
  margin-top: 15px;
}

.service-details-wrapper .service-details-content .icon-box-items {
  display: flex;
  margin-top: 40px;
  gap: 20px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .service-details-content .icon-box-items {
    flex-wrap: wrap;
  }
}

.service-details-wrapper .service-details-content .icon-box-items .icon-box i {
  font-size: 44px;
  color: #49DCA2;
}

.service-details-wrapper .service-details-content .icon-box-items .icon-contnet h3 {
  margin-bottom: 10px;
}

.service-details-wrapper .service-details-content .how-title {
  font-size: 32px;
  font-weight: 600;
  margin-top: 50px;
}

.service-details-wrapper .service-details-content .work-box-items {
  border-radius: 10px;
  background: #FFEBEB;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .service-details-content .work-box-items {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
  }
}

.service-details-wrapper .service-details-content .work-box-items .work-number {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 53, 102, 0.35);
  font-size: 72px;
}

.service-details-wrapper .service-details-content .work-box-items.style-2 {
  background: #DAF8EC;
  margin-left: 0;
  margin-right: 40px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .service-details-content .work-box-items.style-2 {
    margin-right: 0;
  }
}

.service-details-wrapper .service-details-content .work-box-items.style-3 {
  background: #F0EEFB;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget {
  padding: 40px 35px;
  border-radius: 6px;
  border: 1px solid #E4E4E4;
  margin-bottom: 30px;
  margin-top: 26px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title {
  margin-bottom: 25px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h4 {
  font-size: 26px;
  font-weight: 600;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget ul li a {
  font-size: 16px;
  font-weight: 700;
  background: var(--white);
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget ul li a:hover {
  color: var(--theme-color);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget ul li a .icon {
  transition: all 0.4s ease-in-out;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget ul li:not(:last-child) {
  margin-bottom: 10px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .contact-info li {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .contact-info li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .contact-info li .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #F4F6FF;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget .contact-info li .icon i {
  color: var(--theme-color);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image {
  position: relative;
  z-index: 9;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(7, 23, 20, 0) 0%, rgba(7, 23, 20, 0.73) 76.07%);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image img {
  width: 100%;
  height: 100%;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content p {
  color: var(--white);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn {
  border-radius: 55px;
  background: #FF792E;
  margin-top: 20px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::after,
.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::before {
  border-radius: 100px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn i {
  border-radius: 50%;
  color: var(--theme-color-2);
  background-color: var(--white);
}

.service-section-2 {
  position: relative;
}

.service-section-2 .left-shape {
  position: absolute;
  left: 30%;
  top: 25%;
  z-index: -1;
}

.service-section-2 .right-shape {
  position: absolute;
  right: 20%;
  top: 20%;
}

.project-box-items-2 {
  margin-top: 30px;
}

.project-box-items-2 .project-img img {
  width: 100%;
  height: 100%;
  border-radius: 34px;
}

.project-box-items-2 .project-img.style-2 {
  position: relative;
}

.project-box-items-2 .project-img.style-2 img {
  border-radius: 12px;
}

.project-box-items-2 .project-img.style-2 .post-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-block;
  border-radius: 4px;
  background: #6C57D2;
  line-height: 1;
  padding: 12px 21px;
  color: var(--white);
}

.project-box-items-2 .project-img.style-2 .post-cat:hover {
  background-color: var(--header);
}

.project-box-items-2 .project-content {
  margin-top: 20px;
}

.project-box-items-2 .project-content p {
  color: #6C57D2;
  font-size: 14px;
  font-weight: 600;
}

.project-box-items-2 .project-content h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 138%;
}

@media (max-width: 1199px) {
  .project-box-items-2 .project-content h3 {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .project-box-items-2 .project-content h3 {
    font-size: 23px;
  }
}

.project-box-items-2 .project-content h3 a:hover {
  color: var(--theme-color);
}

.project-box-items-2.style-2 {
  margin-top: 80px;
}

@media (max-width: 1199px) {
  .project-box-items-2.style-2 {
    margin-top: 30px;
  }
}

.project-wrapper-3 {
  margin-left: -250px;
  margin-right: -210px;
}

@media (max-width: 1199px) {
  .project-wrapper-3 {
    margin-left: 0;
    margin-right: 0;
  }
}

.project-wrapper-3 .project-items-3 {
  margin-top: 30px;
  border-radius: 34px;
  background: #FFF;
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.03);
}

.project-wrapper-3 .project-items-3 .project-image {
  padding: 15px;
  padding-bottom: 0;
}

.project-wrapper-3 .project-items-3 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 34px;
}

.project-wrapper-3 .project-items-3 .project-content {
  padding: 25px;
  margin-top: 0;
}

.project-wrapper-3 .project-items-3 .project-content h6 {
  color: #6C57D2;
}

.project-wrapper-3 .project-items-3 .project-content h3 {
  font-size: 32px;
  font-weight: 600;
}

.project-wrapper-3 .project-items-3 .project-content h3:hover a {
  color: var(--theme-color);
}

.project-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100% !important;
}

@media (max-width: 991px) {
  .project-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }
}

.project-wrapper .project-image-items {
  margin-top: 30px;
  width: 160px;
  height: 550px;
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

@media (max-width: 991px) {
  .project-wrapper .project-image-items {
    margin-top: 0;
  }
}

.project-wrapper .project-image-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.project-wrapper .project-image-items .content {
  position: absolute;
  left: 28%;
  bottom: 40px;
  transform: rotate(180deg) translateX(-50%);
  z-index: 9;
  writing-mode: vertical-rl;
}

.project-wrapper .project-image-items .content h4 {
  font-size: 20px;
}

.project-wrapper .project-image-items .content h4 a {
  color: var(--white);
}

.project-wrapper .project-image-items .content h4 a:hover {
  color: var(--theme-color);
}

.project-wrapper .project-image-items .content p {
  display: none;
  color: #fff;
  margin-top: 8px;
}

.project-wrapper .project-image-items .icon {
  width: 74px;
  height: 74px;
  line-height: 74px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme-color-2);
  color: var(--white);
  position: absolute;
  top: 25px;
  right: 25px;
  opacity: 0;
  visibility: hidden;
}

.project-wrapper .project-image-items .icon i {
  transform: rotate(-45deg);
}

.project-wrapper .project-image-items .icon:hover {
  background-color: var(--header);
}

@media (max-width: 991px) {
  .project-wrapper .project-image-items {
    width: 445px !important;
  }

  .project-wrapper .project-image-items .content {
    left: 30px;
    right: 20px;
    bottom: 30px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    writing-mode: initial;
  }

  .project-wrapper .project-image-items .content p {
    display: block;
  }

  .project-wrapper .project-image-items .icon {
    opacity: 1;
    visibility: visible;
  }
}

.project-wrapper .project-image-items.active {
  width: 445px !important;
}

.project-wrapper .project-image-items.active .content {
  left: 30px;
  right: 20px;
  bottom: 30px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  writing-mode: initial;
}

.project-wrapper .project-image-items.active .content p {
  display: block;
}

.project-wrapper .project-image-items.active .icon {
  opacity: 1;
  visibility: visible;
}

.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  margin-bottom: -20px;
  margin-top: -20px;
}

.marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

.marquee .text {
  font-size: 72px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0;
  position: relative;
  color: var(--header);
  font-family: "Outfit", sans-serif;
  position: relative;
  padding-left: 40px;
}

.marquee .text::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #F05454;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee .marquee-group {
    animation-play-state: play;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.project-secton-4 {
  background: #F4F6FF;
}

.project-wrapper-4 .project-box-5 {
  margin-top: 30px;
  border-radius: 34px;
  background: #FF792E;
  padding: 50px;
  padding-bottom: 0;
  padding-right: 0;
}

.project-wrapper-4 .project-box-5 .content h3 a {
  color: var(--white);
}

.project-wrapper-4 .project-box-5 .content p {
  color: var(--white);
  margin-top: 10px;
  max-width: 630px;
}

.project-wrapper-4 .project-box-5 .content .link-btn {
  color: var(--white);
}

.project-wrapper-4 .project-box-5 .image {
  margin-top: 45px;
}

.project-wrapper-4 .project-box-5 .image img {
  width: 100%;
  height: 100%;
  border-radius: 21px;
}

.project-wrapper-4 .project-box-5.style-2 {
  background-color: #6C57D2;
}

.project-wrapper-4 .project-box-5.style-2 .content {
  max-width: 330px;
}

.project-wrapper-4 .project-box-5.style-3 {
  background-color: #49DCA2;
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
}

@media (max-width: 1199px) {
  .project-wrapper-4 .project-box-5.style-3 {
    display: block;
  }

  .project-wrapper-4 .project-box-5.style-3 .image {
    margin-top: 30px !important;
  }
}

.project-wrapper-4 .project-box-5.style-3 .image {
  max-width: 691px;
  margin-top: 0;
}

.project-wrapper-4 .project-box-5.style-3 .content {
  max-width: 390px;
}

.project-wrapper-4 .project-box-5.style-1 {
  height: calc(100% - 30px);
  position: relative;
  padding-right: 30px;
}

.project-wrapper-4 .project-box-5.style-1 .image {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 991px) {
  .project-wrapper-4 .project-box-5.style-1 .image {
    position: static;
  }
}

.project-details-wrapper .project-details-content .project-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.project-details-wrapper .project-details-content h2 {
  margin-top: 15px;
}

.project-details-wrapper .project-details-content .project-details-image-2 {
  margin-top: 30px;
}

.project-details-wrapper .project-details-content .project-details-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.project-details-wrapper .project-details-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 20px;
}

.project-details-wrapper .project-details-content .icon-box-items {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-details-content .icon-box-items {
    flex-wrap: wrap;
  }
}

.project-details-wrapper .project-details-content .icon-box-items .icon-box {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.04);
  padding: 15px 20px;
  display: inline-flex;
}

.project-details-wrapper .project-details-content .icon-box-items .icon-box i {
  color: #49DCA2;
}

.project-details-wrapper .project-details-content .icon-box-items .icon-box p {
  color: #292929;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget {
  padding: 40px 35px;
  border-radius: 6px;
  border: 1px solid #E4E4E4;
  margin-bottom: 30px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title {
  margin-bottom: 25px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title h4 {
  font-size: 26px;
  font-weight: 600;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li span {
  color: var(--header);
  font-size: 16px;
  font-weight: 700;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li:not(:last-child) {
  margin-bottom: 30px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .contact-info li {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .contact-info li .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #F4F6FF;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .contact-info li .icon i {
  color: var(--theme-color);
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image {
  position: relative;
  z-index: 9;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(7, 23, 20, 0) 0%, rgba(7, 23, 20, 0.73) 76.07%);
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image img {
  width: 100%;
  height: 100%;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content p {
  color: var(--white);
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn {
  border-radius: 55px;
  background: #FF792E;
  margin-top: 20px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn::after,
.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn::before {
  border-radius: 100px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn i {
  border-radius: 50%;
  color: var(--theme-color-2);
  background-color: var(--white);
}

.slider-button {
  border-top: 1px solid #E4E4E4;
  border-bottom: 1px solid #E4E4E4;
  margin-top: 65px;
  padding: 30px 0;
}

.slider-button span {
  font-weight: 500;
}

.slider-button .cmn-next,
.slider-button .cmn-prev {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s;
  border: 1px solid #E4E4E4;
}

.slider-button .cmn-next i,
.slider-button .cmn-prev i {
  color: var(--theme-color);
  font-size: 24px;
  transition: all 0.4s;
}

.slider-button .cmn-next:hover,
.slider-button .cmn-prev:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.slider-button .cmn-next:hover i,
.slider-button .cmn-prev:hover i {
  color: var(--white);
}

@media (max-width: 1399px) {

  .slider-button .cmn-next,
  .slider-button .cmn-prev {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }

  .slider-button .cmn-next i,
  .slider-button .cmn-prev i {
    font-size: 17px;
  }
}

@media (max-width: 1399px) {

  .slider-button .cmn-next,
  .slider-button .cmn-prev {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }

  .slider-button .cmn-next i,
  .slider-button .cmn-prev i {
    font-size: 16px;
  }
}

.slider-button .previus-text {
  font-size: 22px;
  color: var(--header);
}

@media (max-width: 575px) {
  .slider-button .previus-text {
    font-size: 18px;
  }

  .slider-button .project-storke {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .slider-button .previus-text {
    font-size: 16px;
  }

  .slider-button .project-storke {
    font-size: 24px;
  }
}

@media (max-width: 470px) {
  .slider-button .previus-text {
    font-size: 14px;
  }

  .slider-button .project-storke {
    display: none;
  }
}

.project-section-41 {
  position: relative;
  background-color: #0E1445;
}

.project-section-41 .left-shape {
  position: absolute;
  top: 150px;
  left: 0;
}

@media (max-width: 1399px) {
  .project-section-41 .left-shape {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme-color);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background: var(--theme-color);
  opacity: 1;
  border-radius: 7px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  content: "";
}

.array-button {
  display: flex;
  align-items: center;
  gap: 18px;
}

.array-button .array-prev,
.array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.array-button .array-prev:hover,
.array-button .array-next:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.array-button.style-2 .array-prev {
  border: 1px solid var(--border);
}

.array-button.style-2 .array-next {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
}

.array-button.style-2 .array-next:hover {
  background-color: var(--header);
}

@media (max-width: 575px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  background-color: navy;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.box-shadow {
  box-shadow: var(---box-shadow);
}

.custom-container {
  max-width: 1560px;
  margin: 0 auto;
}

.custom-container-33 {
  max-width: 1319px;
  margin: 0 auto;
}

.custom-container-2 {
  max-width: 1568px;
  margin: 0 auto;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.footer-info-container {
  max-width: 1436px;
}

@media (max-width: 991px) {
  .lg-center {
    justify-content: center;
    text-align: center;
  }
}

.swiper-dot4 .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background-color: rgb(129, 129, 129);
  opacity: 1;
  border-radius: 100%;
  position: relative;
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 30px;
  border-radius: 30px;
}

.custom-container-3 {
  max-width: 1768px;
  margin: 0 auto;
}

.text-color {
  color: var(--text) !important;
}

.sec-bg-4 {
  background-color: #0E1445;
}

.swiper-dot3 .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  transition: 0.6s;
  background-color: transparent;
  border: 1px solid var(--theme-color-2);
  border-radius: 14px;
  opacity: 1;
  position: relative;
}

.swiper-dot3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color-2);
  border: 1px solid var(--theme-color-2);
  transition: 0.6s;
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 14px;
}

.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-color-2);
  width: 22px;
  height: 22px;
  border-radius: 22px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.team-items-2 {
  margin-top: 30px;
}

.team-items-2 .team-image {
  position: relative;
}

.team-items-2 .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.team-items-2 .team-image .share-icon {
  position: absolute;
  right: 30px;
  bottom: -22px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  color: var(--white);
  background: var(--theme-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 3;
  border-radius: 5px;
  cursor: pointer;
}

.team-items-2 .team-image .share-icon:hover {
  background: var(--header);
}

.team-items-2 .team-image .social-links {
  position: absolute;
  right: 30px;
  bottom: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: transparent;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.team-items-2 .team-image .social-links a {
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
  font-size: 16px;
  border-radius: 5px;
  line-height: 50px;
  text-align: center;
  color: var(--white);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--theme-color);
}

.team-items-2 .team-image .social-links a:hover {
  background: var(--header);
}

.team-items-2 .team-content {
  margin-top: 15px;
}

.team-items-2 .team-content p {
  font-size: 15px;
  font-weight: 500;
  color: #FF792E;
  font-family: "DM Sans";
}

.team-items-2 .team-content h3 {
  font-size: 24px;
  font-weight: 600;
}

.team-items-2 .team-content h3 a:hover {
  color: var(--theme-color-2);
}

.team-items-2:hover .team-image .social-links {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.team-items-4 {
  text-align: center;
  margin-top: 30px;
}

.team-items-4 .team-content {
  margin-top: 15px;
}

.team-items-4 .team-content span {
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color-2);
}

.team-items-4 .team-content h3 {
  font-size: 24px;
}

.team-items-4 .team-content h3 a {
  color: var(--white);
}

.team-items-4 .team-content h3 a:hover {
  color: var(--theme-color-2);
}

.team-items-4 .team-image img {
  width: 100%;
  height: 100%;
}

.team-items-4 .social-icon {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
}

.team-items-4 .social-icon a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 22px;
}

.team-items-4 .social-icon a:hover {
  color: var(--theme-color-2);
}

.team-details-wrapper .team-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.team-details-wrapper .details-content {
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .details-content {
    margin-left: 0;
  }
}

.team-details-wrapper .details-content span {
  color: var(--theme-color-2);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.team-details-wrapper .details-content h2 {
  font-size: 72px;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .team-details-wrapper .details-content h2 {
    font-size: 54px;
  }
}

@media (max-width: 575px) {
  .team-details-wrapper .details-content h2 {
    font-size: 44px;
  }
}

.team-details-wrapper .details-content .progress-wrap {
  margin-top: 20px;
}

.team-details-wrapper .details-content .progress-wrap .pro-items {
  width: 100%;
}

.team-details-wrapper .details-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}

.team-details-wrapper .details-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.team-details-wrapper .details-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
}

.team-details-wrapper .details-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
  font-weight: 600;
}

.team-details-wrapper .details-content .progress-wrap .pro-items .progress {
  border-radius: 20px;
  background: rgba(255, 121, 46, 0.2);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
}

.team-details-wrapper .details-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-color-2);
  height: 8px;
  width: 0;
}

.team-details-wrapper .details-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.team-details-wrapper .details-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.team-details-wrapper .details-content .contact-icon {
  margin-top: 45px;
}

.team-details-wrapper .details-content .contact-icon li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-details-wrapper .details-content .contact-icon li:not(:last-child) {
  margin-bottom: 20px;
}

.team-details-wrapper .details-content .contact-icon li .icon {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: var(--white);
}

.team-details-wrapper .details-content .contact-icon li .content span {
  font-weight: 500;
  color: var(--text);
  display: inline-block;
  margin-bottom: 5px;
}

.team-details-wrapper .details-content .contact-icon li .content h3 {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  line-height: 1;
}

.team-details-wrapper .details-content .contact-icon li .content h3 a {
  color: var(--header);
}

.team-details-wrapper .details-content .social-icon {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 50px;
}

.team-details-wrapper .details-content .social-icon a {
  color: var(--header);
  font-size: 20px;
}

.team-details-wrapper .details-content .social-icon a:hover {
  color: var(--theme-color-2);
}

.team-details-wrapper .team-about {
  margin-top: 80px;
}

.team-details-wrapper .team-about h3 {
  border-bottom: 1px dashed rgba(0, 53, 102, 0.25);
  padding-bottom: 20px;
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 1;
}

.faq-items .accordion-item {
  border: 0;
  background-color: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(0, 53, 102, 0.12);
}

.faq-items .accordion-item .accordion-header {
  border: none;
}

.faq-items .accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 500;
  color: var(--header);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--white);
  padding: 22px 22px 0;
  text-transform: capitalize;
}

.faq-items .accordion-item .accordion-header .accordion-button::after {
  content: "\f078";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
  top: 18px;
  position: absolute;
  right: 22px;
}

.faq-items .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f077";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  transform: rotate(0);
  color: var(--theme-color);
}

.faq-items .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: transparent;
  padding: 25px 22px;
  color: var(--header);
}

.faq-items .accordion-item .accordion-collapse .accordion-body {
  padding-left: 30px;
  padding-top: 15px;
  color: #504E4E;
  background: var(--white);
}

.faq-items.style-2 .accordion-item {
  border-radius: 4px;
  border: 1px solid rgba(0, 53, 102, 0.12);
  margin-top: 30px;
}

.faq-items.style-2 .accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 600;
  background-color: var(--white);
  padding: 19px 30px;
}

.faq-items.style-2 .accordion-item .accordion-body {
  background-color: var(--white) !important;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 53, 102, 0.12);
  font-size: 16px;
  font-weight: 500;
  color: #455151;
}

.faq-wrapper {
  position: relative;
}

.faq-wrapper .faq-content .faq-image {
  max-width: 400px;
  position: absolute;
  bottom: 0;
  left: 50px;
}

@media (max-width: 991px) {
  .faq-wrapper .faq-content .faq-image {
    display: none;
  }
}

.faq-wrapper .faq-content .faq-image img {
  width: 100%;
  height: 100%;
}

.faq-section {
  position: relative;
}

.faq-wrapper-3 .faq-image {
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .faq-wrapper-3 .faq-image {
    margin-left: 0;
  }
}

.faq-wrapper-3 .faq-image.style-2 {
  margin-left: 0;
  margin-right: 40px;
}

@media (max-width: 1199px) {
  .faq-wrapper-3 .faq-image.style-2 {
    margin-right: 0;
  }
}

.faq-wrapper-3 .faq-image img {
  width: 100%;
  height: 100%;
}

.cta-support-wrapper {
  padding: 50px;
  padding-bottom: 0;
  border-radius: 30px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .cta-support-wrapper {
    padding: 60px;
  }
}

@media (max-width: 1199px) {
  .cta-support-wrapper {
    padding: 40px;
  }
}

.cta-support-wrapper .cta-support-img img {
  width: 100%;
  height: 100%;
}

.cta-support-wrapper .cta-support-content .cta-support-text {
  color: var(--white);
  margin-top: 30px;
}

.cta-support-wrapper .cta-support-content .cta-support-box {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .cta-support-wrapper .cta-support-content .cta-support-box {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.cta-support-wrapper .cta-support-content .cta-support-box .theme-btn {
  background-color: var(--white);
  color: #6C57D2;
}

.cta-support-wrapper .cta-support-content .cta-support-box .theme-btn i {
  background-color: #6C57D2;
  color: var(--white);
}

.cta-support-wrapper .cta-support-content .cta-support-box .phone-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cta-support-wrapper .cta-support-content .cta-support-box .phone-box .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #FF792E;
  text-align: center;
  border-radius: 50%;
}

.cta-support-wrapper .cta-support-content .cta-support-box .phone-box .content p {
  color: var(--white);
}

.cta-support-wrapper .cta-support-content .cta-support-box .phone-box .content h5 {
  color: var(--white);
}

@media (max-width: 991px) {
  .cta-wrapper-2 {
    text-align: center;
  }
}

.cta-wrapper-2 .cta-content .cta-card {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .cta-wrapper-2 .cta-content .cta-card {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.cta-wrapper-2 .cta-content .cta-card .phone-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cta-wrapper-2 .cta-content .cta-card .phone-box .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--white);
  text-align: center;
  border-radius: 50%;
}

.cta-wrapper-2 .cta-content .cta-card .phone-box .icon i {
  color: #FF792E;
  font-size: 22px;
}

.cta-wrapper-2 .cta-right-image img {
  width: 100%;
  height: 100%;
}

.button-items {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .button-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.button-items .theme-btn {
  border-radius: 100px;
}

.button-items .theme-btn.style-bg {
  background-color: var(--white);
  color: var(--theme-color-2);
}

.button-items .theme-btn.style-bg i {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.button-items .theme-btn::before,
.button-items .theme-btn::after {
  border-radius: 100px;
}

.button-items .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.button-items .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.button-items .theme-btn i {
  border-radius: 100px;
}

.cta-value-wrapper-3 {
  border-radius: 34px;
  padding-left: 50px;
}

@media (max-width: 1199px) {
  .cta-value-wrapper-3 {
    padding: 45px 30px;
    text-align: center;
  }
}

.cta-value-wrapper-3 .cta-value-content {
  max-width: 550px;
}

@media (max-width: 1199px) {
  .cta-value-wrapper-3 .cta-value-content {
    margin: 0 auto;
  }
}

.cta-value-wrapper-3 .cta-value-content .text {
  color: var(--white);
  margin-top: 30px;
}

.cta-value-wrapper-3 .cta-value-content .theme-btn {
  border-radius: 100px;
  background-color: var(--theme-color-2);
  margin-top: 50px;
}

.cta-value-wrapper-3 .cta-value-content .theme-btn::before,
.cta-value-wrapper-3 .cta-value-content .theme-btn::after {
  border-radius: 100px;
}

.cta-value-wrapper-3 .cta-value-content .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cta-value-wrapper-3 .cta-value-content .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cta-value-wrapper-3 .cta-value-content .theme-btn i {
  border-radius: 100px;
}

.cta-call-wrapper {
  position: relative;
}

.cta-call-wrapper.style-padding {
  margin-bottom: 120px;
}

@media (max-width: 1199px) {
  .cta-call-wrapper.style-padding {
    margin-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .cta-call-wrapper.style-padding {
    margin-bottom: 80px;
  }
}

.cta-call-wrapper .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .cta-call-wrapper .cta-button {
    flex-wrap: wrap;
  }
}

.cta-call-wrapper .cta-button .theme-btn {
  border-radius: 55px;
  background: #FF792E;
}

.cta-call-wrapper .cta-button .theme-btn i {
  border-radius: 50%;
  color: var(--theme-color-2);
}

.cta-call-wrapper .cta-button .theme-btn::before,
.cta-call-wrapper .cta-button .theme-btn::after {
  border-radius: 55px;
}

.cta-call-wrapper .cta-button .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cta-call-wrapper .cta-button .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cta-call-wrapper .cta-button .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme-color-2);
}

.cta-call-wrapper .cta-button .pricing-text {
  color: var(--white);
  font-family: "DM Sans";
  font-size: 15px;
  display: inline-block;
  font-weight: 900;
}

.cta-call-wrapper .cta-button .pricing-text i {
  margin-left: 10px;
}

.cta-call-wrapper .carton-shape {
  position: absolute;
  bottom: -50px;
  right: 0;
}

@media (max-width: 1199px) {
  .cta-call-wrapper .carton-shape {
    display: none;
  }
}

.cta-call-wrapper .book-shape {
  position: absolute;
  top: 40%;
  left: 0;
}

@media (max-width: 1199px) {
  .cta-call-wrapper .book-shape {
    display: none;
  }
}

.cta-support-bg-style {
  position: relative;
  z-index: 9;
}

.cta-support-bg-style::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FFF9ED;
  z-index: -1;
  height: 50%;
}

.cta-section-4 {
  background-attachment: fixed;
}

.testimonial-box-items {
  margin-top: 30px;
}

.testimonial-box-items .testimonial-box {
  background-color: var(--white);
  border: 1px;
  border-color: rgba(0, 53, 102, 0.12);
  padding: 30px;
  border: 1px solid rgba(0, 53, 102, 0.12);
  border-radius: 14px;
}

.testimonial-box-items .testimonial-box .star-box-items {
  display: flex;
  justify-content: space-between;
}

.testimonial-box-items .testimonial-box .star-box-items .star {
  color: #F0BF11;
}

.testimonial-box-items .testimonial-box p {
  margin-top: 20px;
}

.testimonial-box-items .client-info {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.testimonial-box-items.style-2 .client-info {
  margin-top: 0;
  margin-bottom: 30px;
}

.testimonial-section-2 {
  position: relative;
  margin-top: 20px;
  background-attachment: fixed;
}

.testimonial-box-items-2 {
  border-radius: 0px 0px 5px 5px;
  background: #1C1C1C;
  padding: 70px;
  position: relative;
  border-top: 5px solid var(--theme-color-2);
  margin-top: -30px;
}

@media (max-width: 1199px) {
  .testimonial-box-items-2 {
    padding: 60px 50px;
  }
}

@media (max-width: 767px) {
  .testimonial-box-items-2 {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-box-items-2 {
    padding: 40px 30px;
  }
}

.testimonial-box-items-2 .star {
  color: #F0BF11;
  margin-top: 20px;
}

.testimonial-box-items-2 h4 {
  font-weight: 600;
  font-size: 28px;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .testimonial-box-items-2 h4 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .testimonial-box-items-2 h4 {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .testimonial-box-items-2 h4 {
    font-size: 20px;
  }
}

.testimonial-box-items-2 .client-info {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.testimonial-box-items-2 .google-logo {
  position: absolute;
  bottom: 85px;
  right: 70px;
}

.testimonial-box-card-items {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0E1445;
  padding: 45px 30px;
  border-top: 3px solid var(--theme-color-2);
  text-align: center;
  margin-top: 30px;
}

.testimonial-box-card-items .star {
  color: #F0BF11;
}

.testimonial-box-card-items h3 {
  font-size: 23px;
  color: var(--white);
  margin-top: 20px;
}

@media (max-width: 991px) {
  .testimonial-box-card-items h3 {
    font-size: 18px;
  }
}

.testimonial-box-5 {
  position: relative;
  text-align: center;
  margin-top: 30px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
}

.testimonial-box-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px;
  background: #f8f8f8;
  top: 60px;
  height: initial;
  z-index: -1;
}

.testimonial-box-5 .testimonial-content {
  max-width: 702px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-box-5 .testimonial-content h4 {
  font-size: 24px;
  font-weight: 500;
  color: #59647E;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .testimonial-box-5 .testimonial-content h4 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .testimonial-box-5 .testimonial-content h4 {
    font-size: 20px;
  }
}

.testimonial-box-5 .testimonial-content .clinet-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-section-5 {
  position: relative;
}

.testimonial-section-5 .swiper {
  padding: 10px;
}

.testimonial-section-5 .testimonial-shape-1 {
  position: absolute;
  top: 321px;
  left: 64px;
}

@media (max-width: 1399px) {
  .testimonial-section-5 .testimonial-shape-1 {
    display: none;
  }
}

.testimonial-section-5 .testimonial-shape-2 {
  position: absolute;
  top: 270px;
  right: 20px;
}

@media (max-width: 1399px) {
  .testimonial-section-5 .testimonial-shape-2 {
    display: none;
  }
}

.testimonial-section-5 .testimonial-shape-3 {
  position: absolute;
  bottom: 100px;
  left: 80px;
}

@media (max-width: 1399px) {
  .testimonial-section-5 .testimonial-shape-3 {
    display: none;
  }
}

.testimonial-section-5 .testimonial-shape-4 {
  position: absolute;
  bottom: 0px;
  right: 310px;
  z-index: 2;
}

@media (max-width: 1399px) {
  .testimonial-section-5 .testimonial-shape-4 {
    display: none;
  }
}

.testimonial-section-5 .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 65%;
  left: 20%;
  right: 20%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 9;
}

@media (max-width: 1600px) {
  .testimonial-section-5 .array-button {
    left: 10%;
    right: 12%;
  }
}

@media (max-width: 1399px) {
  .testimonial-section-5 .array-button {
    display: none;
  }
}

.testimonial-section-5 .array-button .array-prev {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.testimonial-section-5 .array-button .array-prev:hover {
  background-color: var(--header);
}

.testimonial-section-5 .array-button .array-next {
  background: var(--white);
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.05);
}

.testimonial-section-5 .array-button .array-next:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.testimonial-wrapper-6 {
  position: relative;
}

.testimonial-wrapper-6 .testimonial-left-items {
  border-radius: 34px;
  background: linear-gradient(90deg, #FE7111 0%, #FE9026 100%);
  padding: 50px 46px;
  text-align: center;
  margin-top: 30px;
}

.testimonial-wrapper-6 .testimonial-left-items .testimonial-content h2 {
  font-size: 72px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-wrapper-6 .testimonial-left-items .testimonial-content .star {
  color: var(--white);
  margin-top: 15px;
}

.testimonial-wrapper-6 .testimonial-left-items .testimonial-content h5 {
  color: var(--white);
  margin-top: 5px;
  margin-bottom: 20px;
}

.testimonial-wrapper-6 .testimonial-left-items .testimonial-content h4 {
  font-size: 24px;
  font-weight: 600;
  border-top: 1px dashed var(--white);
  padding-top: 20px;
  color: var(--white);
}

.testimonial-wrapper-6 .testimonial-left-items .client-info {
  margin-top: 30px;
}

.testimonial-wrapper-6 .testimonial-box-6 {
  margin-left: 60px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-6 .testimonial-box-6 {
    margin-left: 0;
  }
}

.testimonial-wrapper-6 .testimonial-box-6 .star-box-items {
  display: flex;
  justify-content: space-between;
}

.testimonial-wrapper-6 .testimonial-box-6 .star-box-items .star {
  color: var(--theme-color-2);
}

.testimonial-wrapper-6 .testimonial-box-6 p {
  font-size: 24px;
  font-weight: 500;
  margin-top: 40px;
  line-height: 167%;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-6 .testimonial-box-6 p {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper-6 .testimonial-box-6 p {
    font-size: 20px;
  }
}

.testimonial-wrapper-6 .testimonial-box-6 .client-info {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
}

.testimonial-wrapper-6 .swiper-dot3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
}

.testimonial-section-4 {
  position: relative;
  z-index: 9;
}

@media (max-width: 1899px) {
  .testimonial-section-4 {
    overflow: hidden;
  }
}

.testimonial-section-4 .bg-shape {
  position: absolute;
  top: 36%;
  left: 0;
  z-index: -1;
}

@media (max-width: 1899px) {
  .testimonial-section-4 .bg-shape {
    display: none;
  }
}

.brand-section .section-title {
  margin-bottom: 30px;
}

.brand-section .section-title p {
  color: var(--white);
}

.brand-section .brand-img {
  min-width: 180px;
  height: 68px;
  line-height: 68px;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  text-align: center;
}

.brand-section .brand-img.style-2 {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.brand-img {
  min-width: 180px;
  height: 61px;
  line-height: 61px;
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  text-align: center;
}

.news-box-items {
  margin-top: 30px;
}

.news-box-items .news-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.news-box-items .news-content {
  margin-top: 25px;
}

.news-box-items .news-content .post-date {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 1199px) {
  .news-box-items .news-content .post-date {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-box-items .news-content .post-date li {
  display: flex;
  gap: 7px;
  align-items: center;
}

.news-box-items .news-content .post-date li i {
  color: var(--theme-color-2);
}

.news-box-items .news-content h3 {
  margin-top: 15px;
}

.news-box-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-box-items .news-content h3 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color) 100%);
}

.news-box-items .news-content p {
  margin-top: 10px;
}

.news-box-items.style-2 {
  border-radius: 10px;
  background: var(--white);
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.03);
}

.news-box-items.style-2 .news-img {
  padding: 15px;
  padding-bottom: 0;
}

.news-box-items.style-2 .news-content {
  padding: 25px;
  margin-top: 0;
}

.news-box-items-2 {
  position: relative;
  margin-top: 30px;
}

.news-box-items-2 .news-img img {
  width: 100%;
  height: 100%;
  border-radius: 10PX;
}

.news-box-items-2 .news-content {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 10px 8px 34px 16px rgba(10, 3, 46, 0.03);
  padding: 30px;
  margin-left: 25px;
  margin-right: 25px;
  margin-top: -60px;
  position: relative;
  z-index: 9;
}

.news-box-items-2 .news-content .data-list {
  margin-bottom: 10px;
  display: block;
  text-align: center;
}

.news-box-items-2 .news-content .data-list i {
  color: #FF792E;
  margin-right: 7px;
}

.news-box-items-2 .news-content h3 {
  text-align: center;
}

.news-box-items-2 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-box-items-2 .news-content h3 a:hover {
  color: var(--theme-color-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-color-2) 0%, var(--theme-color-2) 100%);
}

.news-box-items-4 {
  margin-top: 30px;
  position: relative;
}

.news-box-items-4 .news-images {
  position: relative;
  z-index: 9;
}

.news-box-items-4 .news-images::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(28, 28, 28, 0.72);
  border-radius: 10px;
}

.news-box-items-4 .news-images img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.news-box-items-4 .news-images .post-date {
  color: var(--white);
  position: absolute;
  top: 25px;
  left: 20px;
}

.news-box-items-4 .news-images .post-date i {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background-color: var(--theme-color-2);
  border-radius: 50%;
  color: var(--white);
  margin-right: 5px;
}

.news-box-items-4 .news-images .news-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
}

.news-box-items-4 .news-images .news-content span {
  color: var(--white);
}

.news-box-items-4 .news-images .news-content span i {
  color: var(--theme-color-2);
  margin-right: 8px;
}

.news-box-items-4 .news-images .news-content span b {
  color: var(--theme-color-2);
}

.news-box-items-4 .news-images .news-content h3 {
  margin-top: 5px;
}

.news-box-items-4 .news-images .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.news-box-items-4 .news-images .news-content h3 a:hover {
  color: var(--theme-color-2);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-color-2) 0%, var(--theme-color-2) 100%);
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}

.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}

.blog-wrapper .single-blog-post.post-details .post-content h1,
.blog-wrapper .single-blog-post.post-details .post-content h2,
.blog-wrapper .single-blog-post.post-details .post-content h3,
.blog-wrapper .single-blog-post.post-details .post-content h4,
.blog-wrapper .single-blog-post.post-details .post-content h5,
.blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }

  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote,
.blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: #6C57D2;
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
  border-radius: 6px;
}

.blog-wrapper .single-blog-post.post-details blockquote a,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}

.blog-wrapper .single-blog-post.post-details blockquote a:hover,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}

@media (max-width: 767px) {

  .blog-wrapper .single-blog-post.post-details blockquote,
  .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote::before,
.blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: #6C57D2;
  border: none;
  padding-top: 0;
  border-radius: 6px;
}

.blog-wrapper .single-blog-post.quote-post .post-content::before,
.blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
  position: relative;
  z-index: 88;
}

@media (max-width: 585px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content,
  .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 585px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content .icon,
  .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 36px;
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 767px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content h2,
  .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
    font-size: 28px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 462px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
  border-radius: 6px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme-color);
  text-align: center;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}

.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme-color);
}

.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}

@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme-color);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "League Spartan", sans-serif;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: #6C57D2;
}

.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: #6C57D2;
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content h3 {
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h3 {
    font-size: 27px;
  }
}

.blog-wrapper .single-blog-post .post-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.blog-wrapper .single-blog-post .post-content h3 a:hover {
  color: #6C57D2;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #6C57D2 0%, #6C57D2 100%);
}

.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme-color);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme-color);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}

.news-area .main-sidebar .single-sidebar-widget {
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}

.news-area .main-sidebar .single-sidebar-widget ul>li {
  margin-bottom: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a:hover {
  color: #6C57D2;
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: #6C57D2;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: #6C57D2;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title h3 {
  font-size: 20px;
  font-weight: 400;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: #6C57D2;
  color: var(--white);
}

.search_widget form {
  width: 100%;
  position: relative;
}

.search_widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: #6C57D2;
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
  overflow: hidden;
}

.popular-posts .single-post-item:not(:last-child),
.popular_posts .single-post-item:not(:last-child) {
  margin-bottom: 35px;
}

.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
  height: 95px;
  width: 95px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 4px;
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
  overflow: hidden;
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
  color: #6C57D2;
}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: #6C57D2;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.widget_categories ul li {
  display: block;
}

.widget_categories ul li:last-child a {
  margin-bottom: 0;
}

.widget_categories ul li a {
  position: relative;
  background: var(--white);
  padding: 17px 20px;
  line-height: 1;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.widget_categories ul li a:hover {
  color: #6C57D2;
}

.widget_categories ul li a i {
  margin-right: 10px;
}

.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: #6C57D2;
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.tagcloud a {
  display: inline-block;
  padding: 12px 22px;
  line-height: 1;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-right: 8px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 4px;
}

.tagcloud a:last-child {
  margin-right: 0;
}

.tagcloud a:hover {
  background-color: #6C57D2;
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme-color);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.page-nav-wrap {
  margin-top: 50px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: #6C57D2;
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: #6C57D2;
  color: var(--white);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}

.social-share a:hover {
  color: var(--theme-color);
}

.tag-share-wrap {
  padding-bottom: 50px;
}

.tag-share-wrap h4 {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.comments-heading h3,
.related-post-wrap h3,
.comment-form-wrap h3 {
  font-size: 26px;
}

@media (max-width: 767px) {

  .comments-heading h3,
  .related-post-wrap h3,
  .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}

.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
  font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
}

@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}

.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}

.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 10px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--text);
  border: 1px solid #ebebeb;
  background: transparent;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  box-shadow: inherit;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
  margin-right: 10px;
  margin-left: 0px !important;
  transition: all 0.4s ease-in-out;
  width: initial;
  height: initial;
  line-height: initial;
  background-color: transparent;
  color: #6C57D2;
  transform: translate(0);
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before,
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
  background-color: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
  background-color: #6C57D2;
  color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
  color: var(--white) !important;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
  transform: translate(0);
  width: initial;
  height: initial;
  line-height: initial;
  color: #fff;
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}

.comments-item-list .single-comment-item .author-info-comment span {
  color: #6C57D2;
  font-weight: 500;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: var(--white);
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .comment-form {
    padding: 30px;
  }
}

@media (max-width: 585px) {
  .comment-form {
    padding: 30px 15px;
  }
}

.comment-form label {
  margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}

@media (max-width: 585px) {

  .comment-form input,
  .comment-form textarea {
    padding: 15px;
  }
}

.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: 6px;
  border: none;
}

@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}

.comment-form .theme-btn {
  display: inline-block;
  line-height: 1.2;
  padding: 22px 50px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .comment-form .theme-btn {
    padding: 20px 40px;
  }
}

@media (max-width: 585px) {
  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}

.comment-form .theme-btn i {
  margin-right: 10px;
  width: initial;
  height: initial;
  line-height: initial;
  background-color: transparent;
  color: var(--white);
  margin-left: 0;
  margin-right: 10px;
  transform: translate(0);
}

.comment-form .theme-btn:hover i {
  transform: translate(0);
  color: var(--white);
}

.comment ul {
  list-style-type: disc;
}

.comment ul ol {
  margin-bottom: 0;
}

.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}

.comment ol ul {
  margin-bottom: 0;
}

.comment ol ol {
  margin-bottom: 0;
}

.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
  display: block;
  color: var(--theme-color);
}

.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme-color);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme-color);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme-color);
}

.site_info_widget .social-link {
  margin-top: 35px;
}

.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.contect-wrapper .contact-content .contact-form-box {
  margin-top: 40px;
}

.contect-wrapper .contact-content .contact-form-box .form-clt input,
.contect-wrapper .contact-content .contact-form-box .form-clt textarea {
  border-radius: 2px;
  border: 1px solid rgba(0, 53, 102, 0.12);
  background: var(--white);
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}

.contect-wrapper .contact-content .contact-form-box .form-clt textarea {
  padding-bottom: 110px;
}

.contect-wrapper .contect-image {
  margin-left: 60px;
}

.contect-wrapper .contect-image img {
  width: 100%;
  height: 100%;
}

.cta-contact-form-wrapper {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}

.cta-contact-form-wrapper .plane-shape {
  top: 20%;
  right: -30%;
  position: absolute;
}

.cta-contact-form-wrapper form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .cta-contact-form-wrapper form {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.cta-contact-form-wrapper form .form-clt {
  max-width: 310px;
  width: 100%;
}

.cta-contact-form-wrapper form .form-clt input {
  border: none;
  width: 100%;
  border-radius: 6px;
  background: var(--white);
  line-height: 1;
  padding: 20px 30px;
  color: var(--text);
}

.contact-info-inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  padding: 48px 90px;
  background-color: var(--white);
  border-radius: 10px;
  margin-top: -100px;
  position: relative;
  margin-bottom: -100px;
  z-index: 99;
  margin: -120px auto -80px;
}

@media (max-width: 1199px) {
  .contact-info-inner-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .contact-info-inner-wrapper {
    padding: 30px 40px;
  }
}

.contact-info-inner-wrapper .icon-items {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-inner-wrapper .icon-items .icon {
  font-size: 42px;
  color: var(--theme-color-2);
}

.contact-info-inner-wrapper .icon-items .content h3 {
  font-size: 24px;
}

.contact-info-inner-wrapper .icon-items .content p {
  color: var(--text);
}

.contact-info-inner-wrapper .icon-items .content p a {
  color: var(--text);
}

.contact-box-items {
  border-radius: 10px;
  background: var(--white);
  box-shadow: 11px 6px 50.5px 77px rgba(10, 3, 45, 0.03);
  padding: 45px 35px;
}

.contact-box-items .contact-title {
  border-bottom: 1px dashed #003566;
  padding-bottom: 20px;
}

.contact-box-items .contact-title h3 {
  font-size: 28px;
  font-weight: 600;
}

.contact-box-items .contact-info li {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.contact-box-items .contact-info li .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background: var(--white);
  box-shadow: 11px 6px 50.5px 77px rgba(10, 3, 45, 0.03);
}

.contact-box-items .contact-info li .icon i {
  color: var(--theme-color);
}

.contact-wrapper-6 {
  border-radius: 34px;
  background: #FFF;
  box-shadow: 11px 6px 50.5px 77px rgba(10, 3, 45, 0.03);
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 110px;
  margin-bottom: -80px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .contact-wrapper-6 {
    padding: 50px 40px;
  }
}

@media (max-width: 991px) {
  .contact-wrapper-6 {
    padding: 50px 40px;
  }
}

@media (max-width: 767px) {
  .contact-wrapper-6 {
    padding: 40px 30px;
  }
}

.contact-wrapper-6 .plane-shape {
  position: absolute;
  top: -80px;
  right: -70px;
}

@media (max-width: 1399px) {
  .contact-wrapper-6 .plane-shape {
    display: none;
  }
}

.contact-wrapper-6 .contact-form-box {
  margin-top: 30px;
}

.contact-wrapper-6 .contact-form-box .form-clt input,
.contact-wrapper-6 .contact-form-box .form-clt textarea {
  border-radius: 2px;
  border: 1px solid rgba(0, 53, 102, 0.12);
  background: var(--white);
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}

.contact-wrapper-6 .contact-form-box .form-clt textarea {
  padding-bottom: 110px;
}

.contact-wrapper-6 .contact-form-box .theme-btn {
  border: 1px solid transparent;
  border-radius: 100px;
}

.contact-wrapper-6 .contact-form-box .theme-btn i {
  border-radius: 100px;
}

.contact-wrapper-6 .contact-form-box .theme-btn::after,
.contact-wrapper-6 .contact-form-box .theme-btn::before {
  border-radius: 100px;
}

.contact-wrapper-6 .contact-form-box .theme-btn::before {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.contact-wrapper-6 .contact-form-box .theme-btn::after {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.contact-wrapper-6 .contact-form-box .theme-btn.style-2 {
  border: 1px solid var(--theme-color-2);
  background-color: transparent;
  color: var(--theme-color-2);
}

.contact-wrapper-6 .contact-form-box .theme-btn.style-2 i {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.contact-wrapper-6 .contact-form-box .theme-btn.style-2::after,
.contact-wrapper-6 .contact-form-box .theme-btn.style-2::before {
  background-color: var(--theme-color-2);
}

.contact-wrapper-6 .contact-form-box .theme-btn.style-2:hover {
  color: var(--white);
}

.contact-wrapper-6 .contact-form-box .theme-btn.style-2:hover i {
  background-color: var(--white);
  color: var(--header);
}

.map-section-contact .google-map iframe {
  width: 100%;
  height: 672px;
}

.pricing-section-4 {
  padding-bottom: 200px;
}

@media (max-width: 1199px) {
  .pricing-section-4 {
    padding-bottom: 180px;
  }
}

@media (max-width: 991px) {
  .pricing-section-4 {
    padding-bottom: 160px;
  }
}

.pricing-section-4.style-bg {
  position: relative;
}

@media (max-width: 1399px) {
  .pricing-section-4.style-bg {
    background-image: none !important;
    background: linear-gradient(270deg, #8801FF 0%, #A287EE 95.97%) !important;
  }
}

.pricing-section-4.style-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/contact-bg.jpg);
  height: 580px;
  top: initial;
  bottom: 0;
}

@media (max-width: 1199px) {
  .contact-info-inner {
    background: linear-gradient(270deg, #8801FF 0%, #A287EE 95.97%);
  }
}

.footer-widget-wrapper {
  padding: 90px 0 120px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
  color: var(--white);
  font-size: 27px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--theme-color-2);
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input-4 {
  position: relative;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input-4 input {
  border: none;
  width: 100%;
  background-color: var(--white);
  border-radius: 28px;
  padding: 14px 20px;
  color: var(--text);
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input-4 .submit-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: var(--white);
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1;
  top: 8px;
  right: 10px;
}

.footer-widget-wrapper .single-footer-widget .list-area li {
  font-weight: 400;
  font-size: 16px;
}

.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
  position: relative;
  padding-left: 20px;
}

.footer-widget-wrapper .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme-color-2);
}

.footer-widget-wrapper .single-footer-widget .list-area li a:hover::before {
  background-color: var(--theme-color-2);
}

.footer-widget-wrapper .single-footer-widget .footer-contect li {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-widget-wrapper .single-footer-widget .footer-contect li i {
  font-size: 26px;
  color: var(--theme-color-2);
}

.footer-widget-wrapper .single-footer-widget .footer-contect li .content h5 {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-contect li .content p a {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-contect li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget form {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .form-clt input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 6px;
  background: #FFF;
  padding: 19px 30px;
  line-height: 1;
  color: var(--text);
}

.footer-widget-wrapper .single-footer-widget .theme-btn {
  margin-top: 20px;
  padding: 21px 22px;
}

.footer-widget-wrapper .single-footer-widget .theme-btn i {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: var(--white);
  bottom: 0;
  color: var(--theme-color);
}

.footer-widget-wrapper .single-footer-widget .google-map iframe {
  width: 100%;
  height: 216px;
  border-radius: 34px;
}

.footer-newsletter-wrapper-2 {
  padding: 100px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer-newsletter-wrapper-2 {
    padding: 80px 0 0;
  }
}

.footer-newsletter-wrapper-2.style-margin {
  margin-top: 102px;
}

@media (max-width: 1199px) {
  .footer-newsletter-wrapper-2.style-margin {
    margin-top: 82px;
  }
}

@media (max-width: 991px) {
  .footer-newsletter-wrapper-2.style-margin {
    margin-top: 62px;
  }
}

@media (max-width: 1199px) {
  .footer-newsletter-wrapper-2 {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .footer-newsletter-wrapper-2 {
    padding-top: 80px;
  }
}

.footer-newsletter-wrapper-2 .footer-newsletter-right {
  border-radius: 10px;
  background: #44455E;
  max-width: 915px;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 991px) {
  .footer-newsletter-wrapper-2 .footer-newsletter-right {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.footer-newsletter-wrapper-2 .footer-newsletter-right .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-newsletter-wrapper-2 .footer-newsletter-right .icon {
  max-width: 71px;
  width: 100%;
  height: 71px;
  line-height: 71px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 30px;
  background-color: var(--theme-color);
}

.footer-newsletter-wrapper-2 .footer-newsletter-right .content h4 {
  font-size: 20px;
  color: var(--white);
}

.footer-newsletter-wrapper-2 .footer-newsletter-right .content span {
  color: var(--white);
}

.footer-newsletter-wrapper-2 .footer-newsletter-right form {
  max-width: 387px;
  width: 100%;
  position: relative;
}

.footer-newsletter-wrapper-2 .footer-newsletter-right form .icon-btn {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: inline-block;
  background-color: var(--theme-color-2);
  color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 12px;
  right: 12px;
}

.footer-newsletter-wrapper-2 .footer-newsletter-right form input {
  width: 100%;
  outline: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 15px;
  padding: 20px 20px;
  line-height: 1;
  background: transparent;
}

.footer-newsletter-wrapper-2 .footer-newsletter-right form input::placeholder {
  color: rgba(255, 255, 255, 0.67);
}

.footer-bottom {
  position: relative;
  background: #44455E;
  z-index: 9;
  padding: 18px 0;
}

.footer-bottom.bg-4 {
  background: #1D2250;
}

.footer-bottom .footer-wrapper {
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
    margin-top: 30px;
    text-align: center;
  }
}

.footer-bottom .footer-wrapper p {
  color: var(--white);
}

.footer-bottom .footer-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom .footer-wrapper .footer-menu li a {
  color: var(--white);
  background-image: linear-gradient(var(--theme-color-2), var(--theme-color-2));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}

.footer-bottom .footer-wrapper .footer-menu li a:hover {
  background-size: 100% 1px;
  color: var(--theme-color-2);
}

.footer-bottom .scroll-icon {
  position: absolute;
  left: 90.2%;
  top: -40px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  line-height: 60px;
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  border: 5px solid var(--white);
  display: inline-block;
  z-index: 99;
}

@media (max-width: 1399px) {
  .footer-bottom .scroll-icon {
    left: 50%;
  }
}

.request-demo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 102px;
}

@media (max-width: 1199px) {
  .request-demo-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
    padding-top: 82px;
  }
}

@media (max-width: 991px) {
  .request-demo-wrapper {
    padding-top: 52px;
  }
}

.request-demo-wrapper .content {
  max-width: 710px;
}

.request-demo-wrapper .content h3 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 15px;
}

.request-demo-wrapper .content p {
  color: var(--white);
}


/* 1. Body aur html ka horizontal scroll remove kare */
html,
body {
  overflow-x: hidden;
}

.choose-style {
  margin-top: -107px;
}



.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #007bff;
  /* Button color */
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #0056b3;
  /* Darker shade on hover */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-choose-us-gapping {
  margin-top: -85px;
}



:root {
  --accent1: #ff2a7a;
  --accent2: #6a11cb;
  --bg: #f9fafb;
  --card-bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
}

.company-history {
  background: var(--bg);
  padding: 70px 20px;
  font-family: "Poppins", Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.history-header {
  text-align: center;
  margin-bottom: 50px;
}

.history-header .subtitle {
  color: var(--accent1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.history-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.history-header p {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent1), var(--accent2));
  border-radius: 2px;
}

.timeline-item {
  width: 50%;
  padding: 20px;
  position: relative;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item .content {
  background: var(--card-bg);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: 0.3s;
}

.timeline-item .content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.timeline-item.left .content::after,
.timeline-item.right .content::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid var(--accent1);
  border-radius: 50%;
}

.timeline-item.left .content::after {
  right: -38px;
}

.timeline-item.right .content::after {
  left: -38px;
}

.year-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 10px;
}

.timeline-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 6px 0 10px;
}

.timeline-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    text-align: left !important;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item .content::after {
    left: -38px;
    right: auto;
  }
}


.about-gapping {
  margin-top: 70px;
}

.about-heading-gapping {
  margin-top: -64px;
  margin-bottom: 30px;
}

.gapping {
  margin-top: 10px;
}



/* Sidebar box */
.sidebar-services li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-services li a:hover {
  background: #f5f7ff;
  color: #0056b3;
  border-radius: 6px;
}

/* Dropdown hidden by default */
.sidebar-services .dropdown {
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px 0 8px 15px;
  background: #fafafa;
  border-left: 3px solid #0056b3;
}

.sidebar-services .has-dropdown.open>.dropdown {
  display: block;
}

.sidebar-services .arrow-icon {
  transition: transform 0.3s ease;
}

.sidebar-services .has-dropdown.open .arrow-icon {
  transform: rotate(180deg);
  color: #0056b3;
}

.has-dropdown .dropdown-link::after {
  display: none !important;
}

.has-dropdown .dropdown-link .fa-chevron-right {
  display: none !important;
}

.dropdown {
  display: none;
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.has-dropdown.open .dropdown {
  display: block;
}

.has-dropdown.open .fa-chevron-down {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.fa-chevron-down {
  transition: transform 0.3s ease;
}





:root {
  --career-primary: #0f0f23;
  --career-accent: #6366f1;
  --career-secondary: #3b82f6;
  --career-success: #10b981;
  --career-purple: #8b5cf6;
  --career-pink: #ec4899;
  --career-orange: #f59e0b;
  --career-text: #ffffff;
  --career-muted: #9ca3af;
  --career-card: rgba(255, 255, 255, 0.05);
  --career-border: rgba(255, 255, 255, 0.1);
  --career-hover: rgba(255, 255, 255, 0.08);
}


.career-hero-zone {
  min-height: 85vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1e1b4b 50%, #312e81 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow: hidden;
}

.career-hero-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.career-floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.career-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  animation: career-float 6s ease-in-out infinite;
}

.career-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.career-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.career-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes career-float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

.career-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.career-hero-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--career-accent);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: career-fade-in 1s ease-out;
}

.career-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #a855f7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: career-fade-in 1s ease-out 0.2s both;
}

.career-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--career-muted);
  margin-bottom: 2rem;
  animation: career-fade-in 1s ease-out 0.4s both;
}

.career-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: career-fade-in 1s ease-out 0.6s both;
}

.career-btn-primary {
  background: linear-gradient(135deg, var(--career-accent), var(--career-purple));
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.career-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.career-btn-secondary {
  background: var(--career-card);
  color: var(--career-text);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--career-border);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.career-btn-secondary:hover {
  background: var(--career-hover);
  transform: translateY(-2px);
}

@keyframes career-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Jobs Section - Reduced spacing */
.career-jobs-area {
  padding: 3rem 1rem;
  background: var(--career-primary);
  position: relative;
}

.career-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.career-section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--career-accent), var(--career-secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-section-desc {
  color: var(--career-muted);
  font-size: 1.1rem;
}

.career-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.career-job-item {
  background: var(--career-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--career-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.career-job-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--career-accent), var(--career-purple), var(--career-pink));
}

.career-job-item:hover {
  transform: translateY(-5px);
  background: var(--career-hover);
  border-color: rgba(99, 102, 241, 0.3);
}

.career-job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.career-job-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.career-job-meta {
  color: var(--career-accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.career-job-salary {
  background: linear-gradient(135deg, var(--career-success), #059669);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.career-job-desc {
  color: var(--career-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.career-skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.career-skill-badge {
  background: rgba(99, 102, 241, 0.1);
  color: var(--career-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.career-apply-action {
  background: linear-gradient(135deg, var(--career-accent), var(--career-secondary));
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 0.95rem;
}

.career-apply-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Benefits Section - Reduced spacing */
.career-perks-zone {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #0f0f23 0%, #1e1b4b 100%);
}

.career-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.career-perk-card {
  background: var(--career-card);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--career-border);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.career-perk-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.career-perk-card:hover::before {
  opacity: 1;
  animation: career-shimmer 1.5s ease-in-out;
}

.career-perk-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
}

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

  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

.career-perk-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--career-accent), var(--career-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.career-perk-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.career-perk-desc {
  color: var(--career-muted);
  font-size: 0.95rem;
}

/* Contact Section - Minimal spacing */
.career-contact-zone {
  padding: 2.5rem 1rem;
  text-align: center;
  background: var(--career-primary);
}

.career-contact-box {
  max-width: 500px;
  margin: 0 auto;
  background: var(--career-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--career-border);
  backdrop-filter: blur(20px);
}

.career-contact-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--career-accent), var(--career-pink));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-contact-text {
  color: var(--career-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .career-hero-zone {
    min-height: 75vh;
    padding: 1.5rem 1rem;
  }

  .career-jobs-area,
  .career-perks-zone {
    padding: 2.5rem 1rem;
  }

  .career-contact-zone {
    padding: 2rem 1rem;
  }

  .career-jobs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .career-perks-grid {
    grid-template-columns: 1fr;
  }

  .career-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .career-btn-primary,
  .career-btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .career-contact-box {
    padding: 1.5rem;
  }

  .career-job-item,
  .career-perk-card {
    padding: 1.25rem;
  }
}


/* Modal Styles */
.career-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease;
}

.career-modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  animation: slideDown 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

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

.career-modal-close {
  float: right;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #555;
}

.career-modal-close:hover {
  color: #000;
}

.career-form-group {
  margin-bottom: 15px;
}

.career-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.career-form-group input,
.career-form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}



/* Business with us style start */

.innova-business {
  padding: 60px 20px;
  background: #f9fafb;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.innova-container {
  max-width: 1200px;
  margin: 0 auto;
}

.innova-header {
  text-align: center;
  margin-bottom: 50px;
}

.innova-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.innova-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.innova-why,
.innova-process,
.innova-stories,
.innova-benefits {
  margin-bottom: 60px;
}

.innova-why h3,
.innova-process h3,
.innova-stories h3,
.innova-benefits h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #111;
  font-weight: 600;
  text-align: center;
}

.innova-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.innova-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.innova-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.innova-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.innova-card p {
  color: #555;
  font-size: 0.95rem;
}

.innova-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.innova-step {
  flex: 1 1 200px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.innova-step span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
}

.innova-step h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.innova-benefits ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.innova-benefits li {
  background: #fff;
  padding: 12px 18px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
}


/* Blog css start */


.innova-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.innova-blog-section {
  margin: 40px 0;
}

.innova-section-title {
  text-align: center;
  margin-bottom: 40px;
  animation: innova-fadeIn 1s ease-out;
}

.innova-heading {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.innova-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 2px;
}

.innova-section-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

.innova-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.innova-blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: innova-fadeInUp 0.8s ease-out;
}

.innova-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.innova-blog-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.innova-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.innova-blog-card:hover .innova-blog-img img {
  transform: scale(1.1);
}

.innova-blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.innova-blog-content {
  padding: 20px;
}

.innova-blog-date {
  color: #7f8c8d;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.innova-blog-date i {
  margin-right: 8px;
  color: #6a11cb;
}

.innova-blog-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.innova-blog-card:hover .innova-blog-title {
  color: #2575fc;
}

.innova-blog-excerpt {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.innova-read-more {
  display: inline-flex;
  align-items: center;
  color: #2575fc;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.innova-read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.innova-read-more:hover {
  transform: translateX(5px);
}

.innova-read-more:hover i {
  transform: translateX(3px);
}

/* Animation for blog cards */
.innova-blog-card:nth-child(1) {
  animation-delay: 0.1s;
}

.innova-blog-card:nth-child(2) {
  animation-delay: 0.2s;
}

.innova-blog-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Animations */
@keyframes innova-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes innova-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Responsive design */
@media (max-width: 768px) {
  .innova-blog-grid {
    grid-template-columns: 1fr;
  }

  .innova-heading {
    font-size: 1.8rem;
  }
}


/* Enquiry page css start*/




/* Enquiry page css end*/



.table-container {
  width: 100%;
  overflow-x: auto;
  /* chhoti screen pe horizontal scroll aayega */
  -webkit-overflow-scrolling: touch;
  border: 1px solid #ddd;
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  /* table ki minimum width */
}

th,
td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: left;
  white-space: nowrap;
  /* text wrap na ho */
}

th {
  background: #007bff;
  color: #fff;
}

tr:nth-child(even) {
  background: #f9f9f9;
}

tr:hover {
  background: #f1f1f1;
}

.char-animation {
  font-size: 24px;
  text-transform: uppercase;
}



.whatsapp-float {
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 120px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

/* Demo content to show it works */
.demo-content {
  padding: 50px;
  text-align: center;
  color: #666;
  font-size: 18px;
}

/*Enquiry Section   Css Start */

.innova-enquiry-section {
  background: linear-gradient(135deg, #eef2ff, #fdf2f8);
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.innova-enquiry-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  max-width: 650px;
  width: 100%;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s;
}

.innova-enquiry-box:hover {
  transform: translateY(-5px);
}

.innova-enquiry-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.innova-enquiry-text {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 28px;
}

.innova-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.innova-enquiry-input,
.innova-enquiry-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  background: #ffffff !important;
  /* white background */
  color: #111111 !important;
  /* visible text */
  outline: none;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.innova-enquiry-input::placeholder,
.innova-enquiry-textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.innova-enquiry-input:focus,
.innova-enquiry-textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.innova-enquiry-btn {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-size: 17px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.innova-enquiry-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .innova-enquiry-box {
    padding: 28px 22px;
  }

  .innova-enquiry-title {
    font-size: 24px;
  }
}

/*Enquiry Section   Css End */


/* Section Base */
.innova-corporate-details-section {
  background: linear-gradient(to right, #f8fbff, #eef3fb);
  padding: 80px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* subtle animated background */
.innova-corporate-details-section::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(74, 0, 224, 0.1);
  border-radius: 50%;
  top: -80px;
  left: -80px;
  animation: float 6s ease-in-out infinite alternate;
}

.innova-corporate-details-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(142, 45, 226, 0.08);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
  animation: float 7s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(30px);
  }
}

/* Container */
.innova-corporate-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Header */
.innova-corporate-header {
  text-align: center;
  margin-bottom: 60px;
}

.innova-corporate-header h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.innova-corporate-header h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  margin: 10px auto 0;
  border-radius: 2px;
}

.innova-corporate-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Cards */
.innova-corporate-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 0.8s ease both;
}

.innova-corporate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.innova-corporate-card h3 {
  font-size: 1.6rem;
  color: #4a00e0;
  margin-bottom: 15px;
  font-weight: 600;
}

.innova-corporate-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/* Quick Facts Table */
.innova-corporate-card table {
  width: 100%;
  border-collapse: collapse;
}

.innova-corporate-card table td {
  padding: 14px 12px;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.innova-corporate-card table td:first-child {
  font-weight: bold;
  color: #2c3e50;
  width: 35%;
}

/* Highlights */
.innova-corporate-card ul {
  padding: 0;
  list-style: none;
}

.innova-corporate-card ul li {
  background: url("https://cdn-icons-png.flaticon.com/512/845/845646.png") no-repeat left center;
  background-size: 20px;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.innova-corporate-card ul li:hover {
  color: #4a00e0;
}

/* Industries Badges */
.innova-corporate-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.innova-corporate-industries span {
  background: linear-gradient(45deg, #4a00e0, #8e2de2);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.innova-corporate-industries span:hover {
  background: linear-gradient(45deg, #2c3e50, #4a00e0);
  transform: scale(1.05);
}

/* CTA */
.innova-corporate-cta {
  text-align: center;
  margin-top: 50px;
}

.innova-corporate-btn {
  display: inline-block;
  margin: 12px;
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(45deg, #4a00e0, #8e2de2);
  color: #fff;
  transition: all 0.3s ease;
}

.innova-corporate-btn:hover {
  background: linear-gradient(45deg, #2c3e50, #4a00e0);
  transform: scale(1.05);
}

.innova-corporate-btn.secondary {
  background: #e0e0e0;
  color: #333;
}

.innova-corporate-btn.secondary:hover {
  background: #bbb;
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline Container */
.innova-corporate-timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 40px;
  border-left: 3px solid #0073e6;
}

/* Timeline Item */
.innova-corporate-timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 0.6s forwards;
}

/* Timeline Dot */
.innova-corporate-timeline .timeline-item::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #0073e6;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Timeline Content */
.innova-corporate-timeline .timeline-item h4 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #222;
}

.innova-corporate-timeline .timeline-item p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* Slide-in animation */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Optional: stagger animation for multiple items */
.innova-corporate-timeline .timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}

.innova-corporate-timeline .timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}

.innova-corporate-timeline .timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}

.innova-corporate-timeline .timeline-item:nth-child(4) {
  animation-delay: 0.8s;
}

.innova-corporate-timeline .timeline-item:nth-child(5) {
  animation-delay: 1s;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .innova-corporate-container {
    padding: 0 20px;
  }

  .innova-corporate-header h2 {
    font-size: 2.4rem;
  }

  .innova-corporate-card {
    padding: 25px;
  }

  .innova-corporate-card h3 {
    font-size: 1.4rem;
  }

  .innova-corporate-card table td {
    padding: 10px 8px;
    font-size: 0.95rem;
  }

  .innova-corporate-timeline {
    padding-left: 30px;
    border-left-width: 2px;
  }

  .innova-corporate-timeline .timeline-item::before {
    width: 16px;
    height: 16px;
    left: -10px;
    border-width: 2px;
  }
}

@media (max-width: 768px) {
  .innova-corporate-header h2 {
    font-size: 2rem;
  }

  .innova-corporate-header p {
    font-size: 1rem;
  }

  .innova-corporate-card {
    padding: 20px;
  }

  .innova-corporate-card h3 {
    font-size: 1.3rem;
  }

  .innova-corporate-card table td {
    font-size: 0.9rem;
  }

  .innova-corporate-industries span {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .innova-corporate-cta .innova-corporate-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .innova-corporate-header h2 {
    font-size: 1.7rem;
  }

  .innova-corporate-header p {
    font-size: 0.95rem;
  }

  .innova-corporate-card {
    padding: 18px;
  }

  .innova-corporate-card h3 {
    font-size: 1.2rem;
  }

  .innova-corporate-card table td {
    font-size: 0.85rem;
    padding: 8px 6px;
  }

  .innova-corporate-industries {
    gap: 8px;
  }

  .innova-corporate-industries span {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .innova-corporate-cta .innova-corporate-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .innova-corporate-timeline {
    padding-left: 25px;
    border-left-width: 2px;
  }

  .innova-corporate-timeline .timeline-item::before {
    width: 14px;
    height: 14px;
    left: -9px;
    border-width: 2px;
  }
}

/* Quick Facts Table Wrapper */
.innova-corporate-card table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  /* ensures table fits container */
  word-wrap: break-word;
  /* break long text */
}

/* Table Responsive Wrapper */
.innova-corporate-card .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Table Cells */
.innova-corporate-card table td {
  padding: 14px 12px;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

/* First column styling */
.innova-corporate-card table td:first-child {
  font-weight: bold;
  color: #2c3e50;
  width: 35%;
}

/* Responsive Table for Small Screens */
@media (max-width: 768px) {
  .innova-corporate-card table td {
    font-size: 0.9rem;
    padding: 10px 8px;
  }
}

@media (max-width: 480px) {
  .innova-corporate-card table td {
    font-size: 0.85rem;
    padding: 8px 6px;
  }
}


/* --- Innova Standard About Refined Style --- */
.innova-standard-v8 {
  padding: 0px 0;
  background-color: #ffffff;
  padding-bottom: 50px;
}

/* Image Section */
.image-wrapper-v8 {
  position: relative;
  padding-bottom: 20px;
}

.main-img-v8 {
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.trust-badge-v8 {
  position: absolute;
  bottom: 40px;
  right: 10px;
  background: #002e5b;
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  border-radius: 2px;
  z-index: 5;
}

.trust-badge-v8 .year {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.trust-badge-v8 .label {
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Text & Typography */
.top-subheading {
  color: #007bff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}

.main-h2-v8 {
  font-size: 38px;
  font-weight: 800;
  color: #222;
  line-height: 1.2;
}

.text-navy {
  color: #002e5b;
}

.p-main {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.leadership-v8-minimal {
  font-size: 14px;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}

/* Button Fixed Alignment */
.v8-btn-new {
  background: #002e5b;
  color: #ffffff !important;
  padding: 14px 25px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.v8-btn-new:hover {
  background: #0056b3;
}

/* --- SMALL SCREEN FIXES (MOBILE) --- */
@media (max-width: 991px) {
  .innova-standard-v8 {

    padding: 0px 0;
    padding-bottom: 60px;
  }

  .about-content-v8 {
    text-align: center;
    padding-top: 20px;
  }

  .main-h2-v8 {
    font-size: 26px;
    margin-top: 5px;
  }

  .top-subheading {
    margin-bottom: 0px;
  }

  .trust-badge-v8 {
    right: 50%;
    transform: translateX(50%);
    bottom: 0px;
  }

  .p-main {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .v8-btn-new {
    width: 100%;
    max-width: 300px;
  }
}





/* --- Innova Counter Advanced V10 Style --- */
.innova-counter-advanced-v10 {
  padding-bottom: 80px;
}

.custom-counter-v10 {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  /* Parallax effect */
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  padding: 70px 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0, 46, 91, 0.2);
}

/* 1. High-End Background Color Overlay */
.gradient-overlay-v10 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Standard Corporate Dark Gradient */
  background: linear-gradient(145deg, rgba(0, 29, 61, 0.95) 0%, rgba(63, 43, 150, 0.9) 100%);
  z-index: 1;
}

.z-index-3 {
  z-index: 3;
}

/* 2. Glassmorphism Counter Boxes */
.v10-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  /* Glass effect */
  backdrop-filter: blur(10px);
  padding: 35px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v10-box:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* 3. Modern Icon & Typography Styling */
.counter-icon-v10 {
  font-size: 45px;
  color: #ffffff;
  /* Icon White clean look */
  margin-bottom: 20px;
  transition: 0.4s;
  opacity: 0.8;
}

.v10-box:hover .counter-icon-v10 {
  transform: scale(1.1);
  opacity: 1;
}

.v10-box h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 5px;
  line-height: 1;
}

.v10-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
}

/* --- Responsive Optimization (Mobile First) --- */

@media (max-width: 1199px) {
  .v10-box h2 {
    font-size: 38px;
  }

  .custom-counter-v10 {
    padding: 50px 20px;
  }
}

@media (max-width: 991px) {
  .v10-box {
    padding: 25px 15px;
  }

  .counter-icon-v10 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .v10-box {
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
  }

  .custom-counter-v10 {
    background-attachment: scroll;
    /* Mobile pe parallax disable for performance */
  }

  .col-md-6 {
    flex: 0 0 100%;
    /* Ensure stacked layout on mobile */
  }
}


/* --- Innova Final Visibility Fix --- */
.working-process-section-v14 {
  position: relative;
  padding: 100px 0;
  background-color: #07101f;
  /* Solid Dark Base */
  overflow: hidden;
}

.process-overlay-v14 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Thoda aur dark overlay taaki white chamke */
  background: rgba(7, 16, 31, 0.98);
  z-index: 1;
}

.z-index-5 {
  z-index: 5;
}

/* Header Text - Pure White */
.title-v14 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.3;
}

.text-blue-bright {
  color: #00a8ff !important;
  /* Bright Blue jo dark par dikhta hai */
}

.badge-v14 {
  color: #00a8ff;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

/* Card Styling */
.process-card-v14 {
  background: rgba(255, 255, 255, 0.05);
  /* Soft glass effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px 30px;
  border-radius: 10px;
  height: 100%;
  transition: 0.4s ease-in-out;
}

.process-card-v14:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00a8ff;
  transform: translateY(-10px);
}

/* Icons & Numbers - Ab visible honge */
.card-header-v14 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.step-num-v14 {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  /* Subtile white number */
}

.icon-v14 {
  font-size: 28px;
  color: #00a8ff;
  /* High contrast Blue */
}

/* Body Text - Pure White Visibility */
.card-body-v14 h3 {
  color: #ffffff !important;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.card-body-v14 p {
  color: rgba(255, 255, 255, 0.85) !important;
  /* Visible White-Grey */
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile Fix */
@media (max-width: 767px) {
  .title-v14 {
    font-size: 26px;
  }
}





/* --- Innova Light Premium Section V21 --- */
.product-section-v21 {
  background-color: #f4f7fa;
  /* Light Soft Grey Background */
  padding: 100px 0;
}

.title-v21 {
  font-size: 38px;
  font-weight: 800;
  color: #071a30;
  /* Darker Blue-Grey for contrast */
}

.text-blue-v21 {
  color: #007bff;
}

.badge-v21 {
  color: #007bff;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* Card Styling */
.product-item-v21 {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  height: 100%;
  overflow: hidden;
}

.product-item-v21:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.img-wrapper-v21 {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.img-wrapper-v21 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.product-item-v21:hover .img-wrapper-v21 img {
  transform: scale(1.1);
}

/* Text Padding Fix for Mobile */
.content-v21 {
  padding: 30px;
  /* Badhaya gaya padding taaki text images se chipka na lage */
}

.content-v21 h3 a {
  color: #071a30;
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.content-v21 p {
  color: #666;
  /* Clean Grey Text for readability */
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.v21-link {
  color: #007bff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Mobile Responsive Fix --- */
@media (max-width: 767px) {
  .product-section-v21 {
    padding: 60px 0;
  }

  .title-v21 {
    font-size: 26px;
  }

  .content-v21 {
    padding: 20px 25px 30px;
    /* Bottom padding badhaya gaya */
  }

  .content-v21 h3 a {
    font-size: 18px;
    margin-top: 10px;
    /* Top margin fix */
  }
}


/* --- Why Choose Us V22 (Light Theme) --- */
.choose-us-section-v22 {
  background-color: #ffffff;
  /* Contrast against dark sections */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.badge-v22 {
  color: #007bff;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.title-v22 {
  font-size: 42px;
  font-weight: 800;
  color: #071a30;
  line-height: 1.2;
}

.title-v22 span {
  color: #007bff;
}

.choose-us-text-v22 {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Icon Box Design */
.icon-box-v22 {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: 0.3s;
}

.icon-box-v22:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.icon-v22 {
  width: 60px;
  height: 60px;
  background: #007bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  flex-shrink: 0;
}

.content-v22 h6 {
  font-size: 18px;
  font-weight: 700;
  color: #071a30;
  margin-bottom: 8px;
}

.content-v22 p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Image & Floating Card Animation */
.choose-us-img-v22 {
  position: relative;
  padding-left: 20px;
}

.main-img-v22 img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.floating-experience-v22 {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: #007bff;
  color: #fff;
  padding: 25px 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

.floating-experience-v22 h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 0;
}

.floating-experience-v22 p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .title-v22 {
    font-size: 30px;
  }

  .floating-experience-v22 {
    left: 20px;
    bottom: 20px;
    padding: 15px 25px;
  }

  .choose-us-img-v22 {
    margin-top: 50px;
  }
}



/* --- Innova Timeline Section V23 --- */
.company-history-v23 {
  background-color: #f8f9fc;
  /* Light background for contrast */
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.badge-v23 {
  color: #007bff;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
}

.title-v23 {
  font-size: 36px;
  font-weight: 800;
  color: #071a30;
  margin-bottom: 20px;
}

.timeline-v23 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* The Vertical Line */
.timeline-line {
  position: absolute;
  width: 2px;
  background: #007bff;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Common Item Style */
.timeline-item-v23 {
  padding: 20px 40px;
  position: relative;
  width: 50%;
  margin-bottom: 30px;
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #007bff;
  border: 4px solid #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
}

/* Left & Right Alignment */
.timeline-item-v23.left {
  left: 0;
  text-align: right;
}

.timeline-item-v23.right {
  left: 50%;
  text-align: left;
}

.timeline-item-v23.left .timeline-dot {
  right: -10px;
}

.timeline-item-v23.right .timeline-dot {
  left: -10px;
}

/* Content Box Styling */
.content-box {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.year-badge-v23 {
  display: inline-block;
  padding: 5px 15px;
  background: #007bff;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 15px;
}

.content-box h3 {
  font-size: 22px;
  color: #071a30;
  font-weight: 700;
  margin-bottom: 10px;
}

.content-box p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Responsive Timeline for Mobile --- */
@media (max-width: 767px) {
  .timeline-line {
    left: 30px;
  }

  .timeline-item-v23 {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
  }

  .timeline-item-v23.left,
  .timeline-item-v23.right {
    left: 0;
  }

  .timeline-item-v23.left .timeline-dot,
  .timeline-item-v23.right .timeline-dot {
    left: 20px;
  }
}


/* --- Contact Section V25 --- */
.contact-section-v25 {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  /* Parallax effect */
  z-index: 1;
}

.contact-section-v25::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 26, 48, 0.95) 40%, rgba(7, 26, 48, 0.7) 100%);
  z-index: -1;
}

.badge-v25 {
  color: #007bff;
  font-weight: 700;
  letter-spacing: 2px;
}

.title-v25 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.title-v25 span {
  color: #007bff;
}

/* Form Styling */
.form-group-v25 {
  margin-bottom: 5px;
}

.form-group-v25 label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group-v25 label i {
  color: #007bff;
  margin-right: 5px;
}

.form-group-v25 input,
.form-group-v25 textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}

.form-group-v25 input:focus,
.form-group-v25 textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}

/* WhatsApp Button */
.whatsapp-submit-btn {
  width: 100%;
  padding: 18px;
  background: #25d366;
  /* WhatsApp Green */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.4s;
  cursor: pointer;
  margin-top: 10px;
}

.whatsapp-submit-btn:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit-btn i {
  font-size: 22px;
}

/* Mobile Fixes */
@media (max-width: 991px) {
  .title-v25 {
    font-size: 30px;
  }

  .contact-section-v25::before {
    background: rgba(7, 26, 48, 0.9);
  }
}


/* --- Footer Styling --- */
.footer-section-v26 {
  background-color: #051426;
  /* Darker Corporate Blue */
  color: #fff;
  position: relative;
}

.footer-logo {
  max-width: 180px;
  border-radius: 5px;
}

.single-footer-widget h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.single-footer-widget h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #007bff;
}

.footer-content p {
  color: #b0b9c5;
  line-height: 1.8;
}

/* List Styling */
.list-area-v26 {
  list-style: none;
  padding: 0;
}

.list-area-v26 li {
  margin-bottom: 12px;
}

.list-area-v26 li a {
  color: #b0b9c5;
  transition: 0.3s;
  text-decoration: none;
}

.list-area-v26 li a:hover {
  color: #007bff;
  padding-left: 8px;
}

/* Contact Info */
.footer-contact-v26 {
  list-style: none;
  padding: 0;
}

.footer-contact-v26 li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #b0b9c5;
}

.footer-contact-v26 li i {
  color: #007bff;
  font-size: 18px;
  margin-top: 5px;
}

.footer-contact-v26 li a {
  color: #b0b9c5;
  text-decoration: none;
}

/* Social Icons */
.social-icon-v26 {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon-v26 a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.social-icon-v26 a:hover {
  background: #007bff;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom-v26 {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #040f1c;
}

.footer-bottom-v26 p {
  margin: 0;
  color: #7e8995;
  font-size: 14px;
}

.footer-bottom-v26 span {
  color: #fff;
  font-weight: 600;
}

/* Floating WhatsApp Animation */
.whatsapp-float-v26 {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-float-v26:hover {
  transform: scale(1.1);
}

/* Tooltip text */
.tooltip-text {
  position: absolute;
  width: 100px;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  right: 75px;
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  bottom: 50px;
}

.whatsapp-float-v26:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}






/* modal css start  */

/* --- Modern Product Modal Styling with Scroll --- */
.modal-custom {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  /* Background ko blur karega */
}

.modal-content-custom {
  background-color: #fff;
  margin: 2% auto;
  width: 90%;
  max-width: 1000px;
  /* Badi screen par width itni rahegi */
  height: 85vh;
  /* Screen ki 85% height cover karega */
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  /* Header, Body aur Footer ko align karne ke liye */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header-custom {
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}

.modal-header-custom h4 {
  margin: 0;
  color: #172965;
  font-size: 22px;
}

/* --- Search Box Styling --- */
.search-container {
  padding: 15px 25px;
  background: #fff;
}

#productSearch {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #007bff;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
}

/* --- SCROLLABLE BODY (Sabse important part) --- */
.modal-body-custom {
  flex: 1;
  /* Jitni jagah bachi hai wo le lega */
  overflow-y: auto;
  /* Vertical scroll bar apne aap aayega */
  padding: 10px 25px;
}

/* --- Product Grid Styling --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-grid li a {
  display: block;
  padding: 12px 15px;
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.product-grid li a:hover {
  background: #007bff;
  color: #fff !important;
  transform: translateX(5px);
}

/* --- Custom Scrollbar for Modal Body --- */
.modal-body-custom::-webkit-scrollbar {
  width: 8px;
}

.modal-body-custom::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modal-body-custom::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 10px;
}

/* Close Button Styling */
.close-modal {
  font-size: 30px;
  cursor: pointer;
  color: #666;
  transition: 0.3s;
}

.close-modal:hover {
  color: #ff0000;
}

.modal-footer-custom {
  padding: 15px;
  text-align: center;
  border-top: 1px solid #eee;
}

.close-btn-bottom {
  background: #dc3545;
  color: white;
  border: none;
  padding: 8px 25px;
  border-radius: 5px;
  cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-content-custom {
    width: 95%;
    height: 90vh;
    margin: 5% auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile par ek line mein ek product */
}


/* Ensure the search text is visible (Not white) */
#productSearch {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #007bff;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  color: #333 !important;
  /* Force dark text color */
  background-color: #ffffff !important;
}

/* List Item Text Visibility */
.product-grid li a {
  display: block;
  padding: 12px 15px;
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  color: #172965 !important;
  /* Deep Blue text */
  text-decoration: none;
  font-weight: 500;
}

/* Hover state: Text turns white on blue background */
.product-grid li a:hover {
  background: #007bff;
  color: #ffffff !important;
}

/* Scrollbar Style for long lists */
.modal-body-custom {
  flex: 1;
  overflow-y: auto;
  padding: 15px 25px;
}

.modal-body-custom::-webkit-scrollbar {
  width: 6px;
}

.modal-body-custom::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 10px;
}


.modal-custom {
  display: none;
  position: fixed;
  z-index: 999999 !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

/* modal css end  */



/* --- Desktop Par (Above 1025px) -- Same rahega */



/* Sirf Desktop ke liye adjustment */
@media (min-width: 1025px) {
  .hero-section.hero-3 {
    /* Aapke navbar ki height lagbhag 120px se 150px hai */
    margin-top: 135px !important;

    /* Background image ko center mein fix rakho */
    background-position: center center !important;
    background-size: cover !important;

    /* Ensure banner is relative so it stays in flow */
    position: relative !important;
    z-index: 1;
  }

  /* Agar aapka header fixed hai toh ye zaroori hai */
  header,
  .header-section-2 {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    /* Taaki piche ka content na dikhe */
  }
}

/* --- Tablets & Horizontal Mobile (768px to 1024px) --- */
@media (max-width: 1024px) {
  .hero-section.hero-3 {
    padding-top: 80px;
    min-height: 50vh;
    /* Thodi kam height */
  }
}

/* ==========================================================
   --- MAJOR FIX FOR PORTRAIT MOBILE (Galaxy S20/S21, iPhones) ---
   Targeting screen widths less than 480px (image_2.png style)
   ========================================================== */
@media (max-width: 480px) {

  .hero-section.hero-3 {
    /* Important 1: Min-height ko image ki height ke proportional rakhen, 
           taaki puri image fit ho sake bina stretch hue. */
    min-height: auto;
    padding-top: 82px;
    /* Minimal space for mobile header */

    /* Important 2: 'cover' ki jagah '100% 100%' or a fixed height background use karein.
           '100% auto' background ko width ke hisaab se puri stretch karega, background-position 'bottom' karein
           taaki visual content (flask, machine) bottom se align ho. */
    background-size: 100% auto;
    background-position: bottom center;

    /* Background repeat ko off karen */
    background-repeat: no-repeat;
    background-attachment: scroll;

    /* Isse hum banner text ko force karenge bottom-align hone ke liye */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push text down */
  }

  /* Important 3: Ab hum Banner Text ko image ke upar overlay karenge (image_2.png style) */
  .hero-section.hero-3 .hero-content {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    /* Create space around text */

    /* Add a gradient background overlay to make the white text readable over the image */
    background: linear-gradient(to top, rgba(0, 50, 100, 0.9) 0%, rgba(0, 50, 100, 0) 100%);
    color: #fff;
  }

  /* Mobile Text Styling Adjustments */
  .hero-section.hero-3 .hero-content h1 {
    font-size: 3rem;
    /* Small screen size */
    margin-bottom: 5px;
  }

  .hero-section.hero-3 .hero-content h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #cae6f8;
  }

  .hero-section.hero-3 .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  /* Important 4: Floating elements (shapes, planes) ko mobile par hide karein */
  .left-shape,
  .right-shape,
  .plane-shape,
  .plane-shape-2 {
    display: none !important;
  }
}

/* ========================================================== */



/* Image ko sahi tarah se fit karne ke liye */
.contact-image-v25 img {
  width: 100%;
  height: 500px;
  /* Is height ko apne form ke height ke hisaab se adjust karein */
  object-fit: cover;
  /* Isse image stretch nahi hogi aur container fill karegi */
  border-radius: 10px;
  /* Optional: Agar aap edges soft karna chahte hain */
  display: block;
}

/* Agar aap chahte hain ki image container ke beech mein rahe */
.contact-image-v25 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}


.main-office-contact {
  margin-top: -65px;
}



.about-gapping {
  margin-top: 50px;
}

.about-text-gaapping {
  margin-top: 10px;
}



/* --- Global Variables & Overrides --- */
:root {
  --innov-p-blue: #002244;
  /* Premium Deep Blue */
  --innov-s-blue: #004488;
  --innov-accent: #00a8ff;
  --innov-text-light: #f4f4f4;
  --innov-text-dark: #333333;
  --innov-glass: rgba(255, 255, 255, 0.04);
}

/* --- Section Styling --- */
.innov-glass-overlay-section {
  padding: 100px 0;
  /* Padding standardize ki hai */
  position: relative;
  background-color: #030a1c;
  /* Almost Black Blue */
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  color: var(--innov-text-light);
  /* Direct set text color on section */
}

/* Background Pattern (Subtle) */
.innov-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--innov-accent) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.1;
  pointer-events: none;
}

/* --- Dual Layout (Force Alignment Fix) --- */
.innov-dual-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  gap: 60px;
  /* Thoda gap badhaya hai clarity ke liye */
  align-items: center;
  /* LEFT AUR RIGHT KO EXACT MIDDLE MEIN ALIGN KAREGA */
  min-height: 500px;
  /* Ek minimum height force ki hai */
}

/* --- Left Column & Blended Content (Alignment & Spacing Fix) --- */
.innov-left-panel {
  position: relative;
  padding-right: 20px;
  text-align: left;
  /* Left align explicitly */
}

.innov-blended-content {
  opacity: 0;
  transform: translateY(30px);
  animation: innovFadeInUp 1s ease-out 0.2s forwards;
  /* Text entry */
}

.tag-floating {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--innov-glass);
  border: 1px solid rgba(0, 168, 255, 0.1);
  color: var(--innov-accent);
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 25px;
  /* Badge aur Title ke beech gap */
}

.title-fluid {
  font-size: 46px;
  font-weight: 800;
  color: var(--innov-text-light);
  line-height: 1.1;
  margin: 0 0 20px 0;
  /* Margin format standard ki hai */
}

.title-fluid span {
  color: var(--innov-accent);
}

.desc-fluid {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 40px 0;
  /* Margin standardize */
  max-width: 480px;
}

/* --- Right Column & Glass Form Card (Alignment & Spacing) --- */
.innov-right-panel {
  display: flex;
  justify-content: flex-end;
  /* Force card to right edge */
  align-items: center;
  /* Center vertically within right grid */
}

.innov-glass-form-card {
  background-color: var(--innov-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  color: #fff;

  /* Force Entry Animation */
  opacity: 0;
  transform: translateY(-50px);
  animation: innovSlideInTop 0.8s ease-out 0.5s forwards !important;
  /* Delay and force with !important */
}

/* --- Key Change in Form Styling to Match Dark Theme --- */
.innov-modern-form .innov-field-group {
  margin-bottom: 25px;
  text-align: left;
  /* Force left align on group content */
}

.innov-modern-form .innov-field-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--innov-accent);
}

.innov-modern-form .innov-field-group input,
.innov-modern-form .innov-field-group textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.03) !important;
  /* Ensure input background is dark and translucent */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  /* Settle dark border */
  border-radius: 14px;
  color: #fff !important;
  /* Whiten text in inputs */
  font-size: 15px;
  transition: all 0.3s ease;
}

.innov-modern-form .innov-field-group input:focus,
.innov-modern-form .innov-field-group textarea:focus {
  border-color: var(--innov-accent) !important;
  background-color: rgba(0, 168, 255, 0.05) !important;
  box-shadow: 0 0 15px rgba(0, 168, 255, 0.2);
  outline: none;
}

/* Fluid Submit Button */
.innov-fluid-btn {
  width: 100%;
  padding: 18px;
  background-color: var(--innov-p-blue);
  border: none;
  border-radius: 14px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innov-fluid-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  background-color: var(--innov-s-blue);
}

/* --- Native Animations Keyframes --- */
@keyframes innovFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes innovSlideInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

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

/* --- Tablet & Mobile (Fluid Responsive) --- */
@media (max-width: 991px) {
  .innov-dual-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
    margin: 0 20px;
    min-height: auto;
  }

  .innov-left-panel {
    padding: 0;
  }

  .innov-glass-form-card {
    max-width: 100%;
  }

  .title-fluid {
    font-size: 34px;
  }

  .desc-fluid {
    max-width: 100%;
    margin: 0 auto 30px;
  }
}

@media (max-width: 576px) {
  .innov-glass-form-card {
    padding: 30px;
  }

  .title-fluid {
    font-size: 28px;
  }
}





/* --- Global Overrides & Variables --- */
:root {
  --fluid-p-blue: #002244;
  --fluid-s-blue: #004488;
  --fluid-accent: #00a8ff;
  --fluid-text-light: #f4f4f4;
  --fluid-text-dark: #333333;
  --fluid-glass: rgba(255, 255, 255, 0.03);
}

/* --- Section Styling --- */
.fluid-growth-section {
  padding: 100px 0;
  background-color: #030a1c;
  /* Almost Black Blue */
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* --- Dynamic Wave Background (Native SVG Animation) --- */
.fluid-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.05) 0%, transparent 80%),
    linear-gradient(225deg, rgba(0, 51, 102, 0.03) 0%, transparent 80%);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* --- Container Fix for Mid-Page Alignment --- */
.fluid-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  z-index: 1;
}

/* --- Fluid Intro Header --- */
.fluid-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  opacity: 0;
  transform: translateY(40px);
  animation: innovFadeInUp 1s ease-out 0.2s forwards;
  /* Direct Animation */
}

.motion-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--fluid-glass);
  border: 1px solid rgba(0, 168, 255, 0.1);
  color: var(--fluid-accent);
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-main {
  font-size: 48px;
  font-weight: 800;
  color: var(--fluid-text-light);
  line-height: 1.1;
  margin: 20px 0;
}

.title-main span {
  color: var(--fluid-accent);
}

.subtitle-main {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* --- Dynamic Value Proposition Grid (Force Align) --- */
.value-prop-wrapper {
  margin-bottom: 80px;
}

.fluid-sec-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.fluid-sec-title span {
  color: var(--fluid-accent);
}

.fluid-grid-motion {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  /* Featured card is slightly larger */
  gap: 30px;
  align-items: center;
  /* Force elements to center horizontally in grid */
}

/* Motion Card Styling */
.fluid-motion-card {
  background-color: var(--fluid-glass);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;

  /* Direct Animations (Delay based stagger effect) */
  opacity: 0;
  transform: translateY(30px);
}

.prop-card:nth-child(1) {
  animation: innovFadeInUp 0.8s ease-out 0.4s forwards;
}

.prop-card:nth-child(2) {
  animation: innovFadeInUp 0.8s ease-out 0.6s forwards;
  background-color: rgba(255, 255, 255, 0.05);
}

.prop-card:nth-child(3) {
  animation: innovFadeInUp 0.8s ease-out 0.8s forwards;
}

.fluid-motion-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  background-color: rgba(0, 168, 255, 0.05);
  border-color: rgba(0, 168, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 168, 255, 0.2);
}

.fluid-icon-path {
  font-size: 36px;
  color: var(--fluid-accent);
  margin-bottom: 25px;
}

.fluid-motion-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.fluid-motion-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.fluid-btn-wrapper {
  margin-top: 25px;
}

.fluid-small-btn {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--fluid-p-blue);
  border-radius: 50px;
  color: white;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.fluid-small-btn:hover {
  background-color: var(--fluid-accent);
  color: white;
  text-decoration: none;
}

/* --- Animated Process Flow (Process Path) --- */
.process-flow-wrapper {
  margin-bottom: 80px;
}

.fluid-steps-path {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.path-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: var(--fluid-p-blue);
  border: 2px solid var(--fluid-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.path-step:hover .step-circle {
  transform: scale(1.15) rotate(15deg);
  background: var(--fluid-accent);
}

.step-content h5 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Process Flow path lines */
.path-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--fluid-accent) 0%, transparent 100%);
  opacity: 0.2;
  position: relative;
  z-index: 1;
}

/* --- Dynamic Success Carousel (Showcase Impact) --- */
.success-stories-wrapper {
  margin-bottom: 80px;
}

.fluid-story-carousel {
  display: flex;
  gap: 30px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.fluid-story-card {
  background-color: var(--fluid-glass);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  width: 320px;
  text-align: center;
  flex-shrink: 0;
  /* Important for horizontal flow */

  /* Direct Animations Stagger */
  opacity: 0;
  transform: translateX(40px);
}

.story-card:nth-child(1) {
  animation: innovSlideInTop 0.8s ease-out 1s forwards;
}

.story-card:nth-child(2) {
  animation: innovSlideInTop 0.8s ease-out 1.2s forwards;
}

.story-card:nth-child(3) {
  animation: innovSlideInTop 0.8s ease-out 1.4s forwards;
}

.client-info {
  font-size: 18px;
  font-weight: 700;
  color: var(--fluid-accent);
  margin-bottom: 15px;
}

.fluid-story-card p {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.growth-metric {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
}

/* --- Call to Action Button --- */
.fluid-cta-wrapper {
  text-align: center;
}

.fluid-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background-color: var(--fluid-p-blue);
  color: white;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
}

.fluid-main-btn span {
  z-index: 2;
}

.fluid-main-btn i {
  font-size: 20px;
  transition: 0.3s ease;
  z-index: 2;
}

/* Button hover fluid background */
.fluid-main-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 150%;
  height: 200%;
  background: linear-gradient(135deg, transparent 0%, var(--fluid-accent) 50%, transparent 100%);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0.2;
}

.fluid-main-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 168, 255, 0.3);
  text-decoration: none;
  color: white;
}

.fluid-main-btn:hover::after {
  left: 100%;
}

.fluid-main-btn:hover i {
  transform: rotate(15deg);
}

/* --- Native Animations Keyframes --- */
@keyframes innovFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes innovSlideInTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

/* --- Tablet & Mobile (Fluid Responsive) --- */
@media (max-width: 991px) {
  .fluid-grid-motion {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .featured-prop {
    background-color: rgba(255, 255, 255, 0.08) !important;
    order: -1;
    /* Mobile par featured upar aayega */
  }

  .title-main {
    font-size: 34px;
  }

  .innov-small-btn {
    display: inline-block;
  }

  /* Process Flow mobile structure change */
  .fluid-steps-path {
    grid-template-columns: 1fr;
    display: grid;
    max-width: 100%;
    gap: 30px;
  }

  .path-step {
    flex-direction: row;
    gap: 20px;
    text-align: left;
    justify-content: start;
  }

  .step-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 0;
  }

  .path-divider {
    display: none;
  }

  /* Carousel mobile scroll */
  .fluid-story-carousel {
    flex-direction: row;
    gap: 20px;
    justify-content: start;
    overflow-x: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .fluid-story-card {
    width: 260px;
  }
}

@media (max-width: 576px) {
  .title-main {
    font-size: 28px;
  }

  .motion-badge {
    font-size: 12px;
  }
}




/* --- Cyber Dark Theme Variables --- */
:root {
  --cyber-black: #05070a;
  --cyber-blue: #00a8ff;
  --cyber-glass: rgba(255, 255, 255, 0.05);
  --text-pure-white: #ffffff;
  --text-gray: #b0b3b8;
}

.cyber-business-section {
  padding: 100px 0;
  background-color: var(--cyber-black);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Background Ambient Light */
.cyber-ambient-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.15) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.cyber-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

/* Header */
.cyber-header {
  text-align: center;
  margin-bottom: 70px;
}

.cyber-badge {
  color: var(--cyber-blue);
  border: 1px solid var(--cyber-blue);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cyber-main-title {
  font-size: 50px;
  font-weight: 800;
  color: var(--text-pure-white);
  margin: 20px 0;
}

.cyber-main-title span {
  color: var(--cyber-blue);
}

.cyber-description {
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
}

/* Bento Grid */
.cyber-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 80px;
}

.cyber-card {
  background: var(--cyber-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cyber-card h3 {
  color: var(--text-pure-white);
  margin: 15px 0;
  font-size: 22px;
}

.cyber-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

.cyber-icon {
  font-size: 35px;
  color: var(--cyber-blue);
}

/* Hover Effects */
.cyber-card:hover {
  transform: translateY(-10px);
  border-color: var(--cyber-blue);
  box-shadow: 0 10px 40px rgba(0, 168, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

/* Animated Border Line for Large Card */
.cyber-border-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--cyber-blue);
  transition: 0.5s;
}

.cyber-card:hover .cyber-border-line {
  width: 100%;
}

/* Flow Process */
.cyber-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
}

.flow-item {
  text-align: center;
}

.flow-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--cyber-blue);
  opacity: 0.5;
}

.flow-item h4 {
  color: var(--text-pure-white);
  margin-top: 5px;
}

.flow-connector {
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 20px;
}

/* Stats */
.cyber-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent);
}

.stat-num {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--cyber-blue);
}

.stat-label {
  color: var(--text-pure-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
  .cyber-grid {
    grid-template-columns: 1fr;
  }

  .cyber-flow {
    flex-direction: column;
    gap: 30px;
  }

  .flow-connector {
    display: none;
  }

  .cyber-stats {
    grid-template-columns: 1fr;
  }

  .cyber-main-title {
    font-size: 32px;
  }
}



/* --- Premium Blog Variables --- */
:root {
  --dark-bg: #030816;
  --card-bg: #0a1128;
  --accent-blue: #00a8ff;
  --text-white: #ffffff;
  --text-muted: #a0aec0;
}

.innova-premium-blog {
  padding: 100px 0;
  background-color: var(--dark-bg);
  font-family: 'Poppins', sans-serif;
}

/* Header Styling */
.blog-header-box {
  text-align: center;
  margin-bottom: 70px;
}

.blog-tag {
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog-main-heading {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-white);
  margin: 15px 0;
}

.blog-main-heading span {
  color: var(--accent-blue);
}

.blog-sub-text {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Blog Grid */
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Card */
.blog-item {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  opacity: 0;
  /* JS handle karega */
}

.blog-item:hover {
  transform: translateY(-12px);
  border-color: var(--accent-blue);
  box-shadow: 0 20px 50px rgba(0, 168, 255, 0.2);
}

/* Image Wrapper */
.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-item:hover .blog-img-wrapper img {
  transform: scale(1.1);
}

.category-pill {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-blue);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* Info Panel */
.blog-info-panel {
  padding: 30px;
}

.meta-data {
  font-size: 13px;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Read More Button */
.read-more-btn {
  color: var(--text-white);
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.read-more-btn i {
  font-size: 12px;
  transition: 0.3s;
}

.read-more-btn:hover {
  color: var(--accent-blue);
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Scroll Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Tablet & Mobile */
@media (max-width: 991px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-main-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}


/* Container & Animation Safety */
.modern-product-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

/* Image zoom effect */
.product-image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.product-main-img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-image-wrapper:hover .product-main-img {
  transform: scale(1.04);
}

/* Typography */
.product-title {
  font-weight: 700;
  color: #222;
  font-size: 2.3rem;
}

.accent-bar {
  width: 60px;
  height: 5px;
  background: #007bff;
  border-radius: 3px;
  margin-top: 5px;
}

.text-lead {
  font-size: 1.15rem;
  color: #007bff;
  font-weight: 600;
  border-left: 4px solid #007bff;
  padding-left: 15px;
}

/* Table Styling */
.custom-spec-table {
  width: 100%;
  border: 1px solid #eee;
  margin-top: 15px;
}

.custom-spec-table thead {
  background: #f8f9fa;
}

.custom-spec-table th {
  color: #333;
  font-weight: 700;
  padding: 12px;
  border-bottom: 2px solid #007bff;
}

.custom-spec-table td {
  padding: 10px 12px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

/* SVG Icon & List Styling */
.section-subtitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature-list-modern {
  list-style: none;
  padding: 0;
}

.feature-list-modern li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #444;
}

.check-icon-svg {
  background: #e8f5e9;
  color: #2e7d32;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Urgent Box */
.urgent-contact-box {
  border: 1px solid #ffebeb;
  border-radius: 10px;
  overflow: hidden;
  background: #fffcfc;
}

.box-header {
  background: #d9534f;
  color: white;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1.1rem;
}

.box-body {
  padding: 25px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.contact-btn {
  text-decoration: none;
  background: white;
  color: #333;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.contact-btn:hover {
  border-color: #007bff;
  color: #007bff;
  background: #f0f7ff;
  transform: translateY(-2px);
}

.response-tag {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .product-title {
    font-size: 1.8rem;
  }

  .contact-grid {
    flex-direction: column;
  }
}



/* --- Product Card & Typography --- */
.modern-product-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.accent-bar {
    width: 60px;
    height: 4px;
    background: #007bff; /* Aapka primary color */
    border-radius: 2px;
    margin-bottom: 25px;
}

.text-lead {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    line-height: 1.4;
}

/* --- Table Styling --- */
.custom-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #eee;
}

.custom-spec-table th {
    background: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid #007bff;
}

.custom-spec-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

/* --- Application Boxes --- */
.application-box {
    background: #fdfdfd;
    border-left: 4px solid #007bff;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.benefit-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.benefit-tags li {
    background: #e7f1ff;
    color: #007bff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* --- Feature Lists --- */
.feature-list-modern {
    list-style: none;
    padding: 0;
}

.feature-list-modern li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.check-icon-svg {
    position: absolute;
    left: 0;
    top: 4px;
    color: #28a745;
}

/* --- Urgent Contact Box --- */
.urgent-contact-box {
    background: #fff4f4;
    border: 1px dashed #ff4d4d;
    border-radius: 10px;
    overflow: hidden;
}

.box-header {
    background: #ff4d4d;
    color: #fff;
    padding: 10px 20px;
    font-weight: 700;
}

.box-body {
    padding: 20px;
}

.contact-grid {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .modern-product-card {
        padding: 15px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        text-align: center;
    }
}

/* Jo page khula hai uska highlight - Heavy Intense Red */
.sidebar-services a.active-page {
    background: #8B0000 !important; /* Deep Dark Red */
    color: #ffffff !important;
    font-weight: 800 !important;
    border-left: 6px solid #ff0000; /* Bright Red edge */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

/* Agar koi product dropdown ke andar hai, toh uska main heading bhi red rahe */
.sidebar-services .active-parent {
    color: #ff3333 !important; 
    border-bottom: 1px solid #8B0000;
}

/* Dropdown Menu display control */
.sidebar-services .has-dropdown .submenu {
    display: none; 
}

.sidebar-services .has-dropdown.open > .submenu {
    display: block !important;
}

/* Submenu background thoda aur dark */
.sidebar-services .submenu {
    background: #121416 !important;
}