html {
  font-size: 60%; }
  

@media screen and (max-width: 991px) {
  html {
    font-size: 55%; } }

@media screen and (max-width: 767px) {
  html {
    font-size: 50%; } }

body {
  font-size: 2rem;
  font-family: "Barlow Condensed", sans-serif;
  background-color: #fff;
  transition: background-color 1s;
  scroll-behavior: smooth;
  color: #13144d;
  }
 /* Styles for the scrollbar */
 ::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Light gray track */
}
::-webkit-scrollbar-thumb {
  background: #13144d; /* Gray thumb */
  border-radius: 2px;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  z-index: 2;
  pointer-events: none;
}
/* For mobile */
@media (max-width: 768px) {
  .cursor {
    display: none; /* Hide cursor on mobile */
  }
}
.cursor div {
  position: absolute;
  display: grid;
  place-items: center;
}
.cursor div div {
  border: 2px solid rgb(26, 206, 101);
  border-radius: 50%;
  animation: pulse 3.5s linear infinite;
  box-shadow: 0 0 50px 4px #c396ee6e;
}
.cursor div:nth-child(1),
.cursor div:nth-child(2) {
  width: 100%;
  height: 100%;
}
.cursor div:nth-child(1) {
  transition: transform 0.2s ease-out;
}
.cursor div:nth-child(2) {
  transition: transform 0.1s ease-out;
}
.cursor div:nth-child(2) div {
  background: blue;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

section {
  padding: 7rem 0; }

.container {
  max-width: 1920px !important;
  margin: 0 auto !important;
  padding: 0 3% !important; }

h1 {
  font-size: 8rem;
  font-weight: 700;
  text-transform: capitalize; }

h2 {
  font-size: 5rem;
  font-weight: 700;
  font-family:"Poppins", sans-serif;
  margin-bottom: 5rem; }

h3 {
  font-size: 2.4rem;
  font-weight: 700; }

ul.tags {
  display: flex;
  list-style: none;
  flex-wrap: wrap; }

  ul.tags li {
    padding: 0.5rem 1rem;
    cursor: pointer;
    background-color: hsla(0,0%,100%,.26);
    border-radius: 4px;
    margin: 0.5rem; }
    ul.tags li:hover {
      cursor: pointer;
      color: #FFF;
      background: #1b2935;
    }

  .float{
	position:fixed;
	width:100px;
	height:100px;
	bottom:50px;
	right:50px;
	color:#4dc85a;
	border-radius:70px;
	text-align:center;
  font-size:50px;
  z-index:100;
}
.float:hover {
  color:#4dc85a;
}

.my-float {
  margin-top: 80px;
  margin-left: 80px;
}
a {
  text-decoration: none;
  color: inherit;
}

.cta {
  position: relative;
  margin: auto;
  padding: 11px 25px;
  transition: all 0.2s ease;
}
.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 29px;
  background: #ffffff82;
  width: 58px;
  height: 56px;
  transition: all 0.3s ease;
}
.cta span {
  position: relative;
  font-size: 20px;
  line-height: 18px;
  font-weight: 1000;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle;
  font-family: 'Font Awesome 5 Free';
  color: #13144d;
}
.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #ffffff;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}
.cta:hover:before {
  width: 100%;
  background: #13144d; 
}
.cta:hover span{
  color: white;
}
.cta:hover svg {  
  transform: translateX(0);
}
.cta:active {
  transform: scale(0.96);
}

.btn {
  text-decoration: none;
  padding: 1rem 4rem;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 10rem;
  transition: all 0.5s; }

