* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  margin: 0;
}

.page-1 {
  background: radial-gradient(
    circle,
    rgba(237, 218, 195, 1) 0%,
    rgba(213, 223, 242, 1) 84%
  );
}
html {
  overflow-x: hidden;
}
/* variable */
:root {
  --blue: #577abd;
  /* --primary-font:"Montserrat", sans-serif; */
  --black: black;
}

a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 16px;
}

h5 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 45px;
  font-weight: 600;
}

h2 {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

p {
  font-size: 15px;
}

/* padding */
.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.p-80 {
  padding-bottom: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

/* button css */
.primary-custome-button {
  background: var(--blue);
  color: #fff;
  border-radius: 22px;
  padding: 3px 15px;
}

/* banner css start */
.first-img img {
  height: 550px;
  width: auto;
}

.second-img img {
  height: 350px;
  width: auto;
}

.second-img {
  margin-left: -110px;
}

.banner-main-text h1 {
  padding: 15px 0px;
}

.banner-main-text p {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  padding-right: 30px;
}

.banner-main-text {
  padding-right: 30px;
  padding-left: 20px;
}

.banner-btn {
  margin-top: 40px;
}

.banner-btn a {
  background-color: var(--blue);
  padding: 10px 15px;
  border-radius: 5px;
}

.banner-img {
  position: relative;
}

.all-imag {
  position: absolute;
}

.all-imag img.third {
  position: relative;
  top: -235px;
  right: -72px;
}

.all-imag img.first {
  position: relative;
  top: -85px;
  left: -34px;
}

.all-imag img.second {
  position: relative;
  bottom: -204px;
  left: -85px;
}

.first,
.second {
  animation-name: MoveCircleSmall;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-delay: 0s;
  left: 0%;
  top: -50%;
  position: absolute;
  animation-iteration-count: infinite;
}

.third {
  animation-name: MoveCircleSmall;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-delay: 0s;
  /* left: 0%; */
  top: -50%;
  position: absolute;
  animation-iteration-count: infinite;
}

@keyframes MoveCircleSmall {
  0% {
    transform: rotate(0deg) translate(-10%) rotate(0deg);
    -webkit-transform: rotate(0deg) translate(-10%) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translate(-10%) rotate(-360deg);
    -webkit-transform: rotate(360deg) translate(-10%) rotate(-360deg);
  }
}

.section-title h2 span {
  color: var(--blue);
  font-weight: 600;
}

/* For typing text */
.container-2 {
  /* width: 460px; */
  overflow: hidden;
}

.container-2 .text {
  position: relative;
  color: #3f3f3f;
  font-size: 40px;
  font-weight: 800;
  overflow: hidden;
  font-family: "Caveat", cursive;
}

.container-2 .text.first-text {
  color: #fff;
  overflow: hidden;
}

.text.sec-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #dcdde3;
  border-left: 2px solid #3f3f3f;
  animation: animate 4s steps(12) infinite;
}

@keyframes animate {
  40%,
  60% {
    left: calc(100% + 4px);
  }

  100% {
    left: 0%;
  }
}

/* card section css */

.card-body {
  background-color: #fff;
  padding: 40px 42px;
  border-radius: 48px;
  box-shadow: 0px 4px 4px 0px #000000;
  margin: 0px 20px;
}

.card-body .icon {
  height: 120px;
  padding-bottom: 20px;
}

.card-content h5,
p {
  text-align: left;
}

.card-content h5 {
  font-size: 17px;
  color: #3f3f3f;
}

.card-content p {
  font-size: 14px;
}

.card-1 {
  box-shadow: 0px 20px 0px 0px #1992be;
}

.card-2 {
  box-shadow: 0px 20px 0px 0px #79bd9a;
}

.card-3 {
  box-shadow: 0px 20px 0px 0px #4d6596;
}

.card-body {
  /* margin:20px;
    padding: 3px;
    outline:2px solid #DDD;
    border:#a1a1a1; */
  float: left;
  -webkit-transition: margin 0.5s ease-out;
  -moz-transition: margin 0.5s ease-out;
  -o-transition: margin 0.5s ease-out;
}

.card-body:hover {
  cursor: pointer;
  margin-top: -20px;
}

.card-body:hover.icon {
  cursor: pointer;
  margin-top: -20px;
}

/* Video popup */
/* .video-section {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
} */

.video-wrapper {
  position: relative;
  cursor: pointer;
}

.video-wrapper img {
  width: 100%;
  display: block;
}

.play-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  opacity: 1;
  height: 70px;
  width: auto;
}

