body {
  overflow-x: hidden;
}

/* Initial state for GSAP section animations */
section h1, section h2, section h3, section h4, section h5, section h6,
section p, section .text-p, section img, section button, section a,
section .card, section .accordion-item {
  opacity: 0;
  transform: translateY(30px);
}

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

html {
  scroll-behavior: smooth;
}


/* Target the autofill state specifically */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    /* This creates a white or transparent inset shadow that covers the blue/yellow background */
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    
    /* If you truly want it transparent to show a background image/gradient behind it: */
    /* transition: background-color 5000s ease-in-out 0s; */
    
    /* Sets the text color since autofill often forces it to black */
    -webkit-text-fill-color: #333 !important; 
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #1759A5;
  border-radius: 10px;
}

a {
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
}

.container {
  max-width: 1440px;
}

.main-title-h1 {
  font-family: "Urbanist", sans-serif;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  /* letter-spacing: -2px; */
  margin-bottom: 20px;
  text-transform: capitalize;
}


.main-title-h2 {
  font-family: "Urbanist", sans-serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.main-title-h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}


.main-title-h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize;
}

.main-title-h5 {
  font-family: "Urbanist", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}

.main-title-h6 {
  font-family: "Urbanist", sans-serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}

.short-title {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(0.9375rem, 0.85rem + 0.4375vw, 1.375rem);
  line-height: 1.2;
  font-weight: 400;
  color: #101828;
  margin-bottom: 20px;
}

.text-pink {
  color: #F2436E;
}

.text-p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #101828;
  font-family: "Inter", sans-serif;
}

.p-100 {
  padding: 100px 0;
}

.p-50 {
  padding: 50px 0;
}

.title-white {
  color: #fff;
}

.title-black {
  color: #000;
}

.para-grey {
  color: #747474;
}