.btn-primary {
  background-color: #02e3a7 !important;
  border: 1px solid #02e3a7 !important; }
  .btn-primary:hover {
    filter: brightness(90%); }

.btn-primary-outline {
  color: #02e3a7;
  border: 1px solid #02e3a7; }

.btn-primary-outline:hover {
  color: #fff;
  background-color: #02e3a7; }

.btn-secondary-outline {
  color: white;
  background-color: #13144d;
  border: 1px solid #13144d; }

.btn-secondary-outline:hover {
  color: #fff;
  background-color: #02e3a7; }

.btn-white {
  background-color: #13144d;
  color: #ffffff;
  box-shadow: 0 0 4rem rgba(19, 20, 77, 0.2); }

.btn-white:hover {
  background-color: #ffffff;
  color: #13144d; }

.form-floating {
  margin-bottom: 4rem; }
  
.mb-4, .my-4 {
    margin-bottom: 23.5rem !important
}
.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}
.ml-auto, .mx-auto {
  margin-left: 3% !important;
}

.form-control, .form-select {
  padding-top: 3rem;
  height: auto !important;
  font-size: 1.8rem !important;
  font-family: system-ui;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0; }
  form.border-right {
    padding-right: 6rem !important;
}
.pr-5, .px-5 {
    padding-right: 3rem !important;
}
.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}
.border-right {
    border-right: 1px solid #dee2e6 !important;
}
.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  transform: scale(0.85) translateY(-2.4rem) translateX(0.15rem); }

.form-control:focus, .form-select:focus {
  box-shadow: none !important;
  outline: 0 !important;
  border-color: #13144d !important; }

@keyframes move-triangle {
  0% {
    transform: translate3d(2rem, 2rem, 2rem); }
  100% {
    transform: translate3d(-2rem, -2rem, -2rem); } }
    /* Header Area strt */
header {
  padding: 3rem 0;
  min-height: 100vh;
  background: url(../images/particles_simple.svg);
  background-position: center;
  background-size: cover;
  background-color: #fff; }
  .fixed-header {
    background-position: center;
    background-size: cover;
    position: fixed;
    top: 0;
    width: 95%; 
    z-index: 1000;
    transition: transform 5s ease;
}
.visible-title {
  visibility: visible;
}
  header nav {
    border: 1px solid #02e3a7;
    border-radius: 50rem;
    padding: 1rem 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff; }
    header nav .logo {
      display: block;
      margin-left: 2rem; }
      header nav .logo img {
        width: 20rem;
        display: block; }
    header nav .menu-icon {
      color: #13144d;
      font-size: 3rem;
      margin-right: 2rem;
      cursor: pointer;
      display: none; }
    header nav .menu {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0;
      margin: 0;
      list-style: none;
      margin-bottom: -2px;
      margin-right: 1px; }
      header nav .menu li {
        margin: 0;
        padding: 0; }
        header nav .menu li a {
          text-decoration: none;
          padding: 1.5rem 3rem;
          font-size: 2rem;
          color: #13144d;
          font-weight: 600;
          border-radius: 10rem; }
          header nav .menu li a:hover {
            color: #fff;
            background-color: #02e3a7; }
        header nav .menu li a.active {
          color: #fff;
          background-color: #02e3a7; }
    header nav .menu-mobile {
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 0%;
      right: -100%;
      background-color: #13144d;
      z-index: 999;
      justify-content: center;
      align-items: center;
      transition: all 0.5s;
      display: none; }
      header nav .menu-mobile ul {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-top: 3rem; }
        header nav .menu-mobile ul li a {
          text-decoration: none;
          padding: 2rem;
          color: #fff;
          display: block;
          text-align: center;
          font-size: 3.2rem; }
      header nav .menu-mobile .close {
        cursor: pointer;
        font-size: 3rem;
        color: #fff;
        position: absolute;
        top: 1rem;
        right: 2rem; }
    header nav .menu-mobile.open {
      right: 0; }
  header .header-content {
    min-height: calc(100vh - 7rem);
    width: 100%;
    position: absolute;
    top: 8rem;
    left: 0;
    transition: all 1s; }
    header .header-content .logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 35rem;
      z-index: 9;
      transition: all 0.5s; }
      header .header-content .logo img {
        width: 100%; }
      header .header-content .logo.hovered {
        opacity: 0.5; }
    header .header-content .content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 75rem;
      z-index: 9;
      text-align: center; }
      header .header-content .content p {
        font-size: 3rem; }
    header .header-content .triangle {
      width: 15rem;
      position: absolute;
      transition: all 0.5s;
      animation: move-triangle 3s linear infinite both;
      animation-direction: alternate-reverse; }
      header .header-content .triangle img {
        width: 100%; }
    header .header-content .triangle.triangle-1 {
      top: 15%;
      left: 10%;
      animation-delay: 0.5s; }
    header .header-content .triangle.triangle-2 {
      top: 65%;
      left: 15%; }
    header .header-content .triangle.triangle-3 {
      top: 25%;
      right: 10%;
      animation-delay: 1s; }
    header .header-content .triangle.triangle-4 {
      top: 65%;
      right: 15%; }
    header .header-content .service {
      width: 15rem;
      position: absolute;
      transition: top 2s, left 2s, right 2s, opacity 1s;
      opacity: 0;
      visibility: hidden; }
      header .header-content .service img {
        width: 100%; }
    header .header-content .service.service-1 {
      top: 40%;
      left: 50%; }
    header .header-content .service.service-2 {
      top: 40%;
      left: 50%; }
    header .header-content .service.service-3 {
      top: 40%;
      right: 50%; }
    header .header-content .service.service-4 {
      top: 40%;
      right: 50%; }
  header .service.hovered {
    opacity: 1;
    visibility: visible;
    transition: top 3s, left 3s, right 3s, opacity 2s; }
  header .service.hovered.service-1 {
    top: 15%;
    left: 10%; }
  header .service.hovered.service-2 {
    top: 65%;
    left: 15%; }
  header .service.hovered.service-3 {
    top: 25%;
    right: 10%; }
  header .service.hovered.service-4 {
    top: 65%;
    right: 15%; }

header.header-hover {
  background: url(../images/particles_colored.svg);
  background-position: center;
  background-size: cover; }
  header.header-hover .triangle {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s; }

@media screen and (max-width: 767px) {
  header nav .menu-icon {
    display: block; }
  header nav .menu {
    display: none; }
  header nav .menu-mobile {
    display: flex; }
  header .header-content .logo {
    width: 20rem; }
  header .header-content .triangle {
    width: 10rem; }
  header .header-content .service {
    width: 13rem; } }
  
    /*======= Header Area strt end =======*/

    /*======= Footer Container Styles strt =======*/
/* .footer-container {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-areas: "main" "footer";
  overflow-x: hidden;
  min-height: 70vh;
  font-family: 'Open Sans', sans-serif;
}
    .footer {   
        z-index: 1;
        --footer-background:#13144d;
        display:grid;
        position: relative;
        grid-area: footer;
        overflow: hidden;
        min-height:12rem;
        .content {
            z-index: 2;
            display:grid;
            grid-template-columns: 1fr auto;
            grid-gap: 4rem;
            padding:2rem;
            background: linear-gradient(to top, #13144d, #13144d);
       
            
        }
    }
    .bubbles {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
  }
  
  .bubble {
      position: absolute;
      bottom: -10rem;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.3);
      opacity: 0.6;
      animation: rise var(--time) linear infinite;
  }
  @keyframes rise {
    to {
        transform: translateY(-100vh);
    }
} */
.footer-container {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-areas: "main" "footer";
  overflow-x: hidden;
  min-height: 70vh;
  font-family: 'Open Sans', sans-serif;
}

.footer {   
  z-index: 1;
  position: relative;
  grid-area: footer;
  overflow: hidden;
  min-height: 12rem;
  background-color: #13144d; /* Set the background color */
  color: white; /* Set text color */
}

 .footer .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
:root {
  --time: 7s; /* Animation duration */
}

.bubble {
  position: absolute;
  bottom: -10rem; /* Adjust initial position as needed */
  left: calc(100vw * var(--random)); /* Randomize horizontal position */
  width: 20px; /* Adjust bubble size as needed */
  height: 20px; /* Adjust bubble size as needed */
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  animation: rise var(--time) linear infinite;
}

@keyframes rise {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100vh);
  }
}
   .footer .logo {
      display: block; }
   .footer .logo img {
    width: 20rem;
   }
   .footer .menu{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
   }
   .footer .menu li a {
    color: #fff;
    padding: 1rem 3rem;
    display: block;
    text-decoration: none;
    border-radius: 3rem; }
    .footer .menu li a:hover {
      background-color: rgba(255, 255, 255, 0.1); }
    .footer .contact-menu {
      list-style: none;
      padding: 0;
      margin: 0; }
    .footer .contact-menu li a {
        color: #fff;
        padding: 1rem 0;
        display: inline-block;
        text-decoration: none;
        border-radius: 3rem;
        transform: all 0.4s; }
    .footer .contact-menu li a:hover {
      text-decoration: underline;
      text-underline-offset: 0.5rem; }
    .footer .map iframe {
      width: 100%;
      height: 30rem;
      border-radius: 5rem; }
     
      @media screen and (max-width: 991px) {
        .footer .menu li a {
          padding: 1rem 1.5rem; } }
          @media screen and (max-width: 806px) and (max-height: 600px) {
            .footer .menu li a {
                padding: 1rem 1.5rem;
            }
}
          .footer-secondary{
            background-color: #13144d;
            color: white;
            text-transform:capitalize;
            font-size: .75em;
            font-weight: 600;
            text-align: center;
             }
@keyframes bubble-size {
    0%, 75% {
        width:var(--size, 4rem);
        height:var(--size, 4rem);
    }
    100% {
        width:0rem;
        height:0rem;
    }
}
@keyframes bubble-move {
    0% {
        bottom:-4rem;
    }
    100% {
        bottom:var(--distance, 6rem);
    }
}         
   /*======= Footer Container Styles end =======*/
/* .footer-primary {
  padding: 5rem 0;
  background-color: #13144d; }
  .footer-primary .logo {
    display: block; }
    .footer-primary .logo img {
      width: 20rem; }
  .footer-primary .menu {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0; }
    .footer-primary .menu li a {
      color: #fff;
      padding: 1rem 3rem;
      display: block;
      text-decoration: none;
      border-radius: 3rem; }
      .footer-primary .menu li a:hover {
        background-color: rgba(255, 255, 255, 0.1); }
  .footer-primary .contact-menu {
    list-style: none;
    padding: 0;
    margin: 0; }
    .footer-primary .contact-menu li a {
      color: #fff;
      padding: 1rem 0;
      display: inline-block;
      text-decoration: none;
      border-radius: 3rem;
      transform: all 0.4s; }
      .footer-primary .contact-menu li a:hover {
        text-decoration: underline;
        text-underline-offset: 0.5rem; }
  .footer-primary .map iframe {
    width: 100%;
    height: 30rem;
    border-radius: 5rem; }

@media screen and (max-width: 991px) {
  .footer-primary .menu li a {
    padding: 1rem 1.5rem; } } */
    :root {
      --bg-1: #262f37;
      --bg-2: #ef5c33;
      --clr-1: #ffc015;
      --clr-2: #ef5c33;
      --clr-3: #7ae3fd;
      --text-white: #fff;
      --primary-font: 'Akkurat';
      --secondary-font: 'PolySans Median';
      --primary-color: #262f37;
    }
.section-about {
  position: relative;
  padding: 12rem 0; }
  .section-about::after {
    content: 'ABOUT US';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
    font-size: 13vw;
    font-weight: 700;
    opacity: 0.1;
    z-index: 0;
    color: #13144d;
    animation: move-whyus 4s infinite;
    animation-direction: alternate-reverse; }
  .section-about p {
    font-size: 2.8rem; }
  .section-about * {
    z-index: 9; }

@keyframes move-aboutus {
  0% {
    opacity: .1;
    transform: translate(-50%, -40%) scale(2); }
  100% {
    opacity: .1;
    transform: translate(-50%, -60%) scale(2); } }
     /*======= Clients strt =======*/
.section-clients {
  background-color: #13144d; }
  .section-clients .clients-carousel {
    background-color: #fff;
    border-radius: 15rem;
    padding: 2rem 10rem; }
    .section-clients .clients-carousel ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      padding-inline-start: 0;
      margin-block-start: 0;
      margin-block-end: 0; }
      .section-clients .clients-carousel ul li {
        width: 15rem;
        height: 10rem;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center; }
        .section-clients .clients-carousel ul li img {
          width: 100%; }
  .section-clients .owl-item {
    padding: 0 !important; }

@media screen and (max-width: 767px) {
  .section-clients .clients-carousel {
    padding: 2rem 5rem; } }
      /*======= Clients end =======*/
.section-peojects .img img {
  width: 100%; }
    
.section-peojects .owl-dots {
  margin-top: 3rem;
  display: flex;
  justify-content: center; }
  .section-peojects .owl-dots .owl-dot {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    margin: 5px;
    background-color: rgba(19, 20, 77, 0.2); }
  .section-peojects .owl-dots .owl-dot.active {
    background-color: #13144d; }
             
    /*======= service use section strt =======*/
    /* ====== section Heading start =======*/
.heading-bx .title {
  font-size: 48px;
  line-height: 55px;
  position: relative;
  margin-bottom: 35px
}

.heading-bx .title:after {
  content: '';
  display: block;
  width: 66px;
  height: 4px;
  background: linear-gradient(50deg, #4eee39  50%, #13144d   50%);
  margin-top: 15px
}

.heading-bx.text-center .title:after {
  margin: 0 auto;
  margin-top: 15px;
}

.heading-bx h6 {
  font-size: 24px;
  line-height: 30px;
  font-family: var(--primary-font)
}

@media(max-width:991px) {
  .heading-bx .title {
    font-size: 38px;
    line-height: 45px;
    margin-bottom: 40px
  }

  .heading-bx h6 {
    font-size: 20px;
    line-height: 26px
  }
}

@media(max-width:767px) {
  .heading-bx .title {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 30px
  }

  .heading-bx h6 {
    font-size: 18px;
    line-height: 24px
  }
}

@media(max-width:575px) {
  .heading-bx {
    text-align: center;
  }

  .heading-bx .title:after {
    margin: 0 auto;
    margin-top: 15px;
  }
}
/* ================================
      Section Heading end
  ===================================*/
    .roger_service {
      background: #13144d;
    }
    
    .roger_service-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      color: #fff;
      text-align: center;
      margin-top: 100px
    }
    
    /*======= Process Icons =====*/
    .roger_service-icons .roger_icon-bx {
      font-size: 16px;
      position: relative
    }
    a {
      color: #02e3a7;
    
    }
    .h6{
      margin-top: 0;
      margin-bottom: .5rem;
      font-weight: 500;
      line-height: 1.2;
  }
    .roger_service-icons .roger_icon-bx i {
      font-size: 40px;
      border: 1px solid #fff;
      width: 80px;
      height: 80px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      margin-bottom: 15px
    }
    
    .roger_service-icons .roger_icon-bx:hover i {
      -webkit-animation: vibrate .5s alternate;
      animation: vibrate .5s alternate
    }
    
    .roger_service-icons .roger_icon-bx.roger_icon-1 {
      color: #74f97e;
    }
    
    .roger_service-icons .roger_icon-bx.roger_icon-1 i {
      border-color: #74f97e;
    }
    
    .roger_service-icons .roger_icon-bx.roger_icon-2 {
      color: #7ae3fd;
    }
    
    .roger_service-icons .roger_icon-bx.roger_icon-2 i {
      border-color: #7ae3fd;
    }
    
    .roger_service-icons .roger_icon-bx.roger_icon-3 {
      color: #ffc015;
    }
    
    .roger_service-icons .roger_icon-bx.roger_icon-3 i {
      border-color: #ffc015;
    }
    
    .roger_service-icons .roger_icon-bx+.roger_icon-bx:before {
      content: "\64";
      font-family: "nyc";
      color: #fff;
      display: inline-block;
      position: absolute;
      left: -70%;
      top: 30%;
      transform: translate(-70%, -30%);
      font-size: 24px
    }
    
    /*======= Process Icons End =====*/
    
    /* ===== Process steps ===== */
    .roger_step-bx {
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      padding: 30px 0;
      border-top: 1px solid #2e373f;
      border-bottom: 1px solid #2e373f;
      margin-bottom: -1px
    }
    
    .roger_step-bx .roger_step-num-bx {
      flex: 0 0 60px;
      max-width: 60px;
      font-size: 36px;
      line-height: 30px;
      margin-top: 5px;
      font-family: var(--secondary-font);
      color: #2e373f;
      transition: .5s
    }
    
    .roger_step-bx:hover .roger_step-num-bx {
      color: #fff
    }
    
    .roger_step-bx .roger_step-content {
      flex: 0 0 calc(100% - 60px);
      max-width: calc(100% - 60px)
    }
    
    .roger_step-bx .roger_step-content h3 {
      font-family: var(--secondary-font);
      font-size: 25px;
      line-height: 36px;
      margin-bottom: 20px
    }
    
    .roger_step-bx .roger_step-content p {
      font-size: 16px;
      line-height: 18px;
      margin-bottom: 0
    }
    
    /* ===== Process steps end ==== */
    
    .roger_service .pt-img2 {
      right: 0
    }
    
    .roger_service .pt-img1 {
      bottom: 0
    }
    
    @media(max-width:991px) {
      .roger_service-icons .roger_icon-bx+.roger_icon-bx:before {
        display: none
      }
    
      .roger_step-bx .roger_step-content h3 {
        font-size: 24px;
        line-height: 30px
      }
    
      .roger_step-bx .roger_step-num-bx {
        flex: 0 0 50px;
        max-width: 50px;
        font-size: 30px;
        line-height: 26px
      }
    
      .roger_step-bx .roger_step-content {
        flex: 0 0 calc(100% - 50px);
        max-width: calc(100% - 50px)
      }
    
      .roger_step-bx {
        padding: 20px 0
      }
    }
    
    @media(max-width:767px) {
      .roger_service-icons {
        margin-top: 40px;
        padding-bottom: 40px
      }
    
      .roger_service-icons .roger_icon-bx i {
        font-size: 28px;
        width: 60px;
        height: 60px
      }
    }
    
  
    /*=================================
        Pattern
    ===================================*/
  
  [class*="pt-img"] {
      position: absolute;
      user-select: none;
      z-index: 0
    }
    
    @media only screen and (max-width: 767px) {
      [class*="pt-img"] {
        display: none
      }
    }
    
    .animate1 {
      -webkit-animation: up-down 1.5s infinite alternate;
      animation: up-down 1.5s infinite alternate
    }
    
    @media only screen and (max-width: 1380px) {
      .animate1 {
        width: 80px
      }
    }
    
    .animate2 {
      -webkit-animation: up-down 2s infinite alternate;
      animation: up-down 2s infinite alternate
    }
    
    .animate-rotate {
      -webkit-animation: rotation 20s infinite linear;
      animation: rotation 10s infinite linear
    }
    
    .animate-wave {
      -webkit-animation: left-right 1.5s infinite alternate;
      animation: left-right 1.5s infinite alternate
    }
    
    @media only screen and (max-width: 1380px) {
      .animate-wave {
        width: 100px
      }
    }
    
    @-webkit-keyframes rotation {
      0% {
         /* transform: rotateX(45deg); */
      }
    
      100% {
        -webkit-transform: rotate(360deg)
      }
    }
    
    @keyframes rotation {
      0% {
        /* transform: rotateX(45deg); */
      }
    
      100% {
        transform: rotateY(360deg);
      }
    }
    
    @-webkit-keyframes move {
      0% {
        -webkit-transform: translate(0);
        transform: translate(0)
      }
    
      25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px)
      }
    
      50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px)
      }
    
      75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px)
      }
    
      100% {
        -webkit-transform: translate(0);
        transform: translate(0)
      }
    }
    
    @-webkit-keyframes up-down {
      0% {
        transform: translatey(0)
      }
    
      100% {
        transform: translatey(-10px)
      }
    }
    
    @keyframes up-down {
      0% {
        transform: translatey(0)
      }
    
      100% {
        transform: translatey(-10px)
      }
    }
    
    @-webkit-keyframes left-right {
      0% {
        transform: translateX(0)
      }
    
      100% {
        transform: translateX(-10px)
      }
    }
    
    @keyframes left-right {
      0% {
        transform: translateX(0)
      }
    
      100% {
        transform: translateX(-10px)
      }
    }
    
    @keyframes vibrate {
    
      10%,
      90% {
        transform: translate3d(-1px, 0, 0)
      }
    
      20%,
      80% {
        transform: translate3d(2px, 0, 0)
      }
    
      30%,
      50%,
      70% {
        transform: translate3d(-4px, 0, 0)
      }
    
      40%,
      60% {
        transform: translate3d(4px, 0, 0)
      }
    }
    
    @keyframes up-down2 {
      0% {
        transform: translate(-50px)
      }
    
      50% {
        transform: translateX(80px) translateY(-200px)
      }
    
      100% {
        transform: translate(-50px)
      }
    }
       
    /*=================================
          Pattern end
      ===================================*/

      /* ================================
            Roger Effective process CSS start
    ===================================*/
  .roger_effective-bx {
    padding: 70px;
    border-bottom: 1px solid #dcdee4;
    display: flex;
    flex-wrap: wrap;
     min-height: auto;
  }
  
  .roger_effective-bx.even {
    border-left: 1px solid #dcdee4;
  }
  
  .roger_effective-bx .roger_effective-num-bx {
    font-size: 120px;
    line-height: 110px;
    font-weight: bold;
    color: #4eee39;
    flex: 0 0 100px;
    max-width: 100px;
  }
  
  .roger_effective-bx .roger_effective-content {
    flex: 0 0 calc(100% - 100px);
    max-width: calc(100% - 100px);
  }
  
  .roger_effective-bx .roger_effective-content h3 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 24px;
  }
  
  .roger_effective-bx .roger_effective-content p {
    margin: 0;
  }
  
  .roger_circle {
    display: inline-block;
    position: relative;
    margin-top: 20px;
    left: 20px;
  }
  
  .roger_circle .circle-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @media(max-width:1024px) {
    .roger_effective-bx {
      padding: 30px;
      border-bottom: 1px solid #dcdee4;
    }
  
    .roger_effective-bx .roger_effective-num-bx {
      font-size: 60px;
      line-height: 70px;
      flex: 0 0 50px;
      max-width: 50px;
    }
  
    .roger_effective-bx .roger_effective-content {
      flex: 0 0 calc(100% - 60px);
      max-width: calc(100% - 60px);
    }
  }
  
  @media(max-width:767px) {
    .roger_effective-bx .roger_effective-content h3 {
      font-size: 26px;
      line-height: 34px;
      margin-bottom: 10px;
    }
  
    .roger_effective-bx {
      padding: 15px 10px;
      border-bottom: 1px solid #dcdee4;
    }
  
    .roger_effective-bx .roger_effective-num-bx {
      font-size: 40px;
      line-height: 50px;
      flex: 0 0 35px;
      max-width: 35px;
    }
  
    .roger_effective-bx .roger_effective-content {
      flex: 0 0 calc(100% - 35px);
      max-width: calc(100% - 35px);
    }
  }
  
  @media (max-width:575px) {
    .roger_effective-bx.even {
      border-left: none;
    }
  }
  
  /* ================================
            NYC Effective process CSS end
    ===================================*/
      /*======= servicce use section end =======*/
    
    /* section services old */