.play-icon:hover {
  opacity: 1;
}

.modal-body {
  position: relative;
  padding: 0;
}

.close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
  font-size: 1.5rem;
  color: white;
  opacity: 0.8;
}

.close:hover {
  opacity: 1;
}

.section-title h3 {
  font-size: 45px;
  font-weight: 700;
  color: #000;
  margin-bottom: 45px;
}

.section-title h5 span {
  font-weight: 400;
}

/* project tab css start */
#featured {
  background: rgb(87, 122, 189);
  background: linear-gradient(
    360deg,
    rgb(58 103 187 / 30%) 0%,
    rgba(221, 221, 226, 1) 52%
  );
}

#project-tab .nav-tabs .nav-link.active:before {
  opacity: 1 !important;
  height: 20px !important;
  width: 20px !important;
  background: red !important;
  /* border-radius: 50%!important; */
  position: absolute !important;
  /* top: 96%!important; */
}

.nav-tabs .nav-link.active {
  color: #fff !important;
  background-color: #577abd;
  border-radius: 22px;
}

#project-tab .nav-tabs .nav-link:hover {
  border: none !important;
}

.nav-tabs .nav-link {
  color: #000 !important;
  font-weight: 500 !important;
}

#project-tab .nav-tabs {
  position: relative;
  left: 25%;
  border-bottom: 0px !important;
}

.project-tab .nav-tabs .nav-link {
  padding: 0px !important;
}

.project-box {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  border-radius: 20px 20px 0px 0px;
  color: white;
  /* Adjust text color for better readability on the background image */
  position: relative;
}

.project-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 033876;
  /* Overlay for better text readability */
  border-radius: 5px;
  z-index: 1;
}

.project-box > * {
  position: relative;
  z-index: 2;
  border-radius: 22px;
}

.project-background {
  /*background-image: url('../../images/vaachi.png') !important;*/
  background-position: center;
  height: 350px;
  background-size: cover;

  /* background-color: red; */
}

.cassa {
  background-image: url("../../images/cassa.png") !important;
  background-position: center;
  height: 350px;
  background-size: cover;
  /* background-color: red; */
}

.project-content {
  position: absolute;
  bottom: 15%;
  padding: 0px 40px;
}

.project-btn {
  position: absolute;
  bottom: -10%;
  left: 45%;
}

.project-btn .p-btn {
  border-radius: 50%;
  background-color: #577abd;
  height: 81px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

#featured h5 {
  padding-bottom: 30px;
}

/*  project view gallery */
/******************************************************************************/
#project-view-sec-2 {
  /*background-image: url('../../images/project-bg.jpg') !important;*/
  background-size: cover;
  height: auto;
  background-repeat: no-repeat;
  /* background-color: red; */
  display: flex;
  height: 540px;
  padding: 50px 0px;
}

.t-img {
  height: 70px;
  width: auto;
  opacity: 0.5;
}

#project-view-sec-2 .tab {
  float: left;
  /* border: 1px solid #ccc; */
  /* background-color: #f1f1f1; */
  width: 10%;
  /* height: 300px; */
  position: relative;
  top: 25%;
}

/* Style the buttons inside the tab */
#project-view-sec-2 .tab button {
  display: block;
  background-color: inherit;
  color: black;
  margin-bottom: 20px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
#project-view-sec-2 .tab button:hover {
  background-color: transparent;
}

/* Create an active/current "tab button" class */
#project-view-sec-2 .tab button.active img {
  /* border: 1px solid #fff; */
  border-radius: 7px;
  padding: 2px;
  opacity: 1;
}

/* Style the tab content */
#project-view-sec-2 .tabcontent {
  display: none;
  float: left;
  padding: 0px 12px;
  width: 85%;
  border-left: none;
  height: 300px;
}

#content-sec {
  margin-top: 100px;
}

#content-sec p {
  font-size: 17px;
  font-weight: 500;
}

/* Case studies css start */
#case-studies .tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 300px;
}

/* Style the buttons inside the tab */
#case-studies .tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
/* #case-studies .tab button.active {
    background-color: #ccc;
  } */

/* Style the tab content */
#case-studies .tabcontent {
  float: left;
  padding: 0px 12px;
  border-bottom: 1px solid #ccc;
  width: 70%;
  border-left: none;
  height: 300px;
}

