body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.mtb-50{
    padding: 50px 20px;
}
#header {
    padding: 10px 0;
}
#header.sticky {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  transition: box-shadow 0.2s ease;
}
#header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
img.logo-img {
    width: 46px;
}
nav.navigation{
	align-items: center;
    justify-content: center;
    display: flex;
}
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 30px;
}
nav ul li a{
	text-decoration: none;
	font-weight: 600;
	color: #515e7a;
}
nav ul li a:hover{
	text-decoration: none;
	font-weight: 600;
	color: #1bafd1;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
.hero-sec {
    position: relative;
}
.video-ico {
    position: absolute;
    top: 75%;
    left: 20%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    background: #f5ffff;
    padding: 10px;
    border-radius: 30px;
    z-index: 1;
}
.video-ico::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: rgba(0, 200, 255, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: wave-pulse 2s infinite ease-out;
}

@keyframes wave-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}
ul {
    list-style: none;
    padding: 0;
}
#services ul li {
	margin: 0 0 10px 0;
	font-size: 18px;
	padding: 15px;
	font-weight: 600;
	color: #515e7a;
	display: flex;
	align-items: center;
}
#services ul li:hover{
    box-shadow: rgba(144, 156, 180, 0.15) 2px 0px 8px 0px;
    border-radius: 20px;
	border-style: solid;
    border-width: 1px;
    border-color: rgba(224, 237, 242, 0.8);
    cursor: pointer;
}
#services ul li img{
    padding-right: 10px;
}
.service-card {
    background: #f5ffff;
    padding: 20px;
    border-radius: 20px;
	color: #515e7a;
}
.service-card img {
    width: 100%;
}
.service-card.show {
    display: block;
    min-height: 450px;
}
.service-card.hide {
	display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
    position: absolute;
    top: 0px;
    right: -40px;
    width: 100%;
    height: 600px;
    overflow: hidden;
    z-index: 1;
}
#calendlyModal .modal-dialog {
	min-width: calc(100% - 400px);
}
.video-background iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* So the user can click buttons on top */
}

.video-background video {
	height: 700px;
	width: 100%;
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  text-align: left;
  font-size: 18px;
  color: #515e7a;
  font-weight: 500;
}
h1, h2, h3, h4, h5 {
	font-family: 'Inter', sans-serif;
	color: #263659;
}
h1{
    
    font-size: 55px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
	padding: 0 0 15px 0;
}
h2 {

    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    padding: 0 0 10px 0;
}
h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    padding: 0 0 10px 0;
}
h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    padding: 10px 0;
	margin: 0;
}
p{
	color: #515e7a;
	font-size: 16px;
	font-weight: normal;
}
.why-us h2, .faqs h2{
	text-align:left;
}
.footer h3, .footer h4{
	color: #fff;
}
.footer h4 {
	font-size: 20px;
	font-weight: normal;
}
.heading {
    text-align: center;
    font-size: 18px;
    color: #515e7a;
    font-weight: 500;
	padding: 0 0 30px 0;
}
section {
    padding: 60px 0;
}

footer {
  background: #222930;
  color: #fff;
  padding: 40px 20px;
}

footer a {
  color: #eee;
  text-decoration: none;
}

.btn {
	background: #1bafd1;
	color: #fff;
	padding: 14px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: max-content;
}
.btn:hover {
    background: rgb(22, 152, 182);;
    color: #fff;
}
.btn.btn-center {
	margin: 0 auto;
	display: block;
	width: max-content;
}
.connect-us img {
	width: 30px;
	margin-right: 5px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.card {
  border: 1px solid #1bafd1;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  text-align: left;
}

.carousel-indicators {
    position: relative;
}
.carousel-indicators > button{
    background-color: #f5ffff !important;
}
.carousel-indicators .active{
    background-color: #1bafd1 !important;
}
.carousel-inner {
    position: relative;
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
}
.carousel-control-prev {
    left: 0;
    justify-content: flex-start;
}
.carousel-control-next {
    right: 0;
    justify-content: flex-end;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #515e7a;
    border-radius: 50%;
    background-size: 50%;
}
.img-fluid.mi-circle {
    width: 100px;
    height: 100px;
    object-fit: cover;
    position: relative;
    top: -40px;
}
.comp-img {
    background: #f5ffff;
    padding: 20px 20px 60px 20px;
    border-radius: 10px;
}
.comp-img img {
    width: 50%;
}
.founders-img {
    justify-content: space-evenly;
	gap: 30px;
}
.founders-img img {
    width: 175px;
    height: 175px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #1bafd1;
    padding: 8px;
}
.founder-message {
    align-content: center;
    padding: 0 50px;
}
.founder-box {
    border: 1px solid #1bafd1;
    border-radius: 20px;
    padding: 50px 0;
}
.founder-message p {
    position: relative;
}
.founder-message p::before {
    content: url("../images/left-quote.svg");
    position: absolute;
    left: -35px;
    top: -5px;
    display: inline-block;
}
.founder-message p::after {
    content: url("../images/right-quote.svg");
    position: absolute;
    right: -25px;
    bottom: 0;
    display: inline-block;
}
.accordion-header {
    margin-bottom: 0;
    padding: 0;
	font-size: 18px;
	font-weight: 600;
	color: #515e7a;
}
.accordion-button, .accordion-button:not(.collapsed){
	background: #f5ffff;
	font-size: 18px;
	font-weight: 600;
	color: #515e7a;
	padding: 20px;
}
.accordion-button:focus	{
	outline:0;
	box-shadow: none;
}
.accordion-item {
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
    border: 1px solid #1bafd1 !important;
}
div#root > div > div {
    background: #fff !important;
}
.bookings {
    background: #f5ffff;
}