/* .section-services .services-group {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 90vw;
  margin: 0 auto; }

.section-services .service {
  width: 25%;
  background-color: #67c495;
  border-radius: 2rem;
  border: 5px solid #ffffff;
  margin: 0 -2%;
  padding: 2rem;
  padding-bottom: 10rem;
  flex-shrink: 1;
  cursor: pointer;
  transition: all 1s;
  background-size: cover; }
  .section-services .service:hover {
    width: 50%; }
    .section-services .service:hover ul {
      opacity: 1;
      visibility: visible; }
  .section-services .service h3 {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    margin-bottom: 2rem; }
  .section-services .service ul {
    list-style: none;
    padding: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s; }
    .section-services .service ul li {
      margin-bottom: 1.5rem; }
    .section-services .service ul a {
      text-decoration: none;
      color: #fff;
      font-size: 2rem;
      font-family:Arial, Helvetica, sans-serif; }

.section-services .service.service-1 {
  background: linear-gradient(rgba(19, 20, 77, 0.5), rgba(19, 20, 77, 0.5)), url(../images/Service-4.jpg);
  background-size: cover;
  background-position: center; }

.section-services .service.service-2 {
  background: linear-gradient(rgba(19, 20, 77, 0.5), rgba(19, 20, 77, 0.5)), url(../images/Service-2.jpg);
  background-size: cover;
  background-position: center; }

.section-services .service.service-3 {
  background: linear-gradient(rgba(19, 20, 77, 0.5), rgba(19, 20, 77, 0.5)), url(../images/Service-3.jpg);
  background-size: cover;
  background-position: center; }

.section-services .service.service-4 {
  background: linear-gradient(rgba(19, 20, 77, 0.5), rgba(19, 20, 77, 0.5)), url(../images/Service-1.jpg);
  background-size: cover;
  background-position: center; }

@media screen and (max-width: 767px) {
  .section-services .services-group {
    flex-wrap: wrap; }
  .section-services .service {
    width: 100%; }
    .section-services .service:hover {
      width: 100%; }
    .section-services .service ul {
      opacity: 1;
      visibility: visible; } } */
    /* section services old end */
