.inner-cursor {
            position: fixed;
            left: 10px;
            width: 10px;
            height: 10px;
            transform: translate(-50%, -50%);
            background: white;
            mix-blend-mode: difference;
            border-radius: 50%;
            pointer-events: none;
            transition: width 0.5s height 0.5s;
            z-index: 10;
        }
        .outer-cursor {
            position: fixed;
            left: 10px;
            width: 25px;
            height: 25px;
            transform: translate(-50%, -50%);
            border: 1px solid white;
            mix-blend-mode: difference;
            border-radius: 50%;
            pointer-events: none; /* Corrected from 0.1ms to none */
            transition: 0.1s;
            z-index: 10;
        }


.navbar {
  font-family: 'Work Sans', sans-serif;
  background: none;
  border: none;
  --bs-navbar-nav-link-padding-x: 0.9rem;
}
.navbar-nav {
  gap: 20px; /* Adjust spacing as needed */
}
.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dropdown-menu {
  right: 0;
  left: auto;
}
/* Nav link base styling */
.navbar-nav .nav-link {
  color: transparent;
  background-color: transparent;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 15px;
  position: relative;
  transition: all .5s ease;
  z-index: 1;
}

/* Add span wrapper for hover animation */
.navbar-nav .nav-link span::before,
.navbar-nav .nav-link span::after {
  content: attr(data-hover);
  color: #fff;
  background: linear-gradient(45deg, #0387B9 49%, #0558A8 50%);
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px 15px;
  width: 100%;
  height: 100%;
  transition: all .5s ease;
  transform-origin: top;
}

.navbar-nav .nav-link span::after {
  background: linear-gradient(45deg, #EF801C 49%, #d46501 50%);
  transform-origin: bottom;
  transform: rotateX(90deg);
  z-index: 1;
}

.navbar-nav .nav-link:hover span::before {
  transform: rotateX(90deg) translateY(-42px);
}

.navbar-nav .nav-link:hover span::after {
  transform: rotateX(0);
}

/* Active link (optional styling) */
.navbar-nav .nav-link.active {
  background: transparent;
}

/* Dropdown menu styling */
.dropdown-menu {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border: none;
}

.dropdown-menu .dropdown-item {
  color: #555;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background: linear-gradient(45deg, #EF801C 49%, #d46501 50%);
  color: #fff !important;
}

/* Mobile toggle button */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .section-padding-tb-small {
    padding: 40px 0;
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .section-padding-tb-small {
    padding: 60px 0;
  }
}

/* slider */
.slider-mr{
      margin-top: 68px;
}

.slider-sub {
    font-family: "Inter";
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #111827;
    /* margin-right: 28%; */
}

.slider-title{
  font-family: "Playfair Display";
  font-size: 64px;
  font-weight: 500;
  line-height: 64px;
  color: var(--dark-color);
  margin-bottom: 25px;
      margin-right: 17%;
}

.button-2{
    pointer-events: auto;
    background: var(--text-color-dark);
    color: var(--text-color-light);
    padding: 1.0rem 3rem;
    margin: 0;
    font-family: "Playfair Display";
    font-size: 16px;
    position: relative;
    display: inline-block;
    border: none;
    border-radius: 15px;
    margin-top: 30px;
}

.button-2:hover {
    background: var(--text-color-blue);
    color: var(--text-color-light);
    transition: 0.6s;
}



.monitor-shadow {
  display: inline-block;
  position: relative;
}

.monitor-shadow::after {
  content: "";
  position: absolute;
      bottom: -3px;
  left: 22%;
width: 51%;
  height: 20px;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(8px);
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 576px) {
  .slider-mr {
    margin-top: 40px;
  }

  .slider-sub {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-right: 0;
  }

  .slider-title {
    font-size: 32px;
    line-height: 36px;
    margin-right: 0;
    text-align: center;
  }

  .button-2 {
    font-size: 14px;
    padding: 0.8rem 2rem;
    margin-top: 20px;
    margin-left: 80px;

  }

  .monitor-shadow {
      display: block;
      text-align: center;
      margin-top: 20px; /* optional */
    }

  .monitor-shadow::after {
    left: 15%;
    width: 70%;
    height: 14px;
    filter: blur(5px);
  }
}

@media (min-width: 577px) and (max-width: 1024px) {
  .slider-mr {
    margin-top: 50px;
  }

  .slider-sub {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    margin-right: 0;
  }

  .slider-title {
    font-size: 42px;
    line-height: 48px;
    margin-right: 0;
    text-align: center;
  }

  .button-2 {
    font-size: 15px;
    padding: 1rem 2.5rem;
    margin-top: 25px;
    margin-left: 250px;
  }

  .monitor-shadow {
      display: flex;
      justify-content: center;
      position: relative;
      margin-top: 30px; /* optional */
    }
  .monitor-shadow::after {
    left: 20%;
    width: 60%;
    height: 18px;
    filter: blur(6px);
  }
}






/* slider end */


/* home-ab */
.service-bg{
  border-top-left-radius: 10rem;
  border-bottom-right-radius: 10rem;
  background-color: #F3F4F6 !important;
  color: #111827;
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
  margin-top: 20px;
}

.about-title{
  font-family: "Playfair Display";
  font-size: 25px;
  font-weight: 500;
  line-height: 31px;
  color: var(--dark-color);
  margin-top: 20px;
  margin-right: 16%;
}

.about-subtitle{
  font-family: "Inter";
font-size: 16px;
font-weight: 400;
line-height: 25px;
color: #111827;
/* margin-right: 11%; */
/* margin-left: 11%; */
margin-top: 15px;
margin-bottom: 24px;
}

.service-card{
  position: relative;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.625rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.service-icon{
  position: absolute;
top: 0;
left: auto;
bottom: auto;
right: 2rem;
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
background-color: #F9FAFB;
border-bottom-right-radius: 50%;
border-bottom-left-radius: 50%;
}

.ser-card-title{
  font-family: "Inter";
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
      line-height: 1.2;
      color: #111827;
}

.ser-card-sub{
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #111827;
}

@media (max-width: 576px) {
  .service-bg {
    border-top-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 10px;
  }

  .about-title {
    font-size: 20px;
    margin-right: 0;
    margin-top: 15px;
    text-align: center;
  }

  .about-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
  }

  .service-card {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    right: 1rem;
  }

  .ser-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .ser-card-sub {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 577px) and (max-width: 1024px) {
  .service-bg {
    border-top-left-radius: 7rem;
    border-bottom-right-radius: 7rem;
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
    margin-top: 15px;
  }

  .about-title {
    font-size: 22px;
    margin-right: 8%;
    margin-top: 18px;
  }

  .about-subtitle {
    font-size: 15px;
    line-height: 24px;
    margin-left: 8%;
    margin-right: 8%;
    margin-top: 12px;
    margin-bottom: 22px;
  }

  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.8rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    right: 1.5rem;
  }

  .ser-card-title {
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
  }

  .ser-card-sub {
    font-size: 18px;
    line-height: 28px;
  }
}

/* home-ab-end */

/* home-scroll-anim */
.sec-title-1 {
    font-family: "Playfair Display";
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 1;
    color: #111827;
    margin-bottom: 40px;
}

.sec-subtitle{
  font-family: "Inter";
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    color: #374151;
    /* margin-right: 19%; */
    /* margin-left: 20%; */
    margin-bottom: 60px;
}

.im-mar{
  padding-top: 0rem !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}



.mt-scroll {
  /* margin-top: -12rem; */
  position: relative;
}

.img-scroll {
    position: relative;
    height: 500px;
    overflow: hidden;
    padding: 0.75rem;
    background-color: var(--light-color, #f8f9fa);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.625rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.scroll-animate {
  animation: image_preview 20s linear infinite alternate; /* yoyo effect */
  display: block;
  width: 100%;
}

@keyframes image_preview {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* adjust depending on how much you want it to scroll */
  }
}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .sec-title-1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: center;
  }

  .sec-subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 40px;
    text-align: center;
  }

  .im-mar {
    padding-top: 0 !important;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.07);
  }

  .mt-scroll {
            margin-top: 30px;/* reset if negative margin used */
  }

  .img-scroll {
    height: 300px;
    padding: 0.5rem;
  }

  .scroll-animate {
    animation-duration: 15s; /* slightly faster for smaller screens */
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .sec-title-1 {
    font-size: 1.9rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
  }

  .sec-subtitle {
    font-size: 22px;
    line-height: 28px;
    margin-left: 8%;
    margin-right: 8%;
    margin-bottom: 50px;
    text-align: center;
  }

  .im-mar {
    padding-top: 0 !important;
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
  }

  .mt-scroll {
    margin-top:2rem; /* reduce the negative margin for tablets */
  }

  .img-scroll {
    height: 400px;
    padding: 0.6rem;
  }

  .scroll-animate {
    animation-duration: 18s;
  }
}



