html {
  scroll-behavior: smooth;
}
body {
 /* font-family: "Montserrat", sans-serif !important; */
  /* font-family: 'Inter', sans-serif !important; */
  font-family: 'Inter' !important;
  margin: 0;
  
}
#load-more {
  cursor: pointer;
}

.latest-blog-parent img {    
  object-fit: cover; 
  border-radius: 10px 10px 0 0;
}

.slide-head {
    margin-bottom: 25px;
    max-width: 550px;
  font-family: Inter;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto 30px;
}


.header-padding {
  padding-top: 100px;
  background: transparent;
}
/* ===== TOP RIBBON ===== */
.top-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 8px 40px;
  /* background: linear-gradient(135deg, #284ba1 0%, #1b2e6e 100%); */
  background: linear-gradient(90deg, #0B276B 20%, #314DDF 100%);
  color: #fff;
  font-size: 0.9rem;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.contact-info span {
  color: #e6e6e6;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social-icons a {
  color: #e6e6e6;
  text-decoration: none;
  transition: color 0.2s;
}
.social-icons a:hover {
  color: #00bcd4;
}

/* ===== HEADER ===== */
#main-header {
  position: fixed;
  left: 8px;
    right: 8px;
    width: 98.8%;
  top: 48px; /* offset for fixed ribbon */
  z-index: 1050;
  border-radius: 8px;
  transition:
    transform 0.45s ease-in-out,
    opacity 0.45s ease-in-out,
    box-shadow 0.25s ease-in-out;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

@media only screen  and (min-width: 767px) {
  #main-header.show {
    box-shadow: 0 1px 17px rgba(16, 24, 40, 0.06);
    opacity: 1;
  }

  #main-header.hide {
    opacity: 0;
    pointer-events: none;
  }
}

/* ===== HEADER INNER ===== */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  gap: 20px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.navbar-brand img {
  max-width: 150px;
}

/* ===== NAVIGATION ===== */
.navbar-nav .nav-link {
  color: #222;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  font-size: 14px;
}

.navbar-nav .nav-link::after,
.navbar-nav .nav-link.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6c63ff, #00bcd4);
  transition: width 0.28s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* CTA button */
.cta-btn {
  /* background: linear-gradient(90deg, #6c63ff, #00bcd4) !important; */
  background: rgba(49, 77, 223, 1);
  color: #fff !important;
  padding: 0;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.18s;
  min-width: 100px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  text-align: center;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(108, 99, 255, 0.18);
}
.cta-btn:hover::after {
  display: none;
}
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
}
.menu-item-has-children .active::after,  
.menu-item-has-children .nav-link::after {
  display: none;

}
.custom-submenu {
  border-radius: 14px !important;
  /* padding: 15px !important; */
  min-width: 220px !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  animation: fadeUp 0.3s ease;
}

.custom-submenu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px !important;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.3s ease;
}

.custom-submenu li a:hover {
  background: rgba(49, 77, 223, 0.08);
  transform: translateX(6px);
}