/* Case studies  */
.custom-nav-tabs .nav-link {
  /* border: 1px solid transparent; */
  border-right: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #fff;
  border: 0px 0px 0px !important;
  position: relative;
}

.custom-nav-tabs .nav-link.active {
  border-color: #fff !important;
  border-right: none;
  border-bottom: 1px solid;
  /* border-image: linear-gradient(to bottom, #34e89e, #0f3443) 1; */
  background-color: transparent;
  border-top: 0px;
  border-left: 0px;
  border-radius: 0px;
}

.custom-tab:focus {
  outline: none;
}

.custom-padding-left {
  padding-left: 120px;
  background-color: #1a2943;
}

.pl-80 {
  padding-left: 40px;
}

.s-tile h3 {
  font-weight: 600;
}

.s-tile h3 span {
  font-weight: 300;
}

.nav-tabs .nav-link:hover {
  border-left: none !important;
  border-top: none !important;
  border-right: none !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.custom-nav-tabs {
  position: relative;
  border-bottom: 0px;
}

.custom-nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 95%;
  transform: translateX(-50%);
  width: 38%;
  height: 4px;
  background: linear-gradient(to right, #34e89e, #0f3443);
  bottom: -3px;
}

.custom-tab .logo-img img {
  height: 40px;
}

.bg-gredient {
  /* background-image: linear-gradient(to bottom, #e7e7e7, #d5d5e0, #c1c4da, #aab4d5, #8fa5cf); */

  background-image: linear-gradient(
    to top,
    #fff4f49c,
    #d5d5e063,
    #c1c4da2e,
    #acb5d363,
    #b6c1d75c
  );
}

.in-logo img {
  height: 60px;
}

.divider {
  height: 2px;
  width: 100%;
  background-color: #1a2943;
}

.p-details {
  color: #262529;
  font-size: 14px;
  font-weight: 600;
}

.percentage {
  font-size: 90px;
  font-weight: 800;
  background: linear-gradient(to bottom, #0051af, #128540);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.percentage span {
  font-size: 55px;
  font-weight: 900;
  margin-left: -15px;
}

.percent-text {
  font-size: 13px;
  width: 60%;
  color: #000;
}

.project-viw-btn a {
  background-color: #577abd;
  padding: 12px 15px;
  border-radius: 7px;
  color: #fff;
}

.project-viw-btn a span {
  border: 1px solid #fff;
  padding: 3px 6px 6px 4px;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 16px;
}

.tab-content {
  position: relative;
}

.bg-logo img {
  opacity: 0.4;
  position: absolute;
  left: 17%;
  top: 23%;
  height: 171px;
  /* z-index: -99; */
}

.pt-80 {
  padding-top: 80px;
}

/* help section */
#help {
  background-color: #ffffff;
}

.help-box {
  background-color: #fffdf5;
  padding: 30px 35px;
  border-radius: 22px;
  margin-bottom: 20px;
  border: 1px solid #000;
}

.help-box:hover {
  background-color: #ffeca7;
  transition: 0.5s;
}

.help-box p {
  margin-bottom: 0px !important;
  font-weight: bold;
}

.sec-simple-title-2 h2 {
  font-weight: 700;
  font-size: 28px;
  color: #323232;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

/* Counter css start */
#counter {
  background-color: #acc6f700 !important;
}

.sec-simple-title h2 span {
  font-family: "Caveat", cursive;
}

.featured-text {
  position: relative;
}

.featured-text svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 40px);
  transform: translate(-50%, -50%);
}

.featured-text svg path {
  stroke: #577abd;
  stroke-width: 6px;
  fill: transparent;
}

.sec-simple-title h2 {
  line-height: 2;
}

/* .sec-simple-title span::after{
    content:url('../../images/Vector\ 9.png');
    width: 60%;
} */
/* .stats .counter {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(to bottom, #0051AF, #128540);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
.stat span {
  font-size: 36px;
  font-weight: 800;
  /* background: linear-gradient(to bottom, #0051AF, #128540); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  color: #000;
}

.stat p {
  font-size: 16px;
  margin-bottom: 0;
  text-align: center;
}

/* Counter sec */
#counter-sec {
  margin-top: -80px;
  z-index: 9999;
  position: relative;
  margin-bottom: 50px;
}

.counter-bg {
  background: #f7f7f7 !important;
  padding: 60px 0px;
  border-radius: 50px;
  margin-bottom: 50px;
}

#video {
  position: relative;
  z-index: -99;
}