/* home-scroll-anim-end */

/* home-4 */
.sec-title{
  font-family: "Playfair Display";
  font-weight: 500;
  font-size: 4rem;
  line-height: 1;
  color: #111827;
  margin-bottom: 40px;
}

.btn-pad{
  padding-top: 16px;
  padding-bottom: 40px;
  text-align: right !important;
}

.btn-light {
    background-color: #F3F4F6;
    color: #714b67;
}

.btn-light:hover {
    background-color: #E6E9ED;
    color: #714b67;
}

.card-pad{
  padding-bottom: 40px !important;
}

.project-image{
  padding: 0.75rem;
  background-color: var(--light-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
      max-width: 100%;
      height: auto;

}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .sec-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
  }

  .project-image {
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.07);
    max-width: 100%;
    height: auto;
  }

  .btn-pad {
    padding-top: 12px;
    padding-bottom: 25px;
    text-align: center !important;
  }

  .btn-light {
    font-size: 14px;
    padding: 10px 20px;
  }

  .btn-light:hover {
    background-color: #d9dce0;
  }

  .card-pad {
    padding-bottom: 25px !important;
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .sec-title {
    font-size: 3.2rem;
    line-height: 1.05;
    margin-bottom: 30px;
    text-align: center;
  }

  .project-image {
      padding: 0.65rem;
      border-radius: 0.55rem;
      box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
      max-width: 100%;
      height: auto;
    }

  .btn-pad {
    padding-top: 14px;
    padding-bottom: 35px;
    text-align: center !important;
  }

  .btn-light {
    font-size: 15px;
    padding: 12px 24px;
  }

  .btn-light:hover {
    background-color: #dfe3e7;
  }

  .card-pad {
    padding-bottom: 35px !important;
  }
}