@keyframes move-whyus {
  0% {
    opacity: .1;
    transform: translate(-50%, -40%) scale(2); }
  100% {
    opacity: .1;
    transform: translate(-50%, -60%) scale(2); } }

.section-why {
  background: linear-gradient(90deg, #89216b, #da4453);
  position: relative; }
  .section-why .why-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5rem; }
    .section-why .why-block .icon {
      flex-shrink: 0;
      width: 15rem;
      height: 15rem;
      margin-right: 3rem; }
      .section-why .why-block .icon img {
        width: 100%; }
    .section-why .why-block .content {
      flex: 1; }
      .section-why .why-block .content h4.title {
        color: #ebe9e9;
        font-family:monospace;
        font-size: 20px;
        font-weight: 500;
        line-height: 1; }
        .section-why .why-block .content p.desc{
          color: #fcfcfc;
          font-size: 17px;
          font-family:'Barlow Condensed';
          font-weight: 400;
        }
  .section-why::after {
    content: 'WHY US';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 17vw;
    font-weight: 700;
    opacity: 0;
    z-index: 0;
    color: #cdcddf;
    animation: move-whyus 4s infinite;
    animation-direction: alternate-reverse; }
  .section-why * {
    z-index: 9; }
/* 
.section-service-single {
  position: relative; }
  .section-service-single::after {
    z-index: -1;
    content: 'Our Services';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
    font-size: 10vw;
    font-weight: 700;
    opacity: 0.1;
    color: #13144d; }
  .section-service-single .service-block {
    position: relative;
    display: block; }
    .section-service-single .service-block .icon {
      flex: 0 0 9rem;
      width: 9rem;
      height: 9rem;
      background-color: #fff;
      border-radius: 1rem; }
    .section-service-single .service-block h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1; }
    .section-service-single .service-block > .front,
    .section-service-single .service-block > .back {
      transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transition-duration: 1s;
      transition-property: transform, opacity;
      display: block;
      width: inherit;
      height: 45rem;
      width: 100%;
      padding: 1em 2em;
      border-radius: 10px;
      color: #fff; }
    .section-service-single .service-block > .front {
      transform: rotateY(0deg);
      background: radial-gradient(#13144d, #0b0d96); }
    .section-service-single .service-block > .back {
      position: absolute;
      opacity: 0;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      transform: rotateY(-180deg);
      background: radial-gradient(#0b0d96, #13144d);
      color: #fff; }
      .section-service-single .service-block > .back ul {
        position: relative;
        z-index: 1; }
        .section-service-single .service-block > .back ul li {
          margin-bottom: 1rem; }
          .section-service-single .service-block > .back ul li a {
            color: #fff;
            text-decoration: none; }
    .section-service-single .service-block:hover > .front {
      transform: rotateY(180deg); }
    .section-service-single .service-block:hover > .back {
      opacity: 1;
      transform: rotateY(0deg); }
  .section-service-single .service-block-01 .front {
    background: linear-gradient(rgba(19, 20, 77, 0.5), rgba(19, 20, 77, 0.5)), url(../images/Service-1.jpg);
    background-size: cover;
    background-position: center; }
  .section-service-single .service-block-01 .back {
    background: #ff7200; }
  .section-service-single .service-block-02 .front {
    background: linear-gradient(rgba(19, 20, 77, 0.5), rgba(19, 20, 77, 0.5)), url(../images/Service-2.jpg);
    background-size: cover;
    background-position: center; }
  .section-service-single .service-block-02 .back {
    background: #4900d3; }
  .section-service-single .service-block-03 .front {
    background: linear-gradient(rgba(19, 20, 77, 0.5), rgba(19, 20, 77, 0.5)), url(../images/Service-3.jpg);
    background-size: cover;
    background-position: center; }
  .section-service-single .service-block-03 .back {
    background: #39d12c; }
  .section-service-single .service-block-04 .front {
    background: linear-gradient(rgba(19, 20, 77, 0.5), rgba(19, 20, 77, 0.5)), url(../images/Service-4.jpg);
    background-size: cover;
    background-position: center; }
  .section-service-single .service-block-04 .back {
    background: #e90000; } */