/* Optional icons for submenu */
.custom-submenu li a::before {
  content: "➜";
  color: #314ddf;
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== COLLAPSE FIX FOR DESKTOP ===== */
@media (min-width: 992px) {
  .collapse-header:not(.show) {
    display: flex !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .top-ribbon {
    padding: 6px 10px;
    font-size: 9px;
  }

/*   .contact-info {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  } */

 /*  .social-icons {
    justify-content: flex-start;
    width: 100%;
  }
 */
  #main-header {
    position: fixed;
    left: 0px;
    right: 0;
    width: 100%;
    top: 25px;
    z-index: 1050;
    border-radius: 8px;
  }
  .header-inner  {
    padding: 5px 10px;
  }
  .navbar-nav {
    background: #fff;
    padding: 10px 0;
  }

  .navbar-toggler {
    border: none;
    background: transparent;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath fill='none' stroke='%23222' stroke-width='2' d='M5 7h20M5 15h20M5 23h20'/%3E%3C/svg%3E") !important;
  }
}


/* Extra large screens */
@media (min-width: 1400px) {
  .navbar-brand img {
    max-width: 180px;
  }
}


/* slide banner css start */
.hero-banner {
 /* background: #fff url("../img/banner-bg-light.png") no-repeat center/cover; */

  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

/* header responsive css  */


/* .hero-banner .slide-head span {
      background: linear-gradient(90deg, #284ba1, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.hero-banner .slide-head span {
     color: rgba(49, 77, 223, 1);
}

.hero-banner p {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 400;
  max-width: 550px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* .hero-buttons .btn {
  font-weight: 500;
  padding: 12px 28px;
  font-size: 16px;
  transition: all 0.3s ease;
} */
/* COMMON BUTTON WRAPPER */
.btn-primary-custom,
.btn-outline-primary {
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}

/* RIPPLE CIRCLE */
.btn-primary-custom::before,
.btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: #10269C;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.45s ease-in-out;
  z-index: 0;
}

/* HOVER: RIPPLE EXPANDS ON MOUSE IN */
.btn-primary-custom:hover::before,
.btn-outline-primary:hover::before {
  transform: translate(-50%, -50%) scale(15);
}

/* MOUSE OUT — SHRINK BACK (Auto because of transition) */

/* TEXT ABOVE RIPPLE */
.btn-primary-custom,
.btn-primary-custom i,
.btn-primary-custom span,
.btn-outline-primary,
.btn-outline-primary i,
.btn-outline-primary span {
  position: relative;
  z-index: 2;
}

/* BASE BUTTON STYLES */
.btn-primary-custom {
  background: rgba(49, 77, 223, 1);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 16px;
  text-decoration: none;
}

.btn-outline-primary {
  border: 1px solid rgba(49, 77, 223, 1);
  color: rgba(49, 77, 223, 1);
  background: transparent;
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 16px;
  text-decoration: none;
}

/* HOVER TEXT COLOR */
.btn-outline-primary:hover {
  color: #fff !important;
  border:1px solid #10269C;
  background-color: #10269C !important;
}

.btn-primary-custom:hover {
  color: #fff !important;
  border:1px solid #10269C;
}



/* .btn-primary-custom {
  background: rgba(49, 77, 223, 1) !important;
  color: rgba(251, 251, 251, 1);
  border: none;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 8px;

  font-weight: 500 !important;
  padding: 12px 28px !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
}

.btn-outline-primary {
  border: 1px solid rgba(49, 77, 223, 1) !important;
  color: rgba(49, 77, 223, 1) !important;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background: transparent;

  font-weight: 500 !important;
  padding: 12px 28px !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;

  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.btn-primary-custom:hover,
.btn-outline-primary:hover {
  background: #10269C !important;
   color: rgba(251, 251, 251, 1) !important;
  box-shadow: 0 8px 20px rgba(40, 75, 161, 0.3);

   
  transition: background 300ms ease-in-out !important;
}
 */



/* .btn-outline-primary:hover {
    background: #10269C;
   color: rgba(251, 251, 251, 1);
  box-shadow: 0 8px 20px rgba(40, 75, 161, 0.3);
   transition: 0.3s ease-out;
  color: rgba(251, 251, 251, 1) !important;
} */

.client-box {
  background: rgba(49, 77, 223, 1);
  width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: auto 0 auto 10px;
  transition: all 0.3s ease;
  display: flex;
}
.client-box  img{
  max-width: 27px;
  margin: auto;
}
.client-text {
  margin: auto 10px auto 10px;
}

.client-logos {
  margin-top:90px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.logos-track {
  display: flex;
  gap: 10px;
   width: calc(250px * 10);
  animation: scrollLogos 20s linear infinite;

}

.logos-track .client-logo-parent {
   margin: auto;
  transition: transform 0.3s ease;
}
.client-icon-p {
  width: 50px;
  height: 50px;
  background: rgba(49, 77, 223, 1);
  border-radius: 60px;
}
.logos-track .client-logo-parent:hover {
  transform: scale(1.1);
}


.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 16px;
  color: rgba(0, 0, 0, 1);
  white-space: nowrap;
  font-weight: 500;
}


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

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-banner h1 {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .logos-track img {
    height: 32px;
  }
}

/* .smart-scalable-section {
  position: relative;
  overflow: hidden;
   transition:
    transform 0.4s ease;
  transform: translateY(0); 
}
.smart-scalable-section.scrolled-up {
  transform: translateY(180px);
  opacity: 1;
}

.smart-scalable-section.scrolled-down {
  transform: translateY(-180px);
}
 */
/* about section css */
.about-company-dark {
  padding:80px 0;
  /* background: linear-gradient(180deg, #0c1a3c 0%, #13264f 60%, #0b1631 100%); */
  background: linear-gradient(180deg, #0B276B 20%, #314DDF 100%);
  color: #f2f4f8;
  position: relative;
  overflow: hidden;
   transition:
    transform 0.4s ease;
  transform: translateY(0);
  /* opacity: 1; */
}

/* 
 .about-company-dark.scrolled-up {
  transform: translateY(140px);
  opacity: 1;
}

.about-company-dark.scrolled-down {
  transform: translateY(-140px);
}  */


.about-company-dark::before {
  content: "";
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
}
.about-company-dark::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  border-top-left-radius: 20px 20px;
  border-top-right-radius: 20px 20px;
}

/* Text */
.common-heading span {
  color: #00bcd4;
  font-weight: 600;
  letter-spacing: 1px;
}

.common-heading h2 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.common-heading .text-primary {
  color: #00bcd4;
}

.lead-text {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 15px;
}

.common-heading p {
  color: #cfd3e0;
  line-height: 1.8;
}

.btn-primary-custom-dark {
  background: linear-gradient(90deg, #00bcd4, #284ba1);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-primary-custom-dark:hover {
  background: linear-gradient(90deg, #284ba1, #00bcd4);
  transform: translateY(-3px);
}


.span-txt-clr {
  color: rgba(49, 77, 223, 1);
}
.icon-wrapper i{
  background: linear-gradient(90deg, #f5f6f9, #fefeffb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
}


/* about css start  */



.about-title {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
}

.aboutleftheading {
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  font-size: 32px;
  line-height: 2.5rem;
}

.aboutdesc {
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
}

/* .btn-outline-about {
  padding: 10px 22px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
    border: 0;
  color: rgba(49, 77, 223, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
} */

.btn-outline:hover {
  background: #fff;
  color: #0f2f8f;
}
.aboutleft {
  padding-right: 50px;

}
.aboutright {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat {
  text-align: center;
}

.circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: auto;
}

.stat p {
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 1025px) {
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
  }
  .aboutleft {
    padding-right: 0;
  }
   .aboutright {
    width: 100%;
  }

  .aboutright {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* about css start  */

.circle-box {
    width: 150px;
    height: 150px;
    position: relative;
}

/* top circle  */
.circle-svg {
    transform: rotate(-50deg);
}

.white-arc-1 {
    fill: none;
    stroke: #ffffff;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 200 100; 
    stroke-dashoffset: 68;
}

.white-arc-2 {
    fill: none;
    stroke: #ffffff;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 140 300; 
    stroke-dashoffset: -230; 
}

.blue-arc {
    fill: none;
    stroke: #2f57ff;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 50 500;
    stroke-dashoffset: -158;
}

/* second row corcle  */
.circle-svg-two {
    transform: rotate(-230deg);
}

.white-arc-two {
    fill: none;
    stroke: #ffffff;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 200 100; 
    stroke-dashoffset: 68;
}

.white-arc-second {
    fill: none;
    stroke: #ffffff;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 140 300; 
    stroke-dashoffset: -230; 
}

.blue-arc-two {
    fill: none;
    stroke: #2f57ff;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 50 500;
    stroke-dashoffset: -158;
}

.inner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.inner-text .counter-txt {
    margin: 0;
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    color: rgba(255, 255, 255, 1);
}

.inner-text p {
  margin: 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 11px;
  text-align: center;

}

/* about css end  */


/* smart scab stection start */
.smart-scalable-section {
  background: #ffffff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.smartmvpsforalltxt {
  /* margin-bottom: 15px; */
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  line-height: 1.3;
}

.section-heading h2 span {
  color: #1d4ed8; 
}

.section-heading p {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.smart-card {
  /* background: #fff; */
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.smart-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(29, 78, 216, 0.2);
}

.smart-card .icon-box {
  background: linear-gradient(180deg, #0B276B 40%, #314DDF 100%);
  width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 10px auto;
  transition: all 0.3s ease;
  display: flex;
}
.icon-box  img{
  max-width: 30px;
  margin: auto;
}
.smart-card:hover .icon-box {
  background: #1d4ed8;
  color: #fff;
}

.headingsmatmvp {
  font-size: 20px;
  font-weight: 600;
  color: rgba(49, 77, 223, 1);
  margin:auto auto auto 5px;
}

.smart-card p {
  color: rgba(0, 0, 0, 1);
  font-size:16px;
  font-weight: 300;
  /* text-align: left;
  padding-left: 40px; */
  text-align: center;
}


/* software development services start */
/* .custom-row {
  gap: 15px;
} */
.services-row-custom {
  padding: 0 50px;
}
@media only screen and (max-width: 768px) {
  .services-row-custom {
    padding: 0 0;
  }
  .smart-scalable-section {
    padding: 20px 5px;
  }
}
.services-main-heading {
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  line-height: 1.2;
}
.services-white-box {
  /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  margin-bottom: 20px; */
  margin-bottom: 20px;
}
.services-white-parent {  
  padding:30px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  margin-bottom: 20px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 825px) and (max-width: 1025px) {
  .services-white-parent {
    padding:30px 15px;
  }
}
.services-white-head {
  font-weight: 600;
  font-size: 20px;
  color: rgba(0, 0, 0, 1);
}
.services-white-sub {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  font-weight: 400;
}
.services-icon-box {
  background: rgba(49, 77, 223, 1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: flex;
}
.services-icon-box img{
  width: 22px;
  object-fit: cover;
  margin: auto;
}
.services-paragrp {
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 0, 0, 1);
}
.services-read-more {
  display: inline-block;
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}

.sevices-sec::after {
  background: rgba(241, 241, 241, 1) !important;
}


/* fearured work css start  */
.featured-work-section {
  background: rgba(241, 241, 241, 1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 25px;
  border-radius: 0 0 20px 20px;
}
.slider-sec-main {
  /* border-radius: 20px; */
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 25px;
    border-radius: 20px;
}
.featured-wor-left {
  background: rgba(255, 255, 255, 1);
  border-radius: 20px 0 0 20px;
}
.featured-wor-right {
  background: rgba(45, 48, 145, 1);
  border-radius: 0px 20px 20px 0px;
}

@media only screen and (min-width: 767px) and (max-width: 1025px) {
  .featured-wor-right img {
    object-fit: contain;
  }
}
.slide-icon-main {
  display: flex;

}

.slider-progress-wrapper {
    width: 90%;    
}

/* .slider-progress {
    width: 100%;
    height: 4px;
    background: #d9d9d9;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.slider-progress-segment {
    height: 100%;
    width: 0%;
    background: #4a6cf7;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 5s linear;
} */

.slider-progress-wrapper {
    width: 90%;
}

.slider-progress {
    width: 100%;
    height: 4px;
    background:#d9d9d9; /* आपका light BG रंग */
    position: relative;
    display: flex;
    /* gap: 4px; */
    margin-top: 25px;
}

.slider-progress-segment {
    flex: 1;
    height: 100%;
    background:rgba(196, 196, 196, 1); /* inactive color */
    border-radius: 10px;
    transition: background 0.4s linear;
}

.slider-progress-segment.active {
    background: rgba(49, 77, 223, 1); /* आपका active color */
}


.pre-next-icon {
    display: flex;
    gap: 12px;
    margin-left: 15px; 
}

.custom-arrow {
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    background: rgba(49, 77, 223, 1) !important;   
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static !important;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    opacity: initial !important;
}

.arrow-symbol {
    font-size: 20px;
    font-weight: bold;
    color: white;              
    line-height: 0;
}

.custom-paragph {
  font-size: 16px;
  color: rgba(0, 0, 0, 1);
  font-weight: 300;
}

.border-bttm {
    position: relative; 
    padding-bottom: 5px;
    display: inline-block;
}
.border-bttm::before {
   content: '';
    display: block;
    width: 60%; 
    height: 2px; 
    background-color: rgba(0, 0, 0, 1); 
    position: absolute;
    bottom: 0; 
}
.feat-left-heading {
  font-weight: 600;
  font-size: 20px;
}
.feat-custom-paragph {
  font-size: 14px;
  color: rgba(0, 0, 0, 1);
  font-weight: 300;
}



/* industries sec start */

.industries-work-section {
  /* padding:90px 0; */
  background: #ffffff;
  position: relative;
  overflow: hidden;
   transition:
    transform 0.4s ease;
  transform: translateY(0);
  /* opacity: 1; */
}

/* 
 .industries-work-section.scrolled-up {
  transform: translateY(140px);
  opacity: 1;
}

.industries-work-section.scrolled-down {
  transform: translateY(-140px);
}  */



.industries-work-section::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(241, 241, 241, 1);
  border-top-left-radius: 20px 20px;
  border-top-right-radius: 20px 20px;
}
.industries-slide-main {
  display: flex;
}
.industries-img-parent {
  text-align: center;
}
.industries-img-parent img {
  border-radius: 20px;
  max-height: 200px;
}
@media only screen and (max-width: 767px) {
  .industries-img-paren{
    text-align: center;
  }
  .industries-img-parent img {
    object-fit: contain;
    width: 100%;
  }
}

.industries-img-txt {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
  margin: 15px 0;
  text-align: center;
}

/* cleint dsay testimonial css  */
.testimonial-section {
  /* padding:90px 0; */
  background: rgba(241, 241, 241, 1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 15px;
  border-radius:0 0 20px 20px;
  position: relative;
  overflow: hidden;
   transition:
    transform 0.4s ease;
  transform: translateY(0);
}

/* .testimonial-section::before {
  content: "";
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
}
.testimonial-section::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  border-top-left-radius: 20px 20px;
  border-top-right-radius: 20px 20px;
} */

.testimonial-slider-main {
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: rgba(0, 0, 0, 1);
    padding: 15px 8px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.company-logo {
    max-width: 130px;
}

.quote-icon {
    font-size: 40px;
    color: #4a6cf7;
    line-height: 0;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
}

/* Remove Bootstrap default indicator styles */
.testimonial-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;

    background-color: #d1d1d1 !important;
    opacity: 1 !important;                 
    border: none !important;
    background-image: none !important;     
    margin: 0 4px !important;              
}

/* Active indicator color */
.testimonial-indicators button.active {
    background-color: #4a6cf7 !important;
}



/* company logo scroller */
.company-logo-testimonial {
  background: rgba(255, 255, 255, 0.8);

  /* margin: 15px 0; */
  /* padding: 8px; */
}
.client-logos-testimonial {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

.logos-track-testimonial {
  display: flex;
  gap: 80px;
  width: calc(250px * 10); /* 10 logos (5 original + 5 duplicate) */
  animation: scrollLogos 22s linear infinite;
}

.company-logo-testimonial {
  /* max-height: 60px; */
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s ease;
}

.company-logo-testimonial:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* our tech section css  */

.skills-wrapper {
    width: 100%;
    padding: 5px 0;
    overflow: hidden;
}

.skills-row {
    overflow: hidden;
    white-space: nowrap;
    /* margin: 15px 0; */
}

.skills-track {
    display: flex;
    animation: scroll-left 18s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.scroll-right .skills-track {
    animation: scroll-right 18s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

/* KEYFRAMES — FAST ➜ SLOW ➜ FAST motion */
@keyframes scroll-left {
    0%   { transform: translateX(0); }
    40%  { transform: translateX(-30%); }
    60%  { transform: translateX(-35%); } /* slow zone */
    100% { transform: translateX(-60%); }
}

@keyframes scroll-right {
    0%   { transform: translateX(-60%); }
    40%  { transform: translateX(-30%); }
    60%  { transform: translateX(-25%); } /* slow zone */
    100% { transform: translateX(0); }
}






/* our latest  blog css start  */
.latest-blog-section {
  background: #ffffff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.latest-blog-parent {  
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.blog-spacing {
  padding: 10px 25px 20px 25px;
}
.latest-blog-head {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 0, 1);
}

.latest-blog-box {
  background: rgba(49, 77, 223, 1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: flex;
}

.latest-blog-paragrp {
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 0, 0, 1);

}
.latest-blog-read-more {
  display: inline-block;
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}




/* get you custom proposal & cost estimate  css start */
/* .btn-light {
  color: rgba(49, 77, 223, 1) !important;
  font-weight: 500;

} */
.wizard-wrapper {
  padding:0 0 20px 0;
}
.steps-box .step {
  opacity: 0.6;
  transition: 0.4s ease;
}
.steps-box .step.active {
  opacity: 1;
}


.steps-box {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(207, 214, 220, 1);
  border-radius: 6px;
  padding:5px 15px;
  gap: 15px;
  margin-top: 80px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  /* border: 2px solid #e6e6e6; */
  border-radius: 10px;
  padding: 12px 18px;
  width: 32%;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .step {
    width: 100%;
  }
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #777;
  flex-shrink: 0;
}
.step-text {
  text-align: left;
}
.step-text strong {
  font-size: 14px;
  color: rgba(13, 11, 38, 1);
}

.step-text p {
  font-size: 12px;
  color: rgba(49, 77, 223, 1);
  display: flex;
  margin: 0;
}

/* ACTIVE STEP */
.step.active {
  border-color: #4a6cf7;
  background: rgba(49, 77, 223, 1);
border-radius: 6px;
opacity: 1;
strong {

color: rgba(255, 255, 255, 1);
}
p {
  color: rgba(171, 183, 194, 1);

}

}

.step.active .step-circle {
  background:rgba(49, 77, 223, 1);
  color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
}

.step .step-circle {
  transition: 0.3s ease;
}

/* जब active हो तब tick दिखे */
.step.active .step-circle {
  font-weight: bold;
}

/* Number हटाकर  डालने का मैजिक */
.step.active .step-circle::before {
  content: "✓";
  font-size: 20px;
  color: #fff;
}

/* Number को hide करें */
.step.active .step-circle {
  color: transparent;
}

/* faq css start  */

.accordion-button::after {
  display: none !important;
}

/* Add custom + icon */
.accordion-button::before {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 26px;
  font-weight: 300;
  color: rgba(61, 61, 61, 1);
  transition: transform 0.2s ease;
}

/* When accordion is OPEN show − */
.accordion-button:not(.collapsed)::before {
  content: "−";
  color: rgba(61, 61, 61, 1);
  font-weight: 300;
}

/* Your existing styles (safe) */
.custom-accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(207, 207, 207, 1) !important;
}

.custom-accordion .accordion-button {
  font-weight: 600;
  box-shadow: none;
  padding: 18px;
  background: #fff;
  color: rgba(0, 0, 0, 1);
  position: relative;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: rgba(0, 0, 0, 1);
  background: #fff;
  box-shadow: none;
  padding-bottom: 8px;
}

.custom-accordion .accordion-body {
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
  padding: 0 16px 16px 16px;
}


/* conatct us css start  */
.contact-us-section {
  padding:90px 0;
  background: linear-gradient(180deg, #0B276B 20%, #314DDF 100%);
  position: relative;
  overflow: hidden;
   transition:
    transform 0.4s ease;
  transform: translateY(0);
  /* opacity: 1; */
}
.contact-befits-icons {
  height: 60px;
  max-width: 100%;
}
.smart-contact-sec,
.conatc-page-seperate::after {
    background: #F3F5FF !important;
}
/* 
 .contact-us-section.scrolled-up {
  transform: translateY(140px);
  opacity: 1;
}

.contact-us-section.scrolled-down {
  transform: translateY(-140px);
}  */


.contact-us-section::before {
  content: "";
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
}
.contact-us-section::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  border-top-left-radius: 20px 20px;
  border-top-right-radius: 20px 20px;
}



.contact-left {
  color: #fff;
}

/* .contact-left h2 {
  font-weight: 700;
  line-height: 1.4;
} */

.con-info-item {
  margin-top: 14px;
  font-size: 14px;
  display: flex;
  color: rgba(255, 255, 255, 1);
}
.con-info-item i {
  align-items: center;
  font-size: 20px;
  margin-right: 10px;
  width: 25px;
}

.con-social-icons {
  display: flex;
  gap: 12px;
}
.con-social-icons a {
  text-decoration: none;
}
.con-social-icons i {
  width: 30px;
  height: 30px;
  border:1px solid rgba(255, 255, 255, 1); 
  color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  /* transition: 0.3s; */
}

.con-social-icons i:hover {
  background: #2b4ad6;
}


/* conatct right css  */
.contact-right {
  background: #fff;
  border-radius: 12px;
  padding: 35px;
}

/* Interest Buttons */
.interest-box button {
  border: 1px solid rgba(49, 77, 223, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background: transparent;
  color: rgba(49, 77, 223, 1);
  padding: 6px 16px;
  border-radius: 6px;
  margin: 5px 10px 8px 0;
  font-size: 13px;
}

.interest-box button.active {
  background: rgba(49, 77, 223, 1);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: rgba(251, 251, 251, 1);

}

/*  Label + Input Same Line */
.form-line {
  display: flex;
  border-bottom: 1px solid rgba(49, 77, 223, 1);
  padding: 5px 0;
  margin-bottom: 20px;
}

.form-line label {
  /* min-width: 120px; */
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 1);

  margin-right: 10px;
}

.form-line input,
.form-line textarea {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  width: 70%;
}
.in-line {
  color: rgba(49, 77, 223, 1);
}
.form-line input:focus,
.form-line textarea:focus {
  border: none;
  outline: none;
}


.input-icon i {
  left: 14px;
  transform: translateY(-50%);
  color: #aaa;
}

.input-icon input {
  padding-left: 40px;
}

/* Country Dropdown */
.country-dropdown {
  max-height: 260px;
  overflow-y: auto;
  border-radius: 10px;
}

.country-dropdown input {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

.country-box {
  position: relative;
}

.country-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
}

.country-dropdown {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding: 5px;
  width: 120px;
  top: 30px;
  z-index: 10;
}

.country-dropdown li {
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.country-dropdown li:hover {
  background: #f2f2f2;
}


/* mvp development compnay section start  */
.mvp-section {
  background: #fff;
}

.mvp-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.mvp-title span {
  color: #4a6cf7;
}

.mvp-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.mvp-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.mvp-subtitle span {
  color: #4a6cf7;
}

.mvp-btn {
  background: #4a6cf7;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 15px;
}

.mvp-btn:hover {
  background: #364ecf;
}

/* Awards */
.award-img {
  max-width: 110px;
  width: 100%;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.3s;
}

.award-img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .mvp-title {
    font-size: 28px;
  }

  .mvp-subtitle {
    font-size: 22px;
  }
}


/* mvp development company section css  */

.mvp-section {
  background: #fff;
}

/* .mvp-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
} */

.mvp-title span {
  color: #4a6cf7;
}

.mvp-desc {
  font-size: 16px;
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
}


.mvp-btn {
  background: #4a6cf7;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 15px;
}

.mvp-btn:hover {
  background: #364ecf;
}

/* Awards */
.award-img {
  max-width: 110px;
  width: 100%;
  filter: grayscale(100%);
  transition: 0.3s;
}

.award-img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .mvp-title {
    font-size: 28px;
  }

  .mvp-subtitle {
    font-size: 22px;
  }
}



/* footer css start  */
.footer-main {
  background: linear-gradient(180deg, #0B276B 20%, #314DDF 100%);
  padding: 60px 0 20px;
  /* border-radius: 10px; */
}

/* .footer-logo {
  font-weight: 700;
  color: #fff;
}

.footer-logo span {
  font-weight: 400;
} */
.mvpnbeyond-white-logo {
  max-width: 170px;
}

.footer-text {
  font-size: 14px;
  color: rgba(204, 204, 204, 1);

  line-height: 1.7;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links .footer-links-a {
  font-size: 14px;
  color: rgba(204, 204, 204, 1);
  font-weight: 400;
  margin-bottom: 15px;
  cursor: pointer;
  text-decoration: underline;
  display: block;
}

.footer-links .footer-links-a:hover {
  text-decoration: underline;
}
.footer-social a {
  text-decoration: none;
}
.footer-social i {
  /* width: 36px;
  height: 36px; */
  /* border-radius: 50%;
  background: rgba(255,255,255,0.15); */
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #fff;
  cursor: pointer;
}

.footer-bottom {
  /* border-top: 1px solid rgba(255,255,255,0.2); */
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  color: rgba(255, 255, 255, 1);

  font-size: 14px;
}

.footer-bottom a {
  color: #d7dfff;
  margin-left: 15px;
  text-decoration: none;
}

/* font-sze mange in mobile */
@media only screen and (max-width: 991px) {
 .services-main-heading,
 .smartmvpsforalltxt,
 .aboutleftheading,
 .slide-head  {
  font-size: 22px;
 }  
}



/* mvp-to scale page css start  */


.mvp-cards {
  display: flex;
  gap: 14px;
  align-items: stretch;
  height: 360px;
}
.mvp-card-1,
.mvp-card-2 {
   background: url("../img/mvp-to-scale/modern-equipped-computer-lab.png")
              center / cover no-repeat;
}

.mvp-card-3 {
   background: url("../img/mvp-to-scale/web-design-website-coding-concept-1.png")
              center / cover no-repeat;
}
.mvp-card-4 {
   background: url("../img/mvp-to-scale/online-marketing-1.png")
              center / cover no-repeat;
}
.mvp-card-5 {
   background: url("../img/mvp-to-scale/improvement-success-planning-ideas-research-1.png")
              center / cover no-repeat;
}
.mvp-card-6 {
   background: url("../img/mvp-to-scale/business-concept-with-team-close-up-1.png")
              center / cover no-repeat;
}

.mvp-card {
  flex: 1;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 14px;
  transition: flex 0.45s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.mvp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75); 
  z-index: 1;
}

/* ACTIVE WIDTH */
.mvp-card.active {
  flex: 3;
}

/* CONTENT */
.mvp-card .content {
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  transition: all 0.4s ease;

  position: relative;
  z-index: 2;
}

/* HEADING */
/* .mvp-cards-heding {
  transform: rotate(-90deg);
  transform-origin: 84% 148%;
  white-space: nowrap;
  transition: all 0.4s ease;
  font-size: 20px;
  font-weight: 600;
  color: #000;
} */

/* DESCRIPTION */
/* .mvp-card .desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  transform: translateY(10px);
  font-size: 14px;
  font-weight: 300;
} */

/* .mvp-card.active .desc {
  opacity: 1;
  max-height: 1000px;
  transform: translateY(0);
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 300;

} */
.mvp-card.active .content {
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;

  position: relative;
  z-index: 2;
}
.mvp-cards-heding {
position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;

  white-space: nowrap;
  transition: all 0.4s ease;

  font-size: 20px;
  font-weight: 600;
  color: #000;
  /* text-align: center; */
}
.mvp-card.active .mvp-cards-heding{
  position: relative;
    top: auto;
    left: 0;
    text-align: left;
    white-space: normal;
}
.mvp-card .desc {
  overflow: hidden; 
  /* display: none; */
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 300;
}

.mvp-card .desc-inner {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 300;

  display: block;
  transform: translateY(100%);
  opacity: 0;

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

.mvp-card.active .desc-inner {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 300;

  transform: translateY(0);
  opacity: 1;
   transition-delay: 0.15s;
}




.mv-to-scale-tab-sub {
  font-weight: 600;
}
/* ACTIVE STATE */
.mvp-card.active .content {
  justify-content: flex-start; 
}

.mvp-card.active .mvp-cards-heding {
  transform: rotate(0);
}


/* RESPONSIVE */

@media (max-width: 768px) {

  .mvp-cards {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }

  .mvp-card,
  .mvp-card.active {
    flex: unset;
  }

  .mvp-card {
    overflow: hidden;
  }

  /* CONTENT */
  .mvp-card .content,
  .mvp-card.active .content {
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
  }

  /*  HEADING RESET */
  .mvp-cards-heding,
  .mvp-card.active .mvp-cards-heding {
    position: relative;
    top: auto;
    left: auto;
    width: auto;

    transform: rotate(0);
    transform-origin: center;

    margin-bottom: 10px;
    font-size: 18px;
  }

  /*  DESCRIPTION RESET */
  .mvp-card .desc {
    overflow: visible;
  }

  .mvp-card .desc-inner,
  .mvp-card.active .desc-inner {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

/* end */
.mvpsamrtcard-p p {
  padding-left: 15px;
}

.mvp-our-tech::before ,
.mvp-our-tech::after {
  background: rgba(241, 241, 241, 1);
}



/* industris section  */

.industry-section {
   background: rgba(241, 241, 241, 1);
}

/* LEFT CARD */
.industry-info {
    background: url("../img/mvp-to-scale/industries/Delivered-projects-bg.png") no-repeat center/cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background: rgba(49, 77, 223, 1); */
  color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.industry-info .heading-mvp-in {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}
.heading-mvp-in::before {
  content: '';
    display: block;
    width: 30%; 
    height: 2px; 
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    bottom: 0; 
}

.industry-info p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1);

}

/* RIGHT CARDS */
.industry-card {
  background: #fff;
  border-radius: 10px;
  padding: 35px;
  height: 100%;
  text-align: center;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.06); */
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.industry-card img {
  max-height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.industry-card span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.industry-card:hover {
  transform: translateY(-5px);
}



/* the process how we do it section start  */


.process-clr {
  color: rgba(49, 77, 223, 1);

}
.process-section {
  background: #fff;
  position: relative;
}

.process-title {
  font-weight: 600;
 color: rgba(0, 0, 0, 1);

  font-size: 20px;
  margin-bottom: 10px;
}

.process-section ul {
  padding-left: 18px;
}

.process-section li {
  font-size: 16px;
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
  margin-bottom: 6px;
}

.process-image {
  max-width: 1100px;
  width: 100%;
}
@media (min-width: 768px) {
  .minus-margin-top {
    margin-top: -60px !important;
  }
}
@media (min-width: 1024.1px) {
  .minus-margin-top {
    margin-top: -90px !important;
  }
}


/* case study page css start  */

.case-hero {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #f9faff;
}

/* LEFT */
.case-left {
  z-index: 2;
}

.breadcrumb-custom {
  font-size: 14px;
  color: #1e40af;
}

.breadcrumb-custom a {
  text-decoration: none;
  color: #1e40af;
  font-weight: 500;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.hero-title span {
  color: #2563eb;
}

.hero-title .highlight {
  display: inline-block;
  margin-top: 10px;
}

.hero-desc {
  font-size: 16px;
  max-width: 480px;
  margin-top: 20px;
  color: #444;
}

/* RIGHT */
.case-right {
  min-height: 520px;
}

/* BLUE CURVE */
.blue-bg {
  position: absolute;
  right: -120px;
  top: -100px;
  width: 550px;
  height: 550px;
  background: linear-gradient(135deg, #5b8cff, #7ea6ff);
  border-radius: 50%;
  z-index: 1;
}

/* MOBILE MOCKUPS */
.mockup {
  position: absolute;
  z-index: 3;
  width: 180px;
  transform: rotate(-8deg);
}

.mockup-1 {
  right: 140px;
  top: 40px;
}

.mockup-2 {
  right: 40px;
  top: 120px;
  transform: rotate(0deg);
}

.mockup-3 {
  right: 100px;
  top: 260px;
  transform: rotate(8deg);
}

/* CIRCLES */
.circle {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}

.circle.white {
  width: 70px;
  height: 70px;
  border: 8px solid #fff;
  right: 260px;
  top: 140px;
}

.circle.purple {
  width: 40px;
  height: 40px;
  background: #a855f7;
  right: 240px;
  bottom: 80px;
}

.circle.orange {
  width: 60px;
  height: 60px;
  border: 8px solid #f59e0b;
  right: 160px;
  bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .case-hero {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 38px;
  }

  .case-right {
    margin-top: 60px;
    min-height: 420px;
  }

  .mockup {
    width: 140px;
  }

  .blue-bg {
    width: 420px;
    height: 420px;
  }
}

/* case study page css start  */

.case-studies-banner  {
  height: 60vh;
    background: url("../img/case-studies/case-studies-bg.png") no-repeat center/cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 50px;
    overflow: hidden;  
  transition: 
    background-size 1s ease-in-out,
    filter 1s ease-in-out;
}
.case-studies-banner:hover {
  background-size: 105%;
  /* transform: scale(1.02); */
  filter: brightness(1.02) contrast(1.02);
}
.section-img-main-case-studies {
  margin: 0 15px;
  img {
    margin-bottom: 40px;
  }
}

/* .read-more-button {
  color: #658FF5;
  font-size: 20px;
  font-weight: 600;
  background: #fff;
  max-width: 250px;
  padding: 30px 50px;
      position: absolute;
    right: 0;
    bottom: -56px;
    border-radius: 50px 0 0 0;
    cursor: pointer;
    i {
      font-size: 22px;
    }
}
@media only screen and (max-width: 768px) {
  .read-more-button {
    position: relative;
    float: right;
  }
}
.case-studies-page-section::after {
      border-top-right-radius: 20px 0px;
}


.hero-text {
  font-size: 16px;
  opacity: 0.9;
}

.hero-meta span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  position: relative;
}
.border-bootm-line::before {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -3px;
}
.hero-meta strong {
  display: block;
  font-size: 16px;
}

.hero-images img {
  max-width: 100%;
  transform: rotate(-6deg);
} */






/* header css  */

/* .case-studies-banner {
  height: 500px;
  display: flex;
  background-image: url('../img/case-studies/header-bg.png');
  background-repeat: no-repeat;
}
.case-studies-header {
  margin: auto auto auto 0;
}

.section-img-main-case-studies {
  margin: 0 15px;
  img {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
 .case-studies-banner {
  height: auto;
  background-image: none;
 } 
} */

.about-company-dark-insights::before {
    /* display: none; */
    background: #eceef5;
}

/* insights page css start  */
.insights-banner-header {
  position: relative;
  height: 80vh;
  background: url("../img/insights/bg.png") no-repeat center / cover;
  /* margin-bottom: 50px; */
  overflow: hidden;
}
.home-header-bg {
    position: relative;
  height: 80vh;
  background: url("../img/home/bg-home.png") no-repeat center / cover;
  /* margin-bottom: 50px; */
  overflow: hidden;
}
/* overlay */
.insights-banner-header::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgb(0 0 0 / 7%);  */
   background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.6)
  );
  z-index: 1;
}

/* banner content */
.insights-banner-header > * {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

/* Card */
.resource-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* PDF Icon */
.pdf-icon {
  position: relative;
  min-width: 60px;
}

.pdf-icon img {
  width: 60px;
}

/* Title */
.resource-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e40af;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.resource-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1e40af;
}

/* Text */
.resource-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.resource-card .note {
  margin-top: 12px;
}


/* Responsive */
@media (max-width: 768px) {
  .resource-card {
    padding: 20px;
  }

 

  .pdf-icon {
    margin-bottom: 15px;
  }
}


/* get new insights secrh section css  */
.newsletter-section {
  padding: 50px 0;
  background: linear-gradient(90deg, #eef3ff 0%, #ffffff 60%);
}

/* Text */
.newsletter-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.newsletter-text {
  font-size: 14px;
  color: #555;
  max-width: 480px;
}

/* Form */
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 15px;
}

.newsletter-form .form-control {
  height: 52px;
  border-radius: 30px;
  padding: 0 20px;
  border: 1px solid #6b7280;
  font-size: 14px;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  border-color: #1e40af;
}

.newsletter-form .subscribe-btn {
  min-height: 52px;
  border-radius: 30px;
  background: #1e40af;
  border: none;
  font-weight: 500;
  min-width: 120px;
}

.newsletter-form .btn:hover {
  background: #1d4ed8;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form .subscribe-btn {
    width: 100%;
  }
}


/* about us page css start  */
.about-us-main {
  p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7em;
  }
}
.about-us-banner {
   height: 60vh;
 /*  background: url("../img/about-us/insigts-bg-png.png") no-repeat center/cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 50px; */
}

.about-section {
  color: #ffffff;
}


.what-willgetsection {
  span {
    font-weight: bold;
  }
}
 .ab-aounter-main {
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  justify-content: center;
  align-items: center;
  background:  linear-gradient(180deg, #F9F8FC 0%, #EDEFFA 100%);
}

.ab-counter-main {
  img {
    max-height: 60px;
  } 
  .ab-counter-bumber{
      font-size: 32px;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: 1.7px;
    color: #284ba1;
  }
  p {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.7px;
    color: #284ba1;
  }
}

/* .ankit-sir-img {
  max-width: 520px !important;
} */
@media only screen and (min-width: 768px) {
  .ankit-sir-img {
    max-width: 520px !important;
  }
}
.about-section-topheading {
  font-size: 22px;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}
.about-section-topheading::before {
  content: '';
    display: block;
    width: 15%; 
    height: 2px; 
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    bottom: 0; 
}


/* drven by perpose css  */

.purpose-section {
  color: #fff;
}
.small-title {
  letter-spacing: 1px;
  /* color: #314ddf; */
}

.main-title {
  font-weight: 700;
  font-size: 32px;
  max-width: 900px;
  margin: auto;
}

.lead-text {
  max-width: 850px;
  margin: auto;
  font-size: 16px;
  /* color: #555; */
}

/* Divider */
.divider {
  width: 70px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
}

/* Cards */
.feature-card {
  background: #fff;
  color: #222;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  margin-right: 20px;
}



.feature-card p {
  font-size: 14px;
  /* color: #666; */
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 24px;
  }
}


/* Empowering section css start  */

.Empowering-main {
  color: #fff;
}
.border-bttm-before::before {
  background-color: #fff !important;
}

.about-us-card {
    background: #fff;
    color: #222;

    /* color: #fff; */
    border: 1px solid #FFFFFF80;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
}


/* timeline */
.timeline-wrapper {
  position: relative;
  /* max-width: 1100px; */
  margin: 50px auto;
  padding: 50px 0;
}

/* center line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  height: 100%;
  background: #cfd8dc;
  transform: translateX(-50%);
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #314ddf;
  transform-origin: top;
  transform: scaleY(0);
}

/* items */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 10px 20px 30px;
}

.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }



/* Tablet & Mobile */
@media (max-width: 991px) {

  .timeline-wrapper {
    padding-left: 30px;
    padding-right: 15px;
  }

  .timeline-line {
    left: 20px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 40px;
    padding-right: 10px;
  }

  .year {
    text-align: left;
  }

  .timeline-item.left .year::after,
  .timeline-item.right .year::after {
    margin-left: 0;
  }

  .timeline-item.left .card::before,
  .timeline-item.right .card::before {
    left: -18px;
    right: auto;
    border-width: 18px 18px 18px 0;
    border-color: transparent #d6d6d6 transparent transparent;
  }
}

/* Small Mobile */
@media (max-width: 575px) {

  .timeline-wrapper {
    padding-left: 20px;
  }

  .timeline-line {
    left: 15px;
  }

  .timeline-item {
    padding-left: 35px;
  }

  .card {
    padding: 15px;
  }

 

  .fs-5 {
    font-size: 16px !important;
  }

  .card p {
    font-size: 13px;
  }
}


/* year text + divider */
.year {
  display: block;
  font-weight: 700;
  color: #314ddf;
  letter-spacing: 1px;
  text-align: center;
  font-weight: bold;
  /* margin-bottom: 12px; */
}

.timeline-item.left .year::after,
.timeline-item.right .year::after {
  content: "";
  display: block;
  height: 1px;
  background: #000;
  margin-top: 10px;
}

.timeline-item.left .year::after { margin-left: auto; width: 100%; }
.timeline-item.right .year::after { width: 100%; }

/* card */
.card {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow:0px 5px 5px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0 !important;
  border: none !important;
}

.card h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* grey notch */
.timeline-item.left .card::before,
.timeline-item.right .card::before {
  content: "";
  position: absolute;
  top: 25px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-item.left .card::before {
  right: -18px;
  border-width: 18px 0 18px 18px;
  border-color: transparent transparent transparent #d6d6d6;
}

.timeline-item.right .card::before {
  left: -18px;
  border-width: 18px 18px 18px 0;
  border-color: transparent #d6d6d6 transparent transparent;
}

/* services css start  */

.Empowering-Businesse {
  border-radius: 12px;
  background: linear-gradient(180deg, #0B276B 20%, #314DDF 100%);
  padding: 40px 30px;
  color: #fff;
}
.Empowering-Businesse-heading {
  font-size: 28px;
  line-height: 1.3em;
}
.Empowering-Businesse-p {
  font-size: 14px;
  line-height: 1.7em;
}
.MVP-Scale-sec-main {
  border-radius: 12px;
  border: 1px solid #A9A9A9;
}
.MVP-Scale-ser {
  font-size: 14px;  
  padding: 30px;
}
.sevices-sec-heading {
  font-size: 28px;
  line-height: 1.3em;
  color: #000000;
  font-weight: 600;
}
.MVP-Scale-ser p {
  font-size: 14px;
  line-height: 1.7em;
  color: #252525;

}
.ser-icon-heading {
  font-size: 16px;
  color: #284ba1;
  font-weight: 600;
  letter-spacing: 1.7px;
}


.services-image-bg {
  background: url('../img/services/serv-bg-image.png');
   background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.web-dev-services-image-bg {
  background: url('../img/services/Web-Development-bg.png');
   background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/* services css end */