/* home-4 end */

/* home-5 */
.web-title{
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #374151;
}

.img-gap{
  margin-top: 66px;
    margin-left: 101px;
}

.background-crm{
  background-color: #F3F4F6 !important;
      color: #111827;
      padding-top: 6rem !important;
      position: relative !important;
      border-radius: 0.625rem !important;
      padding: 3rem;
    margin-top: 67px;
}

.bi-thumbs{
position: absolute !important;
top: 0 !important;
left: 0 !important;
margin-top: -1.5rem !important;
margin-left: 6rem !important;
rotate: 330deg;
}

.bi-down{
  position: relative;
  margin-top: -4rem !important;
  margin-bottom: 1.5rem !important;
  margin-right: 97px !important;
  margin-left: 50% !important;
}

.iblue-dash{
  padding: 0.75rem;
      background-color: var(--light-color);
      border: 0 solid color-mix(in srgb, currentColor 15%, transparent);
      border-radius: 0.625rem ;
      max-width: 100%;
      height: auto;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
      width: 75% !important;
          margin-bottom: -10rem !important;
          margin-left: 15%;
}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .web-title {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .img-gap {
    margin-top: 30px;
    margin-left: 20px;
  }

  .background-crm {
    padding: 2rem;
    padding-top: 3rem !important;
    margin-top: 40px;
    border-radius: 0.5rem !important;
  }

  .bi-thumbs {
    margin-top: -1rem !important;
    margin-left: 2rem !important;
    transform: rotate(330deg);
  }

  .bi-down {
    margin-top: -2rem !important;
    margin-bottom: 1rem !important;
    margin-left: 40% !important;
    margin-right: 20px !important;
  }

  .iblue-dash {
    width: 90% !important;
    margin-left: 5%;
    margin-bottom: -6rem !important;
    padding: 0.5rem;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.07);
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .web-title {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
  }

  .img-gap {
    margin-top: 50px;
    margin-left: 60px;
  }

  .background-crm {
    padding: 2.5rem;
    padding-top: 4rem !important;
    margin-top: 55px;
    border-radius: 0.55rem !important;
  }

  .bi-thumbs {
    margin-top: -1.2rem !important;
    margin-left: 4rem !important;
    transform: rotate(330deg);
  }

  .bi-down {
    margin-top: -3rem !important;
    margin-bottom: 1.2rem !important;
    margin-left: 45% !important;
    margin-right: 60px !important;
  }

  .iblue-dash {
    width: 85% !important;
    margin-left: 7.5%;
    margin-bottom: -8rem !important;
    padding: 0.65rem;
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
  }
}