.section-all-projects {
  transition: all 0.5s;
  background-color: #13144d;
  color: #fff; }


/*===== Services Card strt =====*/

/*===== main service strt ====*/
/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
/*==================== VARIABLES CSS ====================*/
:root {
  /*========== Colors ==========*/
  --text-color: #000000;
  --bg-color: #222222;

  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
}

@media screen and (min-width: 968px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*==================== BASE ====================*/
*,
*:after,
*:before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.body-section {
  /* Styles specific to the section */
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: 400;
  font-family: var(--body-font);
  transition: all 0.2s ease;
}

/*==================== REUSABLE CSS CLASSES ====================*/
  

/*==================== SERVICE CARD ====================*/
.ser .card__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Adjusted to three columns */
  gap: 60px;
  justify-content: center;
  width: 100%;
  max-width: 90%;
  margin: auto;
  padding: 60px 0;
}
.ser .card__bx {
  --dark-color: #0C0F0A;
  --dark-alt-color: #777777;
  --white-color: #ffffff;
  --button-color: #333333;
  --transition: 0.5s ease-in-out;
  font-size: 20px;
  font-family: inherit;
  height: 400px;
  min-height: auto;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark-color);
  transition: var(--transition);
}

.ser .card__bx::before,
.ser .card__bx::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: var(--transition);
}