/* Testimonial section */
#testimonial {
  background-image: url("../../images/testimonial-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
}

.styled-div {
  position: relative;
  z-index: 1;
  /* Make sure the main content is above the pseudo-elements */
  padding: 20px;
  /* background-color: #fff; Background color of the main div */
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.styled-div::before,
.styled-div::after {
  content: "";
  position: absolute;
  z-index: -1;
  /* Make sure the pseudo-elements are behind the main content */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  /* Match the border-radius of the main div */
}

.styled-div::before {
  /* backgroun?d-color: #f0f0f0; Background color before the main div */
  transform: translate(-10px, -10px);
  /* Position adjustment */
}

.styled-div::after {
  background-color: #012e6a;
  /* Background color after the main div */
  transform: translate(-27px, 10px);
  width: 89%;
}

.testimonial-title {
  background-color: #fff;
  /* padding: 50px 0px 0px 20px; */
}

.custom-nav {
  position: absolute;
  top: 99%;
  transform: translateY(-50%);
  display: flex;
}

.custom-nav .owl-prev,
.custom-nav .owl-next {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 9px;
  font-size: 25px;
  margin: 5px 6px;
  cursor: pointer;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 20px;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.test-con h3 {
  font-size: 23px;
  font-weight: 600;
}

.test-con p {
  font-size: 14px;
  font-weight: 300;
}

.testimonial-card h5 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-card p {
  font-size: 14px;
}

/* Client section css start */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel {
  display: flex;
  animation: scroll-right 30s linear infinite;
}

.carousel.reverse {
  animation: scroll-left 30s linear infinite;
}

.carousel:hover {
  animation-play-state: paused;
}

.carousel .item {
  display: inline-block;
  padding: 20px;
}

.carousel .item img {
  width: 160px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.carousel .item img:hover {
  transform: scale(1.1);
}

@keyframes scroll-right {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(calc(-100% + 100vw));
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(calc(100% - 100vw));
  }
}

/* Footer styles */
.footer {
  background: linear-gradient(135deg, #253364, #313a5b);
  color: white;
  margin-bottom: -20px;
}

.footer h5 {
  margin-bottom: 1.5rem;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  position: relative;
  padding-left: 20px;
  /* Space for the caret icon */
  font-size: 15px;
  padding-bottom: 6px;
}

.footer .list-unstyled a::before {
  content: "\f0da";
  /* FontAwesome caret-right icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s, transform 0.3s;
}

.footer a:hover {
  color: #ffd700;
  transform: scale(1.1);
}

.footer a:hover::before {
  color: #ffd700;
  transform: scale(1.1) translateY(-50%);
}

.footer p,
.footer ul,
.footer li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul {
  padding-left: 0;
  text-align: left;
}

.footer ul li {
  display: flex;
  padding-bottom: 6px;
}

.f-con ul li a {
  padding-left: 0px;
}

.f-con ul li span {
  padding-right: 15px;
}

.footer .text-center {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .text-md-left {
  text-align: left !important;
}

.footer .text-md-right {
  text-align: right !important;
}

.footer .fa-facebook-f,
.footer .fa-twitter,
.footer .fa-linkedin-in,
.footer .fa-instagram {
  transition: transform 0.3s;
}

.footer .fa-facebook-f:hover,
.footer .fa-twitter:hover,
.footer .fa-linkedin-in:hover,
.footer .fa-instagram:hover {
  transform: scale(1.2);
}

.footer-title {
  text-align: left;
  font-size: 17px;
}

@media (max-width: 767px) {
  .footer .col-md-3 {
    margin-bottom: 1.5rem;
  }

  .footer .text-md-left,
  .footer .text-md-right {
    text-align: center !important;
  }
}

/* -------------------Home Page Css End-------------------- */

/* -------------------About Us Page Css Start-------------------- */
.about-header-area {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  /* padding: 160px 0 80px; */
}

.about-header-area .elements1 {
  position: absolute;
  z-index: -1;
}

.aniamtion-key-1 {
  position: relative;
  animation-name: animation-1;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.about-header-area .star2 {
  position: absolute;
}

.star2 {
  right: 0;
  z-index: -1;
}

.keyframe5 {
  position: relative;
  animation-name: animation-7;
  animation-duration: 90s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

/* about us */
.about1-section-area .about-images {
  position: relative;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.about1-section-area .about-images .star1 {
  height: 78px;
  width: 78px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.about1-section-area .about-auhtor-images {
  position: relative;
  z-index: 1;
  top: 160px;
}

.about1-section-area .about-content-area .arrow-circle {
  background: #e4e0f9;
  border-radius: 50%;
  display: inline-block;
  padding: 10px;
  position: relative;
  margin-bottom: 32px;
}

.about1-section-area .about-content-area .arrow-circle .arrow {
  position: absolute;
  left: 40%;
  right: 50%;
  top: 40%;
  bottom: 50%;
}

.about1-section-area .about-auhtor-images .elements5 {
  width: 205px;
  height: 141px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 4px;
  position: absolute;
  top: -100px;
  right: -50px;
  z-index: -1;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.about1-section-area .about-auhtor-images img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100px;
}

.rotate-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.keyframe5 {
  width: auto;
  /* Adjust size as needed */
  /* animation: rotate 4s linear infinite; */
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* abouts end */
#about-client {
  background: linear-gradient(135deg, #6e8efb, #a777e3);
}

/* Roadmap */
.step {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.icon-2 {
  font-size: 40px;
  color: #fff;
  background: linear-gradient(45deg, #a13537, #313a5b);
  height: 106px;
  padding: 20px;
  border-radius: 50%;
  animation: bounce 1.5s infinite;
  width: 111px;
  position: relative;
  left: 20%;
}

.step-title {
  font-weight: bold;
  margin-top: 10px;
}

.step-description {
  font-size: 14px;
  color: #666;
  text-align: center;
}

.step.up {
  transform: translateY(-30px);
}

.step.down {
  transform: translateY(30px);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

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

.line {
  position: absolute;
  height: 2px;
  width: 80px;
  background: transparent;
  border-top: 2px dashed #ddd;
}

.step.down .line {
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}

.step.up .line {
  bottom: 50%;
  left: 100%;
  transform: translateY(50%);
}

.step:last-child .line {
  display: none;
}

@media (max-width: 768px) {
  .line {
    display: none;
  }

  .step {
    margin-bottom: 30px;
  }

  .step-title,
  .step-description {
    font-size: 16px;
  }

  .icon {
    font-size: 30px;
  }

  .step.up,
  .step.down {
    transform: translateY(0);
  }
}

/* Why section */
.why-title {
  text-align: left;
}

.about__content__wrapper__list2__item__icon i {
  height: 60px;
  width: 60px;
  text-align: center;
  display: block;
  border-radius: 50%;
  line-height: 66px;
  transform: translateX(-10px);
  color: #fff;
  transition: var(--transition);
  font-size: 30px;
}

.about__content__wrapper__list2__item__icon.bg-one::after {
  border-color: #7c5ef4;
}

.about__content__wrapper__list2__item__icon.bg-two::after {
  border-color: #ffb88c;
}

.about__content__wrapper__list2__item__icon.bg-three::after {
  border-color: #fe5038;
}

.about__content__wrapper__list2__item__icon.bg-four::after {
  border-color: #54ece8;
}

.about__content__wrapper__list2__item__icon::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  left: 0;
  top: 0;
  z-index: -1;
}

.about__content__wrapper__list2 {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-left: 0px;
  margin-left: 0px;
}

.about__content__wrapper__list2__item {
  width: 47%;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
}

.about__content__wrapper__list2__item__icon {
  margin-bottom: 7px;
  position: relative;
  z-index: 1;
  max-width: max-content;
  border-radius: 50%;
  background: none;
  transition: var(--transition);
}

.fa-check:before {
  content: "\f00c";
}

.bg-1 {
  background-color: #7c5ef4;
}

.bg-2 {
  background-color: #ffb88c;
}

.bg-3 {
  background-color: #fe5038;
}

.bg-4 {
  background-color: #54ece8;
}

.desc {
  font-size: 18px;
  font-weight: 500;
}

/* Team section css */
.team-member {
  background: #fff;
  border-radius: 30px 30px 0px 30px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  /* transition: transform 0.3s, box-shadow 0.3s; */
  perspective: 1000px;
  position: relative;
}

.team-member:hover {
  transform: scale(1.05) rotateY(5deg);
  /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); */
}

.team-member-img {
  position: relative;
}

.team-member-img img {
  width: 100%;
  transition: transform 0.9s, filter 0.9s;
}

.team-member:hover .team-member-img {
  transform: perspective(1000px) rotateY(15deg);
  transition: 0.5s;
}

.team-member-info {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  text-align: center;
  transition: background-color 0.5s;
}

.team-member-info h4,
.team-member-info p {
  margin: 0;
}

.team-member:hover .team-member-info {
  background-color: rgba(0, 0, 0, 1);
  /* background: linear-gradient(90deg, rgba(112, 219, 255, .35) 0%, rgba(221, 152, 255, .35) 100%), */
  transition: 0.5s;
}

.team-member-img::after {
  content: "";
  width: 100%;
  height: 70%;
  background: linear-gradient(90deg, #70dbff 0%, #dd98ff 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 30px 30px 0px 30px;
  transition: 400ms ease-in-out;
}

.team-member-img:hover::after {
  content: "";
  width: 100%;
  height: 60%;
  background: linear-gradient(90deg, #70dbff 0%, #dd98ff 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 50px 50px 0px 50px;
  transition: 400ms ease-in-out;
}

.team-member-info h5 {
  font-size: 17px;
  line-height: 0;
  padding-top: 5px;
  font-weight: 600;
}

.team-member-info p {
  font-family: "Caveat", cursive;
}

.team-member-img:hover h5 {
  font-family: "Caveat", cursive;
  transition: 0.9s;
}

/* -------------------About Us Page Css End-------------------- */

/*--------------------Testimoani Css Start----------------------*/

.masonry {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.masonry-item {
  flex: 1 1 calc(33.333% - 1rem);
  display: flex;
  transition: box-shadow 0.3s;
}

.masonry-item:hover {
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 15px 10px rgba(255, 105, 135, 0.5);  */
  box-shadow: 0 4px 8px rgb(235 218 198), 0 0 15px 10px rgb(213 223 242);
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #577abd;
}

.author-info h5 {
  margin: 0;
  font-size: 1.1em;
  text-align: left;
}

.author-info p {
  margin: 0;
  font-size: 0.9em;
  color: #777;
  font-family: "Caveat", cursive;
}

/* Responsive Design */
@media (max-width: 767px) {
  .masonry-item {
    flex: 1 1 calc(100% - 1rem);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .masonry-item {
    flex: 1 1 calc(50% - 1rem);
  }
}

/*------------------------ Testimonial page css End---------------------- */

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.blog-category,
.blog-date {
  font-size: 0.9rem;
  font-weight: bold;
}

.blog-card-body {
  padding: 20px;
}

.blog-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.blog-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-category,
.blog-date {
  background: #000;
  padding: 5px 20px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: normal;
}

.blog-btn {
  color: var(--blue);
}

.blog-btn span {
  padding-left: 10px;
  color: var(--blue);
}

.blog-btn:hover {
  background: var(--blue);
  padding: 5px 10px;
}

/* Responsive Design */
@media (max-width: 767px) {
  .blog-card {
    margin-bottom: 20px;
  }
}

/* Blog page End */

/* Contact page css Start------------------------------ */
.contact-form,
.map-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form:hover,
.map-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-title {
  background: linear-gradient(
    to right,
    rgba(240, 244, 253, 1),
    rgba(255, 255, 255, 0)
  );
  padding: 10px 15px;
  border-radius: 22px;
  color: #074eb9;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  width: fit-content;
}

.contact-title span {
  padding-right: 10px;
}

.contact-card h2 {
  font-size: 46px;
  font-weight: 700;
  color: #252840;
}

.con_sec h2 {
  font-size: 30px;
  font-weight: 700;
  color: #252840;
  margin-bottom: 30px;
}

.contact-card p {
  margin: 30px 0px;
}

.c-btn {
  margin-top: 50px;
}

.c-btn a {
  background-image: linear-gradient(to right, #0b58cb, #e94037, #0b58cb);
  padding: 15px 30px;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
}

.address-sec {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin-bottom: 30px;
}

.add-sec h5 {
  font-size: 16px;
  color: #074eb9;
}

.add-sec p {
  font-size: 13px;
  color: #000;
}

.phone a {
  font-size: 18px;
  color: #0051af;
}

.phone a span {
  padding-right: 10px;
}

.phone a span i {
  color: #0051af;
}

/*  */

.list-unstyled li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #555;
}

.social-icons a {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: #007bff;
}

.social-icons a:hover {
  color: #0056b3;
}

#contact {
  background-color: #f0f2f8;
}

.con_sec {
  background-color: #fff;
  padding: 40px;
  width: 450px;
}

.con_sec h4 {
  font-size: 20px;
  font-weight: 700;
  color: #252840;
  margin-top: 40px;
}

.list-unstyled li {
  color: #000;
}

.list-unstyled li span {
  padding-right: 10px;
}

.list-unstyled li span i {
  color: #0056b3;
}

.social-icons i {
  font-size: 18px;
}

.form-sec .form-group .form-control {
  border-radius: 0px;
  background: transparent;
  padding: 0;
  height: 50px;
  border: 0px;
  border-bottom: 1px solid #000;
}

.form-sec .form-group .form-control::placeholder {
  font-size: 14px;
}

.form-sec .form-group .form-control:focus {
  box-shadow: none !important;
  border-bottom: 1px solid #dc3545;
  transition: 0.5;
}

.f-control-2 {
  height: 100px !important;
}

.con_sec-1 h2 {
  font-size: 30px;
  font-weight: 700;
  color: #252840;
  margin-bottom: 10px;
}

.send-btn {
  background-color: var(--blue);
  padding: 15px 30px;
  position: relative;
  left: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
}

.send-btn:hover {
  border-radius: 30px;
  transition: 0.1;
  background-image: linear-gradient(to right, #324b70, #d36660, #2e476c);
  color: #fff;
}

.shape-image-animation svg path {
  width: 100%;
}

.shape-image-animation svg {
  height: 100%;
  width: 100%;
}

/* --------------------------Contact us page css End------------------------- */

/* --------------------------Blog Page Css Start------------------------------ */
.content {
  padding-top: 20px;
}

.latest-blogs {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.blog-post {
  margin-bottom: 30px;
}

.blog-post img {
  max-width: 100%;
  height: auto;
}

.latest-blog-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.latest-blog-item img {
  max-width: 80px;
  height: auto;
  margin-right: 10px;
}

.latest-blog-item .blog-info {
  flex: 1;
}

.b-date a {
  font-size: 14px;
}

.b-date,
.b-date span {
  padding-right: 10px;
  color: var(--blue);
  font-size: 12px;
}

.b-title {
  font-size: 30px;
  font-weight: 700;
  color: #252840;
  margin-top: 20px;
}

.latest-blogs {
  background-color: #f0f2f8;
  padding: 20px 20px 20px 20px;
}

.latest-blog-item {
  background-color: #fff;
  padding-top: 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.latest-blog-item:hover {
  border-bottom: 1px solid #324b70;
}

/* --------------------------Blog Page Css End------------------------------ */

/* Services page css start */
/* SEO page css start */
/* Gradient background animation */
.gradient-background {
  background: radial-gradient(
    circle,
    rgba(237, 218, 195, 1) 0%,
    rgba(213, 223, 242, 1) 90%
  );
  /* background: linear-gradient(90deg, #103a67, #a13537); */
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
  height: auto;
  /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

/* Breadcrumb styles */
/* .breadcrumb {
    position: absolute;
    top: 20px;
    left: 40px;
    background: rgba(255, 255, 255, 0.8);

    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: for a subtle shadow 
} */

.breadcrumb-item a {
  color: #10263f;
  font-weight: 500;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.page-content h1 {
  font-size: 50px;
  font-weight: 700;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: #000;
  content: var(--bs-breadcrumb-divider, ">");
}

.p-img {
  animation: bounce 5s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    /* Start and end at original position */
  }

  40% {
    transform: translateY(-30px);
    /* Bounce up */
  }

  60% {
    transform: translateY(-15px);
    /* Bounce slightly down */
  }
}

.s-point ul {
  padding-left: 0px !important;
}

.s-point ul li::before {
  content: "\f1d8";
  font-family: "Font Awesome 6 Free";
  padding-right: 20px;
  color: #577abd;
}

.s-point ul li {
  list-style: none;
  font-weight: 500;
  color: #333;
  padding-bottom: 10px;
}

.get-btn {
  margin-top: 30px;
}

.get-btn a {
  font-size: 17px;
  color: #fff;
  background-color: var(--blue);
  padding: 15px 30px;
  border-radius: 22px;
}

/* streteiges */
.strategies .nav-tabs {
  display: flex;
  justify-content: space-around;
}

.strategies .nav-tabs .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #495057;
  border: none;
  border-radius: 0;
  margin-bottom: -1px;
  position: relative;
}

.strategies .nav-tabs .nav-link .fas {
  font-size: 40px;
  margin-bottom: 10px;
  color: #071633;
}

.strategies .nav-tabs .nav-link .tab-name {
  font-size: 18px;
  color: #071633;
}

.strategies .nav-tabs .nav-link.active {
  background: #fff;
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 20px 20px 0px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  margin-bottom: -20px;
}

.strategies .nav-tabs .nav-link.active .tab-name {
  background: linear-gradient(to bottom, #0051af, #128540);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 600;
}

.strategies .nav-tabs .nav-link.active .fas {
  background: linear-gradient(to bottom, #0051af, #128540);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.strategies .nav-tabs .nav-link.active::after {
  content: "";
  /* Empty content for pseudo-element */
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #00d2ff);
  /* Gradient border */
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.strategies .tab-content {
  padding: 20px;
  /* Padding inside tab content */
}

.strategies .tab-pane {
  position: relative;
}

.strategies-head {
  background-color: #eef5fd;
}

.content h2 {
  margin-bottom: 15px;
}

.content p {
  font-size: 17px;
}

.s-tab-img {
  position: relative;
  display: inline-block;
  /* or block depending on your layout */
}

.s-tab-img::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: -20px;
  width: 100%;
  /* height: 100%; */
  background: linear-gradient(90deg, #007bff, #00d2ff);
  /* Example gradient */
  z-index: 0;
  pointer-events: none;
  /* Ensures the gradient doesn't interfere with interactions */
}

.s-tab-img img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
}

/*  */
/* .client-bg {
    background: radial-gradient(circle, rgba(237, 218, 195, 1) 0%, rgba(213, 223, 242, 1) 84%);
    padding: 30px 0px;
} */

/* 3d text */
.request {
  background-color: #f5f5f5a6;
}
.text-3d h2 {
  font-size: 120px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 #fff, 3px 3px 0 #fff, 4px 4px 0 #fff,
    5px 5px 10px rgb(145 142 142 / 50%);
  transform: perspective(500px) rotateX(0deg);
  display: inline-block;
}
.request-content h2 {
  font-weight: 700;
  font-size: 45px;
}
.request-btn {
  margin-top: 50px;
}
.request-btn a {
  padding: 12px 24px; /* Adjust padding as needed */
  font-size: 16px; /* Font size for the button text */
  color: #577abd; /* Default text color, same as border color on hover */
  background-color: transparent; /* Transparent background */
  border: 2px solid #577abd; /* Transparent border to start */
  text-decoration: none; /* Remove underline */
  font-weight: bold; /* Make text bold */
  border-radius: 30px;
}
.request-btn a:hover {
  background-color: #577abd;
  color: #fff;
  transition: 0.5s;
}
/* faq */
.custom-faq-section {
  padding: 60px 0;
}
.custom-faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.custom-faq-card {
  border: 1px solid #e0e0e0;
  border-radius: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.custom-faq-card-header {
  background-color: #f7f7f7;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 22px !important;
}
.custom-faq-card-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.custom-faq-card-body {
  padding: 15px;
}
.custom-btn-link {
  color: #577abd;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
}
.custom-btn-link:hover {
  color: #0056b3;
  text-decoration: none;
}
.custom-faq-section {
  background: radial-gradient(
    circle,
    rgba(237, 218, 195, 1) 0%,
    rgba(213, 223, 242, 1) 84%
  );
}
/* s-porfolio */
.project-view-sec {
  /* background-image: url('../../images/project-bg.jpg') !important; */
  /* background-size: cover; */
  /* height: auto; */
  /* background-repeat: no-repeat; */
  background-color: rgb(34, 33, 33);
  /* display: flex; */
  /* height: 540px;
    padding: 50px 0px; */
}
#project1Details #project-view-sec-2 {
  background: transparent !important;
  padding-top: 0px;
}
.full-screen-collapse {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
  overflow-y: auto;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
/* Logo Portfolio */
/* Bootstrap styling */
.logo-portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  margin-left: 20px;
  height: 116px;
  width: auto;
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 7px;
  background: radial-gradient(
    circle,
    rgba(237, 218, 195, 1) 0%,
    rgba(213, 223, 242, 1) 84%
  );
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.logo-portfolio-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.logo-portfolio-item:hover .logo-portfolio-title {
  opacity: 1; /* Show title on hover */
}

/* Custom styling */
.bottom-modal .modal-dialog.modal-bottom {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
}

.modal-body {
  text-align: center;
}
.modal-content {
  background: radial-gradient(
    circle,
    rgba(237, 218, 195, 1) 0%,
    rgba(213, 223, 242, 1) 84%
  ) !important;
  border: none !important;
  padding: 10px;
}
.modal-body img {
  max-width: 100%;
  height: auto;
}