/* home-5 end */

/* home-6 */
.sec-pad{
  padding-top: 176px;
    padding-bottom: 51px;
}

.invoice-title{
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--dark-color);
  margin-top: 15px;
}

.iblue-invoice{
  padding: 0.75rem;
      background-color: var(--light-color);
      border: 0 solid color-mix(in srgb, currentColor 15%, transparent);
      border-radius: 0.625rem ;
      max-width: 100%;
      height: auto;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          margin-left: 14%;
}


.arrow-mar{
  height: 200px;
    margin-left: 70%;
}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .sec-pad {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .invoice-title {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-top: 10px;
  }

  .iblue-invoice {
    width: 90%;
    margin-left: 5%;
    padding: 0.5rem;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.08);
  }

  .arrow-mar {
    height: 100px;
    margin-left: 40%;
    visibility: hidden;
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .sec-pad {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .invoice-title {
    font-size: 18px;
    line-height: 28px;
    margin-top: 12px;
  }

  .iblue-invoice {
    width: 85%;
    margin-left: 7.5%;
    padding: 0.65rem;
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
  }

  .arrow-mar {
    height: 150px;
    margin-left: 60%;
    visibility: hidden;
  }
}

/* home-6 end */

/* home-7 */
.logo-img{
    height: 60%;
}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .logo-img {
    height: 50%;
/* text-align: center !important; */
margin-left: 90px;
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .logo-img {
    height: 50%;
/* text-align: center; */
margin-left: 25%;
  }
}
/* home-7 end */

/* home-8 */
.industry-work{
  background: #ffffff;
    padding: 15px 20px;
    border-radius: 14px;
    margin-top: 30px;
    display: flex;
    align-items: center;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.ind-icon{
  height: 60px;
}

.ind-title{
  font-size: 17px;
      line-height: 26px;
      font-weight: 600;
      margin: 0 0 0 15px;
      color: var(--dark-color);

}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .industry-work {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 15px;
    margin-top: 20px;
    border-radius: 10px;
  }

  .ind-icon {
    height: 50px;
    margin-bottom: 10px;
  }

  .ind-title {
    font-size: 15px;
    line-height: 22px;
    margin-left: 0;
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .industry-work {
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 25px;
  }

  .ind-icon {
    height: 55px;
  }

  .ind-title {
    font-size: 16px;
    line-height: 24px;
    margin-left: 12px;
  }
}

/* home-8 end */

/* footer */
.footer-content{
  border: solid white;
  background-color: #F3F4F6;
  padding: 40px;
  border-radius: 20px;
}


.img-hgt {
    height: 60px;
}

.footer-text{
    margin-top: 16px;
}

.footer-sub{
  color: var(--dark-color);
      font-family: "Playfair Display";
      font-size: 18px;
      font-weight: 400;
      line-height: 25px;
      text-decoration: none;
}

.footer-title {
    color: var(--dark-color);
    font-family: "Playfair Display";
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    margin-top: 20px;
}

.social-content {
    margin-right: 40px;
}

.socio-col {
    color: var(--text-color-medium);
    font-size: 18px;
    border: solid;
    border-radius: 100%;
    border-style: hidden;
}

.digi-con-left {
    margin-left: 30px;
}

.footer-title-1 {
    color: var(--dark-color);
    font-family: "Playfair Display";
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;

}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .footer-content {
    padding: 20px;
    border-radius: 15px;
    text-align: center;
  }

  .img-hgt {
    height: 40px;
  }

  .footer-text {
    margin-top: 12px;
  }

  .footer-sub,
  .footer-title,
  .footer-title-1 {
    font-size: 16px;
    line-height: 22px;
  }

  .social-content {
    margin-right: 20px;
  }

  .socio-col {
    font-size: 16px;
  }

  .digi-con-left {
    margin-left: 10px;
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .footer-content {
    padding: 30px;
    border-radius: 18px;
  }


  .array-logo-1{
    text-align: center;

  }
  .img-hgt {
    height: 50px;
  }

  .footer-text{
      margin-top: 16px;
      text-align: center;
  }

  .footer-sub,
  .footer-title,
  .footer-title-1 {
    font-size: 20px;
    line-height: 28px;
            text-align: center;
            margin-top: 15px;
  }

  .social-content {
    margin-left: 40px;
text-align: center;
  }

  .socio-col {
    font-size: 17px;
  }

  .digi-con-left {
    margin-left: 20px;
  }
}


/* footer-end */

/* ab-sec-1 */
.about-bg{
  background-color: #F3F4F6;
    padding: 5% 8% 5% 8%;
}

.light-bg {
    padding: 0% 8% 2% 10%;
}

.details-para {
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Inter";
    margin-bottom: 30px;
}

.carousel-details {
    font-family: "Playfair Display";
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: #000000 !important;
}

.carousel-head {
    font-family: "Playfair Display";
    font-size: 25px;
    font-weight: 500;
    line-height: 29px;
    color: #000000 !important;
    margin-bottom: 25px;
    margin-top: 25px;
}
.web-btn{
  border: 1px solid #2F91F8;
      background: #2F91F8;
      margin-right: 0px;
      font-weight: 600;
    font-size: 18px;
    color: #fff;
    border-radius: 100px;
    padding: 3px 30px;
    display: inline-block;
    line-height: 40px;
    white-space: nowrap;
        margin-top: 40px;
}

.web-btn:hover{
  background: #fff;
    color: #2F91F8;
    border: 1px solid #2F91F8;
}
.bi-btn{
  font-size: 11px;
      margin-left: 4px;
      display: inline-block;
      position: relative;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .about-bg {
    padding: 5% 5% 5% 5%;
  }

  .light-bg {
    padding: 0% 5% 2% 5%;
  }

  .details-para {
    font-size: 14px;
          line-height: 22px;
          margin-bottom: 18px;
          margin-top: 14px;
  }

  .carousel-details {
    font-size: 15px;
    line-height: 24px;
  }

  .carousel-head {
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .web-btn {
    font-size: 16px;
    padding: 5px 20px;
    line-height: 36px;
    margin-top: 30px;
  }

  .bi-btn {
    font-size: 9px;
    margin-left: 3px;
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .about-bg {
    padding: 5% 6% 5% 6%;
  }

  .light-bg {
    padding: 0% 6% 2% 7%;
  }

  .details-para {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 25px;
    margin-top: 18px;
  }

  .carousel-details {
    font-size: 16px;
    line-height: 26px;
  }

  .carousel-head {
    font-size: 22px;
    line-height: 28px;
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .web-btn {
    font-size: 17px;
    padding: 6px 25px;
    line-height: 38px;
    margin-top: 35px;
  }

  .bi-btn {
    font-size: 10px;
    margin-left: 3.5px;
  }
}


/* ab-sec-1 end */

/* ab-sec-2 */
.parallax-section {
    /* height: 100vh; */
    background-image: url(../images/world-bg.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.process-card{

  transition-timing-function: cubic-bezier(0.25,.1,.25,1);
  transition-duration: 1500ms;
  height: 100% !important;
  border: 1px solid #f1f2f3 !important;
}

.card-img-top{
      position: relative;
      border-top-left-radius: .25rem;
      border-top-right-radius: .25rem;

}

.bg-pale-warning {
    background-color: #fcf8ee !important;
}

.icon-height{
  height: 40px !important;
  margin: .75rem !important;
      filter: brightness(1) invert(1);
}

.ser-title{

font-size: 18px !important;
font-weight: 600 !important;
font-family: "Playfair Display";
margin-left: -8px;
}

.card-body{
  flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
    background-color: #ffffff;
}

.card-title{
  font-size: 15px !important;
  font-weight: 300 !important;
  font-family: "Playfair Display";
  line-height: 29px;
  color: #757575;
}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .parallax-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    /* Consider removing background-attachment fixed on mobile for better performance */
    background-attachment: scroll;
  }

  .process-card {
      transition-duration: 1000ms;
      height: auto !important; /* allow flexible height on smaller screens */
              margin-top: 15px;
    }

  .icon-height {
    height: 30px !important;
    margin: 0.5rem !important;
  }

  .ser-title {
    font-size: 14px !important;
    margin-left: 0;
  }

  .card-title {
    font-size: 13px !important;
    line-height: 22px;
  }
}

/* Tablet: min-width 577px and max-width 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
  .parallax-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-attachment: scroll; /* Optional: improve tablet performance */
  }

  .process-card {
      transition-duration: 1300ms;
      height: auto !important; /* flexible height for tablet */
              margin-top: 15px;
    }

  .icon-height {
    height: 35px !important;
    margin: 0.65rem !important;
  }

  .ser-title {
    font-size: 16px !important;
    margin-left: -4px;
  }

  .card-title {
    font-size: 14px !important;
    line-height: 25px;
  }
}

/* ab-sec-2 end */

/* ab-sec-3 */
.web-img{
  padding: 0.75rem;
      background-color: var(--light-color);
      border: 0 solid color-mix(in srgb, currentColor 15%, transparent);
      border-radius: var(--border-radius);
      max-width: 100%;
      height: auto;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
      margin-bottom: 3rem !important;
      margin-top: 3rem;
}

.build-mr{
  padding-left: 100px;
  margin-top: 100px;

}

@media (max-width: 576px) {
  .build-mr {
    padding-left: 20px;
    margin-top: 40px;
  }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 1024px) {
  .build-mr {
    padding-left: 50px;
    margin-top: 70px;
  }
}
@media (max-width: 576px) {
  .web-img {
    padding: 0.5rem;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 1024px) {
  .web-img {
    padding: 0.6rem;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
/* ab-sec-3 end */

/* ab-sec-4 */
.shadow-img{
  border: 1px solid #f1f2f3 !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.margin-auto{
  margin-left: auto !important;
}

.ser-detail-title{
font-size: 24px;
font-weight: 400;
line-height: 37px;
color: #323d47;
}

.ser-detail-subtitle{
  font-family: "Inter";
  font-size: 15px;
  font-weight: 300;
  line-height: 29px;
  color: #555;
  margin-bottom:15px;
}

.check-mr{
  margin-right: .5rem !important;

}

.list-title{
  font-size: 14px !important;

}

.list-mr{
  margin-bottom: 20px;
}

.text-mar{
      margin-top: 10%;
}

.img-margin{
      margin-top: 10%;
}

/* Mobile */
@media (max-width: 576px) {
  .shadow-img {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
    border-width: 0.5px !important;
  }

  .ser-detail-title {
    font-size: 18px;
    line-height: 28px;
  }

  .ser-detail-subtitle {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .list-title {
    font-size: 12px !important;
  }

  .text-mar,
  .img-margin {
    margin-top: 5%;
  }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 1024px) {
  .shadow-img {
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.13) !important;
    border-width: 0.75px !important;
  }

  .ser-detail-title {
    font-size: 20px;
    line-height: 32px;
  }

  .ser-detail-subtitle {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 12px;
  }

  .list-title {
    font-size: 13px !important;
  }

  .text-mar,
  .img-margin {
    margin-top: 7%;
  }
}

/* ab-sec-4 end*/

/* web-sec-1 */
.bg-color{
  background-color:#F3F4F6;
}
.feature-desc{
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #374151;
  text-transform: capitalize;
}
.img-size{
  width: 80%;
  filter: brightness(1) invert(1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.zoom-hover {
  transition: transform 0.3s ease;
   transform-origin: center center;
   margin-top: 15px;
}
.zoom-hover:hover {
  transform: scale(1.2);
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .feature-desc {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }

  .zoom-hover:hover {
      transform: scale(1.05); /* Minimal zoom on mobile to avoid layout issues */
    }
  .img-size {
    width: 90%;
  }

  .zoom-hover:hover {
    transform: scale(1.1); /* Less aggressive zoom for smaller screens */
  }
}

/* Tablet (min-width: 577px and max-width: 1024px) */
@media (min-width: 577px) and (max-width: 1024px) {
  .feature-desc {
    font-size: 17px;
    line-height: 28px;
    text-align: center;
  }

  .zoom-hover:hover {
      transform: scale(1.1); /* Slightly less zoom for tablets */
    }
  .img-size {
    width: 85%;
  }

  .zoom-hover:hover {
    transform: scale(1.15);
  }
}


/* web-sec-1 end */

/* web-sec-2 */
.web-card{
  background: #fff;
    position: relative;
    place-items: start;
    display: grid;
    height: 400px;
    border-radius: 14px;
    padding: 40px 30px;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.web-card-img{
  background: #fff;
    box-shadow: 0 15px 30px -10px rgb(0 0 0 / 14%);
    padding: 15px;
    border-radius: 14px;
    position: absolute;
    width: 80px;
    height: 80px;
    top: -30px;
    left: 30px;
}

.web-card-content{
margin-top: 40px;
}

.web-card-title{
  font-family: "Playfair Display";
      font-size: 29px;
      font-weight: 600;
      line-height: 30px;
      color: var(--dark-color);
      margin-top: 15px;
}

/* Tablet (min-width: 577px and max-width: 1024px) */
@media (min-width: 577px) and (max-width: 1024px) {
  .web-card {
    height: auto;
    padding: 30px 20px;
  }

  .web-card-img {
    width: 70px;
    height: 70px;
    top: -25px;
    left: 20px;
  }

  .web-card-title {
    font-size: 24px;
    line-height: 28px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .web-card {
    height: auto;
    padding: 25px 15px;
  }

  .web-card-img {
    width: 60px;
    height: 60px;
    top: -20px;
    left: 15px;
  }

  .web-card-title {
    font-size: 22px;
    line-height: 26px;
    text-align: center;
  }

  .web-card-content {
    margin-top: 30px;
  }
}

/* web-sec-2 end */

/* aws-sec-1 */
.web-dev-title{
  font-family: "Playfair Display";
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    color: #111827;
    margin-top: 15px;
}

.web-dev-subtitle{
  font-family: "Playfair Display";
    font-weight: 500;
    font-size: 34px;
    line-height: 46px;
    color: #000000;
    margin-top: 15px;
}
.web-dev-desc{
  font-family: "inter";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 20px;

}

.web-side-img{
  padding: 0.75rem;
      background-color: var(--light-color);
      border: 0 solid color-mix(in srgb, currentColor 15%, transparent);
      border-radius: var(--border-radius);
      max-width: 100%;
      height: auto;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Tablet Devices (min-width: 577px and max-width: 1024px) */
@media (min-width: 577px) and (max-width: 1024px) {
  .web-dev-title {
    font-size: 32px;
    line-height: 42px;
  }

  .web-dev-subtitle {
    font-size: 28px;
    line-height: 38px;
  }

  .web-dev-desc {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
  .web-dev-title {
    font-size: 26px;
    line-height: 36px;
    text-align: center;
  }

  .web-dev-subtitle {
    font-size: 22px;
    line-height: 32px;
    text-align: center;
  }

  .web-dev-desc {
    font-size: 15px;
    line-height: 24px;
    text-align: center;
  }

  .web-side-img {
    margin-top: 2rem;
    padding: 0.5rem;
  }
}

/* aws-sec-1 end */

.text-mr{
  margin-right: 20%;
}






.array-icon{
  height: 50px;
}

.sec-subtitle{
  font-family: "Inter";
      font-size: 20px;
      font-weight: 400;
      line-height: 30px;
      color: var(--dark-color);
      margin-top: 15px;
}





.industries-logo{
  background-color: #F3F4F6;
  padding: 20px
}





.native-card{
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
  border-radius: 0.625rem;
   padding: 40px;
}

.native-sub{
  font-family: "Playfair Display";
      font-size: 18px;
      font-weight: 700;
      line-height: 28px;
      color: var(--dark-color);
      margin-top: 35px;
}

.native-title{
  font-family: "Inter";
font-size: 18px;
font-weight: 400;
line-height: 30px;
color: #111827;
margin-top: 20px;
}

.native-mr{
  margin-left: 70px;
    margin-top: 54px;
    height: 70%;
    border-radius: 20px;
        border: 1px solid #ccc;
}

.native-mar{
  height: 70%;
    margin-top: 20px;
    border-radius: 20px;
        border: 1px solid #ccc;
}
.section-pad{
  padding-top: 47px;
  padding-bottom: 24px;

}

.native-ser{
  position: relative;
top: -187px;
}


/* section-1 */
/* White Hero Section Styles */
.alt-hero-white {
background-color: #fff;
padding: 60px 0;
}

.alt-hero-white .tagline {
display: inline-block;
background: #f5f5f5;
padding: 5px 15px;
border-radius: 50px;
font-size: 14px;
color: #000000;
    font-family: 'Playfair Display';
    font-weight: 800;
    letter-spacing: 3px;
}

.alt-hero-white h1 {
  color: #000;
      font-size: 64px;
      line-height: 1.2;
      font-family: 'Playfair Display';
}

.alt-hero-white p {
  color: #333;
      font-size: 1.1rem;
      font-family: 'Inter';
}

.alt-hero-white .btn {
padding: 10px 20px;
border-radius: 50px;
transition: 0.5s ease;
}

.alt-hero-white .btn:hover {
transform: translateY(-2px);
}

.image-wrapper {
animation: float 5s ease-in-out infinite;
}

@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0); }
}


#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: #000; /* Black for IT theme */
  color: #fff;
  border: none;
  padding: 6px 15px;
    border-radius: 61%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #1a73e8; /* Tech blue accent */
  transform: translateY(-3px);
}

#scrollTopBtn i {
  pointer-events: none;
}

.counter-box{
  background: #F3F4F6;
  border-radius: 10px;
  position: relative;
  padding: 20px;
}

.counter-number{
    font-size: 48px;
    line-height: .95;
    font-weight: 900;
    font-family: 'Playfair Display';
    color: #000;
}

.border-line{
  border-right: 1px solid #000;
  font-family: 'Playfair Display';
}

.counter-symbol{
  position: relative;
  bottom: 20px;
  color: #000;
  font-family: 'Playfair Display';
}

.counter-title{
  font-size: 20px;
      line-height: 1.5;
      font-weight: 400;
  font-family: 'Playfair Display';
  color: #000;
}