.gradient-text {
  background: linear-gradient(90deg, #7317A5 0%, #00B3FB 98.08%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Urbanist", sans-serif;
  /* Apply the animation */
  animation: shine 4s linear infinite;
  background-size: 200% auto;
}

/* Define the movement */
@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.primary-btn {
  position: relative;
  font-size: clamp(0.875rem, 0.6078rem + 0.431vw, 1.125rem);
  color: #fff;
  background: linear-gradient(90deg, #7317A5 0%, #00B3FB 98.08%);
  border-radius: 10px;
  height: 56px;
  line-height: 56px;
  display: inline-block;
  padding: 0px 20px;
  transition: 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1;
  min-width: max-content;
  border-radius: 50px;
  background-position: left;
}

.primary-btn svg {
  margin-left: 8px;
  transition: 0.3s ease-in-out;
}

.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.6s ease;
}

.primary-btn:hover svg {
  transform: rotate(60deg);
}

.primary-btn:hover::after {
  left: 120%;
}

.primary-btn:hover::before {
  width: 160%;
}

.primary-btn:hover {
  color: #fff;
  background: linear-gradient(90deg, #00B3FB 0%, #7317A5 98.08%);
  background-position: right;
  background-size: 200% 100%;
}


.secondary-btn {
  position: relative;
  font-size: clamp(0.875rem, 0.6078rem + 0.431vw, 1.125rem);
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 10px;
  height: 56px;
  line-height: 56px;
  display: inline-block;
  padding: 0px 20px;
  overflow: hidden;
  z-index: 1;
  width: max-content;
  transition: all 0.4s ease-in-out;
  border-radius: 50px;
}

.secondary-btn:hover {
  color: #fff;
}

/* Gradient background pseudo-element */
.secondary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00B3FB 0%, #7317A5 98.08%);
  z-index: -1;
  /* keep it behind the text */
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  /* match button rounding */
}

/* Hover: slide in gradient */
.secondary-btn:hover::before {
  left: 0;
}

/* SVG inside button */
.secondary-btn svg {
  margin-left: 8px;
  transition: transform 0.4s ease, margin-left 0.4s ease;
}

/* Hover: rotate/move SVG */
.secondary-btn:hover svg {
  transform: rotate(30deg) translateX(5px);
}


/* header css start */


header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: #000104;
}
header.sticky-header {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


@keyframes slideSticky {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.get-quote-btn:hover {
  color: #fff;
}

header .navbar .collapse .navbar-nav .nav-item a {
  font-weight: 500;
  font-size: 16px;
  color: #1E2939;
  transition: 0.3s ease-in-out;
  padding-right: 1rem;
  padding-left: 1rem;
  position: relative;
}


.white-header .navbar .collapse .navbar-nav .nav-item a {
  color: #fff;
}

.white-header .get-quote-btn {
  color: #fff;
}

.white-header.sticky-header .navbar .collapse .navbar-nav .nav-item a {
  color: #000;
}

header .navbar .collapse .navbar-nav .nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1759A5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

/* Show underline on hover */
header .navbar .collapse .navbar-nav .nav-item a:hover::after {
  transform: scaleX(1);
}

header .navbar .collapse .navbar-nav .nav-item a:hover {
  color: #1759A5;
}

/* header .navbar .collapse .navbar-nav .nav-item .nav-link.active {
    color: #f47a14;
} */


.custom-dropdown {
  position: relative;
}

.custom-dropdown .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  min-width: 180px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.white-header .custom-dropdown .dropdown-list li .dropdown-item {
  color: #000 !important;
}

.custom-dropdown .dropdown-item.active,
.custom-dropdown .dropdown-item:active {
  background-color: transparent !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent !important;
  color: inherit !important;
  /* Keeps the original text color */
  outline: none !important;
  /* Optional: removes focus outline if unwanted */
  box-shadow: none !important;
  /* Optional: removes Bootstrap’s shadow focus */
}

.dropdown-item:focus {
  background-color: transparent !important;
}

.custom-dropdown:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown .dropdown-list li {
  list-style: none;
}

.custom-dropdown .dropdown-list li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.custom-dropdown .dropdown-list li a:hover {

  color: #fff;
}


.blue-header {
  background: #131337;
  transition: none;
}

.blue-header .navbar .collapse .navbar-nav .nav-item a {
  color: #fff;
}

.blue-header.sticky-header {
  background: #131337;
  animation: none;
  box-shadow: none;
}

.blue-header .primary-btn{
  height: 45px;
  line-height: 45px;
}


html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}


/* CURSOR CSS */

.cursor1, .cursor2 {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid #00B3FB;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  /* Remove transition - GSAP handles this now */
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease; 
  /* Use will-change for performance */
  will-change: transform;
  z-index: 9999999999;
}

.cursor2 {
  width: 8px;
  height: 8px;
  background-color: #7317A5;
  z-index: 999999999;
}


/* header css end */



/* main banner css */
.main-banner {
  padding: 80px 0 0 0;
}

/* About sec */

.about .stats-box {
  background: #fff;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.about .stats-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 15px;
  background: linear-gradient(270deg,
      #00B3FB,
      #7317A5,
      #00B3FB);
  background-size: 300% 300%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about .stats-box:hover::before {
  opacity: 1;
  animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

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


/* .about .stats-box::before,
.about .stats-box::after,
.about .stats-box span::before,
.about .stats-box span::after {
  content: "";
  position: absolute;
  background: #7317A5;
  transition: 0.5s;
  border-radius: 15px;
  z-index: 1;
}

.about .stats-box::before {
  height: 3px;
  width: 0;
  top: 0;
  left: 0;
}

.about .stats-box::after {
  width: 3px;
  height: 0;
  top: 0;
  right: 0;
}

.about .stats-box span::before {
  height: 3px;
  width: 0;
  bottom: 0;
  right: 0;
}

.about .stats-box span::after {
  width: 3px;
  height: 0;
  bottom: 0;
  left: 0;
}

.about .stats-box:hover::before,
.about .stats-box:hover span::before {
  width: 100%;
}

.about .stats-box:hover::after,
.about .stats-box:hover span::after {
  height: 100%;
} */

.about .stats-box .stats-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about .stats-box .stats-main .content {
  padding-left: 30px;
}

.about .stats-box .stats-main .img img {
  border-radius: 15px;
}

/* Awards */

.awards .awards-main {
  display: flex;
  column-gap: 20px;
}

.awards .awards-main span {
  display: block;
  margin-bottom: 10px;
}

.awards .awards-main .awards-item {
  background: #171739;
  padding: 30px 20px;
  text-align: center;
  border-radius: 20px;
  flex: 0 0 32.33%;
  position: relative;
  overflow: hidden;
transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}

.awards-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 179, 251, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.awards-item:hover::before {
  opacity: 1;
}

.awards-item:hover {
 background: #1c1c45;
  transform: scale(1.05);
  /* The Glow: Horizontal, Vertical, Blur, Spread, Color */
  box-shadow: 
    0 0 20px 2px rgba(5, 172, 248, 0.4), 
    0 20px 40px rgba(0, 0, 0, 0.4);
  
  /* Add a solid colored border to define the edge */
  outline: 1px solid #05ACF8;
  outline-offset: -1px; /* Keeps the border inside the radius */
  z-index: 10;
}

/* FAQS */

/* .faqs .sticky-head{
  position: sticky;
  top:110px;
} */

.faqs .custom-accordion {
  position: relative;
  /* Avoid animating "all" properties on the container — this can
     conflict with collapse height changes and produce page jumps. Let
     the inner .accordion-collapse handle height transitions. */
  transition: none;
  min-height: 400px;
}

.faqs .custom-accordion .accordion-item {
  background: #131337;
  border: none;
  position: relative;
  border-radius: 11px;
  margin-bottom: 25px;
  transition: background-color 0.35s ease;
  overflow: hidden; /* Keeps the progress bar within the rounded corners */
}

.faqs .custom-accordion .accordion-item:has(.accordion-collapse.show) {
  background-color: #1E1E59;
}

.faqs .custom-accordion .accordion-collapse {
  background: transparent;
  transition: height 0.35s ease; /* Default bootstrap speed */
}

.faqs .custom-accordion .accordion-body {
  /* Prevents content from being visible outside the box while sliding */
  overflow: hidden; 
}

.faqs .custom-accordion .accordion-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px; /* Slightly thicker for visibility */
    width: 0%; /* Start at 0 for animation */;
  background: linear-gradient(90deg, #7317A5 0%, #00B3FB 98.08%);
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
  transition: none; /* We control this via the active class */
    z-index: 10;
    pointer-events: none;
}


/* When the item is active, animate the width */
.faqs .custom-accordion .accordion-item.animating::after {
    width: 100%;
    transition: width 5000ms linear; /* 5s duration - matches JS */
}

.faqs .custom-accordion .accordion-button {
  background: transparent;
  color: #fff;
  transition: color 0.35s ease;
  box-shadow: none !important;
}

.faqs .accordion-button:not(.collapsed)::after{
  background-image: url(../images/arrow.webp);
  transform: rotate(180deg);
}


.faqs .accordion-button:after{
  background-image: url(../images/arrow.webp);
  transform: rotate(0deg);
}

.accordion-button:focus {
  border-color: none;
  box-shadow: none
}

.faqs .custom-accordion .accordion-button svg {
  margin-right: 10px;
}

.faqs .custom-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}

.faqs .custom-accordion .accordion-body {
  background: transparent;
}

/* Portfolio */
.portfolio .box {
  border-radius: 30px;
  padding: 35px 20px 0 20px;
  position: relative;
  height: 550px;
  overflow: hidden;
  /* Important for scaling */
}

.portfolio .box span {
  display: block;
  margin-bottom: 10px;
  margin-top: 20px;
}

.portfolio .box .icon {
  position: absolute;
  content: "";
  top: 15px;
  right: 15px;
  transition: transform 0.5s ease;
  /* Smooth rotation */
}

.portfolio .box:hover .icon {
  transform: rotate(70deg);
  /* Full rotation */
}

.portfolio .box .img {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: transform 0.5s ease;
  /* Smooth scaling */
  transform-origin: bottom right;
  /* Scale from bottom-right corner */
}

/* On hover of the box, scale the image */
.portfolio .box:hover .img {
  transform: scale(1.05);
  /* Slight zoom */
}

.portfolio .box-bottom.box-border {
  border: 1px solid #000;
}

.portfolio .box-bottom {
  border-radius: 20px;
  padding: 0px 20px;
  text-align: center;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.portfolio .box.box-new {
  padding: 35px 20px;
  height: 100%;
}


/* Core Featuures */

.core-features .core-main {
    display: flex;
    column-gap: 150px;
    justify-content: center;
    text-align: center;
}

.core-features .core-main .core-item{
  position: relative;
  transition: 0.3s ease-in-out;
}

.core-features .core-main .core-item:hover .icon svg path{
  fill: #fff;
}

/* Smooth text transition */
.core-features .core-main .core-item h3 {
  transition: color 0.35s ease;
}

/* Hover text color */
.core-features .core-main .core-item:hover h3 {
  color: #1759A5;
}

/* Base white line */
.core-features .core-main .core-item::before {
  position: absolute;
  content: "";
  right: -80px;
  top: 0;
  height: 100%;
  width: 2px;
  background: #ffffff69;
  transition: opacity 0.35s ease;
}

/* Gradient line (hidden initially) */
.core-features .core-main .core-item::after {
  position: absolute;
  content: "";
  right: -80px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(0, 179, 251, 0),
    #7317A5,
    #00B3FB,
    rgba(0, 179, 251, 0)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Hover effect */
.core-features .core-main .core-item:hover::before {
  opacity: 0;
}

.core-features .core-main .core-item:hover::after {
  opacity: 1;
}
.core-features .core-main .core-item:last-child:after{
  display: none;
}

.core-features .core-main .core-item:last-child:before{
  display: none;
}


/* Roadmap */

.roadmap .roadmap-box .roadmap-item{
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.roadmap .roadmap-box .box{
  padding: 30px 20px;
background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
border-radius: 20px;
height: 250px;
}

.roadmap .roadmap-box .box.left-box{
  margin-bottom: 150px;
}

.roadmap .roadmap-box .num.left-padd{
  padding-left: 20px;
}

.roadmap .roadmap-box .box.right-box{
  margin-top: 150px;
}

.roadmap .roadmap-box .num.right-padd{
   padding-right: 20px;
}


.roadmap .line-img img{
  height: 1300px;
  width: auto;
}

.roadmap .roadmap-box .num{
  width: 76px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
}


/* Cta */
.cta .box {
  aspect-ratio: 1440 / 457;
  padding-left: 70px;
}

/* Types Mvp */

.types-mvp .box {
  height: 100%;
  padding: 40px 25px;
  background: #1E1E59;
  border-radius: 11px;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  z-index: 0;
}

.types-mvp .box:hover {
  background: #05ACF8;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(5, 172, 248, 0.4), 0 0 20px rgba(5, 172, 248, 0.2);
}

/* Build Mvps */

.build-mvp .box {
  position: relative;
  height: 100%;
  padding: 30px 25px;
  background: #fff;
  border-radius: 22px;
  /* your desired radius */
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.build-mvp .box:hover {
  transform: translateY(-8px);
  /* A soft glow that matches your gradient colors */
  box-shadow: 
    0 20px 30px -10px rgba(115, 23, 165, 0.2), 
    0 20px 30px -10px rgba(5, 172, 248, 0.2);
}

/* Gradient border using pseudo-element */
.build-mvp .box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(270deg, #05ACF8, #7317A5, #00B3FB, #05ACF8);
  z-index: -1;
  border-radius: 24px;
  /* slightly bigger than box radius */
  padding: 2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: moveBorder 3s linear infinite;
}

/* Animate gradient background */
@keyframes moveBorder {
  0% {
    background-position: 0% 50%;
  }

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

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

.mvp-company  .mvp-main{
  display: flex;
  gap: 20px;
}

.mvp-company .mvp-main .mvp-card {
  background: #1E1E59;
  border-radius: 16px;
  padding: 30px;
   height: 350px; /* fixed height */
  flex: 1; /* all cards same base width */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
  border-radius: 30px;
}

/* ONLY HEADING VISIBLE INITIALLY */
.mvp-card p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), max-height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}

.mvp-company .mvp-card.active {
  flex: 1.5;
  background: #00B3FB;
}

.mvp-company .mvp-card.active .icon svg path{
  fill: #fff;
}

/* SHOW CONTENT FOR ACTIVE */
.mvp-card.active p {
  opacity: 1;
  max-height: 250px; /* or something large enough */
}

/* Hover effect */
.mvp-company .mvp-card:hover {
  flex: 1.5;
  background: #00B3FB;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.cta.reimagine-cta .box {
  aspect-ratio: 1458 / 543;
  position: relative;
}

.cta.reimagine-cta .box .img {
  position: absolute;
  top:-130px;
  right: 180px;
}

/* Faqs Grey */
.faqs-grey .accordion-item {
    background: #E4E8E9;
    margin-bottom: 30px;
    border-radius: 10px;
    border: transparent;
    padding: 13px 0px;
}

.faqs-grey .accordion-body p{
margin-bottom: 0;
}


.faqs-grey .accordion-button {
  background: transparent;
  color: #000;
  box-shadow: none;
}


/* POC Development */

.tech-stack .main-box {
  padding: 80px 40px;
  border-radius: 40px;
  background: #E2E6E6;
}

.tech-stack .main-box .tech-main{
  display: flex;
  justify-content: center;
  column-gap: 30px;
}


.tech-stack .main-box .tech-main .tech-item {
    background: #fff;
    border-radius: 18px;
    padding: 30px 30px;
    text-align: center;
    flex: 0 0 24%;
}

.mvp-company.mvp-poc-card .mvp-card{
  height: 370px;
}

.cta.cta-poc .img{
    margin-top: 22px;
    text-align: center;
}


/* footer start */
.footer {
  background-color: #F5F5F5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 0 !important;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

/* .footer-section{
  flex: 0 0 33.33%;
}  */

.footer-section .footer-item {
  margin-top: 30px;
}


.footer a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 1.2;
}

.footer a:hover,
.footer .highlight {
  color: #F2436E;
}

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

.footer ul li {
  margin-bottom: 20px;
}

.footer-section .footer-item p {
  max-width: 70%;
}


.footer-section ul li a {
  color: #000;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 1.2;
  padding-bottom: 5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a svg {
  margin-right: 5px;
}

.footer-section ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #11153C;
  transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-section ul li a:hover {
  color: #11153C;
}

.footer-bottom {
  padding: 20px 0;
}

.footer hr {
  border: 1px solid #000;
}


/* footer end */



/* cta new */

.cta-new .cta-box {
  aspect-ratio: 1458 / 331;
  padding: 0 60px;
}


/* web client css */

.web-dubai-client .web-client-slider {
    height: 100%;
    padding-bottom: 60px;
}
.web-dubai-client .web-client-slider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 15px 0 0;
}
.web-dubai-client .web-client-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #131337;
    position: relative;
}
.web-dubai-client .web-client-slider .swiper-pagination .swiper-pagination-bullet-active:after {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    border-radius: 100px;
    top: -6px;
    right: -6px;
    border: 1px solid #05ACF8;
}
.web-dubai-client .web-client-slider .client-box {
    padding: 35px 25px;
    border-radius: 20px;
    height: 100%;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.web-dubai-client .web-client-slider .client-box .client-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.web-dubai-client .web-client-slider .client-box .client-flex .client-num {
   font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    color: #131337 ;
    font-weight: 600;
      font-family: "Urbanist", sans-serif;
}
.web-dubai-client .web-client-slider .client-box .client-flex .client-num svg {
    margin-left: 10px;
}
.web-dubai-client .web-client-slider .client-box p {
    margin-bottom: 0;
    color: #000;
}


/* Maimi */

.mvp-company.miami-company .mvp-card{
  height: 370px;
}


/* Form sec css */

.form-sec .form{
  max-width: 750px;
  padding: 50px 30px;
  margin-left: auto;
  background: #E3ECF0;
border: 1px solid #E3ECF0;
border-radius: 30px;
}

.form-sec .form h2{
  font-weight: 600;
}

.form-sec .form p{
  margin-bottom: 0;
}

.form-sec .form .form-group.from_item{
  margin-bottom: 20px;
} 

.form-sec .form .form-group.from_item input {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #000;
    height: 60px;
    /* line-height: 60px; */
    padding: 0;
    width: 100%;
    background: transparent;
    /* 1. Remove default borders first */
    border: none; 
    /* 2. Then apply the specific bottom border */
    border-bottom: 2px solid #000; 
    border-radius: 0; /* Ensures no rounded corners from Bootstrap interfere */
}

.form-sec .form .form-group.from_item input::placeholder , .form-sec .form .form-group.from_item textarea::placeholder {
   font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #000;
}

.form-sec .form .form-group.from_item textarea {
    color: #000;
    background: transparent;
    /* Adjust height to auto or a fixed value that fits 2-3 lines */
    min-height: 60px; 
    /* Line height should be a standard ratio, e.g., 1.5 or 24px */
    line-height: 1.5; 
    overflow: hidden;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid #000;
    border-radius: 0;
    /* Add a small amount of top padding to align text vertically */
    padding: 17px 0 5px 0; 
    resize: none; /* Recommended: prevents users from breaking the layout */
}
.form-control:focus{
  outline: none;
  box-shadow: none;
}


.form-sec .form .primary-btn{
    font-family: "Urbanist", sans-serif;
    border:none;
    margin:20px 0 20px;
    width: 100%;
}

.gradient-loader {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50px;
  padding: 6px;
  margin-bottom: 6px;
  /* Updated to your specific brand colors */
  background: conic-gradient(from 135deg at top, #7317A5, #00B3FB); 
  
  /* Masking creates the 'donut' shape and fading trail */
  --m: conic-gradient(#0000 10%, #000);
  -webkit-mask: var(--m);
          mask: var(--m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
          
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to { transform: rotate(1turn); }
}

  .success-wrapper {
      text-align: center;
      padding: 10px 20px;
      animation: fadeIn 0.4s ease-out;
      background: linear-gradient(90deg, #7317A5 0%, #00B3FB 98.08%);
      border-radius: 10px;
      max-width: 80%;
      margin: 0 auto 10px;
      display: flex;
      align-items: center;
      column-gap: 5px;
      color: #fff;
  }


/* Checkmark Animation */
.success-icon { width: 32px; height: auto;}
/* .checkmark-circle { 
    stroke: #7317A5; stroke-width: 2; stroke-dasharray: 166; stroke-dashoffset: 166; 
    animation: stroke 0.5s forwards; 
} */
.checkmark-check { 
    stroke: #00B3FB; stroke-width: 4; stroke-dasharray: 48; stroke-dashoffset: 48; 
    animation: stroke 0.3s 0.5s forwards; 
}

@keyframes stroke { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


/* Contact Page */

.main-banner.contact-banner{
  padding: 80px 0;
}

.main-banner.contact-banner .form-sec{
  margin-right: auto;
}

.main-banner.contact-banner .on-demand-grid{
  margin-top: 30px;
}

.main-banner.contact-banner .on-demand-grid ul{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.main-banner.contact-banner .on-demand-grid ul li{
  border-radius: 10px;
  padding: 15px 10px;
  background:#1E1E59;
  font-size: 14px;
   color: #fff;
   text-align: left;
   margin-bottom: 15px;
   margin-right: 10px;
}

.main-banner.contact-banner .on-demand-grid ul li svg{
  margin-right: 10px;
}

.drives-forward.connect-team .box{
  max-width: 400px;
  height: 100%;
    border-radius: 18px;
    border: 1px solid #F3F4F6;
}
.drives-forward.connect-team .box img {
       border-radius: 20px;
    }



.drives-forward .box .content{
  padding: 35px 20px;
  background: #fff;
}

.drives-forward.connect-team .box .loca-btn svg{
  margin-right: 5px;
}
.drives-forward.connect-team .box .loca-btn{
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  color: #1759A5;
  display: block;
}