.ser .card__bx::before {
  inset: -10px 50px;
  border-top: 4px solid var(--clr);
  transform: skewY(15deg);
  border-bottom: 4px solid var(--clr);
}

.ser .card__bx:hover::before {
  inset: -10px 40px;
  transform: skewY(0deg);
}

.ser .card__bx::after {
  inset: 60px -10px;
  border-left: 4px solid var(--clr);
  transform: skew(15deg);
  border-right: 4px solid var(--clr);
}

.ser .card__bx:hover::after {
  inset: 40px -10px;
  transform: skew(0deg);
}

.ser .card__data {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  padding: 0 20px;
  height: 100%;
  width: 100%;
  flex: 1;
  overflow: hidden;
}

.ser .card__icon {
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  color: var(--text-color);
  background-color: var(--dark-color);
  transition: var(--transition);
  margin-top: 20px;
}

.ser .card__bx .card__icon {
  color: var(--clr);
  box-shadow: 0 0 0 4px var(--dark-color), 0 0 0 6px var(--clr);
}

.ser .card__bx:hover .card__icon {
  color: var(--dark-color);
  background-color: var(--clr);
  box-shadow: 0 0 0 4px var(--dark-color), 0 0 0 300px var(--clr);
}

.ser .card__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  
}

.ser .card__data h3 {
  font-size: 3rem;
  font-weight: 500;
  color: var(--white-color);
  transition: var(--transition);
}

.ser .card__bx:hover .card__data h3 {
  color: white;
  transition: var(--transition);
}

.ser .card__data p {
  font-size:  1.7rem;
  color: white;
  transition: var(--transition);
  font-weight: 500;
}

.ser .card__bx:hover .card__data p {
  color: white;
  font-size:  1.7rem;
  transition: var(--transition);
  font-weight: 500;
}

.ser .card__data a {
  position: relative;
  display: inline-flex;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  border: 1px solid var(--clr);
  color: white;
  background-color: var(--clr);
  transition: var(--transition);
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}

.ser .card__bx:hover .card__data a {
  color: var(--clr);
  background-color: rgb(14, 13, 13);
  border: 1px solid;
}

.ser .card__bx:hover .card__data a:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
  background-color: var(--clr);
  border: 1px solid;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 767px) {
  /* Adjust grid layout for smaller screens */
  .ser .card__container {
      grid-template-columns: 1fr; /* Single column layout */
      gap: 15px; /* Adjust the gap between grid items */
      padding: 0 10px; /* Add padding to ensure no content overflows */
      box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
  }
}

 /*===== Services Card end =====*/
 

 











  


  

  