.logo-slider {
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

/* Animate full duplicated width */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.social-icons ul {
    display: flex;
    justify-content: end;
    gap: 30px;
}
.newsletter button {
	background: #1bafd1;
	border: none;
	padding: 5px;
	color: #fff;
	width: 40px;
	height: auto;
	border-radius: 5px;
}
.newsletter input {
	padding: 5px;
	border: none;
	border-radius: 5px;
}

/*Case study page*/
.case-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.case-card {
  flex: 1 1 calc(33.333% - 13.33px); /* roughly 3 per row */
  box-shadow: rgba(216, 223, 237, 0.5) 0px 4px 12px 0px;
  border-radius: 20px;
  padding: 0;
}
.case-excerpt {
	min-height: 120px;
}
.case-image {
    width: 100%;
    background: #f5ffff;
    padding: 20px;
    height: 250px;
}
.case-content {
    padding: 20px;
}

.case-meta-info {
    display: flex;
    font-size: 14px;
    color: #515e7a;
    gap: 25px;
}
.case-title {
    font-size: 22px;
    font-weight: 600;
}

.social-card {
  flex: 1 1 calc(33.333% - 2rem);
  background: #F5FFFF;
  padding: 1rem;
  border-radius: 10px;
  box-sizing: border-box;
}
.why-us--about .container{
    background: #f5ffff;
    border-radius: 20px;
}
.ai-mindible {
	background: #f5ffff;
}
.case-content a {
	color: inherit;
	text-decoration: none;
}
.newsletter-box button {
    background: #1bafd1;
    border: 1px solid #1bafd1;
    padding: 10px;
    color: #fff;
    height: auto;
    border-radius: 5px;
}
.newsletter-box input {
    padding: 10px;
    border: 1px solid #1bafd1;
    border-radius: 5px;
    background: #f5ffff;
}

.app-card {
	padding: 40px;
	background: #f5ffff;
	border-radius: 20px;
	flex: 0 0 calc(50% - 10px);
	box-sizing: border-box;
}
.approach-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.for-mob{
    display: none;
}
/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 150px;
  }
  
  .video-background{
	  display: none;
  }
  
  .menu-toggle {
    display: block;
  }

  nav.navigation {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    display: none;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  nav.navigation ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 20px;
  }

  nav.navigation.active {
    display: flex;
    width: 60%;
    left: unset;
    top: 66px;
  }
  
  header .btn{
	  display:none;
  }
  
  .founder-box {
    gap: 40px;
  }
  .social-card {
    flex: 1 1 100%;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    flex: 1 1 100%;
  }
  .app-card {
    flex: 0 0 100%;
  }
  .hero {
    position: relative;
    overflow: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-thumb {
    width: 100%;
}
.hero-sec {
    position: relative;
    margin: 50px 0;
}
.video-ico {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    cursor: pointer;
    background: #f5ffff;
    padding: 10px;
    border-radius: 30px;
    z-index: 1;
}
.video-ico::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15%;
    width: 120px;
    height: 120px;
    background: rgba(0, 200, 255, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: wave-pulse 2s infinite ease-out;
}
.founders-img {
    justify-content: space-evenly;
    gap: 10px;
}
.founders-img img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #1bafd1;
    padding: 8px;
}
.for-mob{
    display: block;
}
.for-desk{
    display: none;
}
.mob-gap {
    margin-top: 50px;
}
.social-icons ul {
	display: flex;
	justify-content: unset;
	gap: 30px;
}
}
