@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* Global */
body {
  overflow-x: hidden;
  background-color: #eff4f6;
}

/* Header */
header {
  /* position: absolute; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

header .navbar {
  padding: 20px 0;
  display: flex;
  align-items: center;
}

header .navbar .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #000 !important;
  padding: 10px 20px !important;
}

header .navbar .nav-link.active {
  color: #148fc5 !important;
}

header .more-link {
  margin-top: 0;
}

.mvp-header {
  /* Absolute header doesn't affect flow, margin removed */
}

.more-link {
  background-color: #1b9cd4;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: normal;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.more-link:hover {
  background-color: #148fc5;
  color: #fff;
}

.more-link img {
  margin-left: 10px;
  width: 14px;
}

/* Typography */
p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: "Poppins", sans-serif;
  color: #131415;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.section-heading p {
  font-family: "Poppins", sans-serif;
  color: #616169;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .section-heading h2 {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .section-heading h2 {
    font-size: 30px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url("assets/images/casestudy-website/hero-bg.png") center center / cover no-repeat;
  padding: 180px 0 120px;
  overflow: visible;
  min-height: 860px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121345;
  opacity: 0.9;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Hero Content (Left Side) */
.hero-content {
  position: relative;
  z-index: 3;
  animation: heroFadeUp 0.8s ease-out both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 74px;
  /* line-height: 28px; */
  letter-spacing: 0%;
  text-transform: capitalize;
}

.hero-content p {
  font-family: "Poppins", sans-serif;
  margin-bottom: 36px;
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0%;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #27ace0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.hero-btn-primary:hover {
  background-color: rgb(20, 143, 197);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20, 143, 197, 0.45);
}

.hero-btn-primary span {
  font-size: 18px;
  line-height: 1;
}

/* Hero Image (Right Side) - Positioned outside container, overlaps right edge */
.hero-image-wrapper {
  position: absolute;
  right: -80px;
  /* bottom: -60px; */
  width: 55%;
  z-index: 2;
  animation: heroSlideIn 1s ease-out 0.3s both;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

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

/* Decorative Circle Behind Laptop */
.hero-circle {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(30, 80, 130, 0.35);
  top: 50%;
  /* right: 0; */
  transform: translate(10%, -50%);
  z-index: 0;
}

/* Laptop Mockup */
.hero-laptop {
  position: relative;
  z-index: 1;
  width: 113%;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.35));
}

/* Hero Bottom Rounded Curve */
.hero-bottom-curve {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.hero-bottom-curve svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* Hero Popup Info Bar */
.hero-popup-section {
  position: relative;
  z-index: 3;
  padding: 0;
  margin-top: -40px;
  background: transparent;
}

.hero-popup-bar {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.hero-popup-bar .row {
  margin: 0;
}

.hero-popup-bar .row>div {
  padding: 0;
}

.hero-popup-item {
  padding: 10px 28px;
  border-right: 1px solid #27ace0;
}

.hero-popup-item.last {
  border-right: none;
}

.hero-popup-item h5 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
}

.hero-popup-item p {
  font-family: "Poppins", sans-serif;
  color: #232326;
  margin: 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0%;
}

/* Hero Responsive */
@media (max-width: 1400px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-image-wrapper {
    width: 50%;
    right: -60px;
    bottom: -50px;
  }

  .hero-circle {
    width: 550px;
    height: 550px;
  }
}

@media (max-width: 1199px) {
  .hero-section {
    padding: 160px 0 100px;
    min-height: 560px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-image-wrapper {
    width: 48%;
    right: -40px;
    bottom: -40px;
  }

  .hero-circle {
    width: 420px;
    height: 420px;
  }

  .hero-popup-item {
    padding: 10px 20px;
  }

  .hero-popup-item h5 {
    font-size: 16px;
  }

  .hero-popup-item p {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
    min-height: auto;
    text-align: center;
    overflow: hidden;
  }

  .hero-content {
    margin-bottom: 50px;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  /* Switch to relative positioning on tablet/mobile */
  .hero-image-wrapper {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out;
  }

  .hero-laptop {
    width: 90%;
    max-width: 550px;
    margin: 0 auto;
  }

  .hero-circle {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-bottom-curve {
    bottom: -1px;
  }

  .hero-popup-section {
    margin-top: 0;
    padding: 30px 0;
  }

  .hero-popup-bar {
    padding: 20px;
  }

  .hero-popup-item {
    border-right: none;
    border-bottom: 1px solid #eef2f6;
    padding: 20px 10px;
    text-align: center;
  }

  .hero-popup-item:last-child {
    border-bottom: none;
  }

  .hero-popup-item h5 {
    font-size: 22px;
  }

  .hero-popup-item p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 100px 0 40px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-btn-primary {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero-popup-item h5 {
    font-size: 18px;
  }

  .hero-popup-item p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 120px 0 30px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-btn-primary {
    padding: 12px 28px;
    font-size: 14px;
  }

  .hero-laptop {
    width: 90%;
    max-width: 100%;
  }

  .hero-circle {
    width: 280px;
    height: 280px;
  }

  .hero-popup-bar {
    padding: 20px 10px;
    border-radius: 12px;
  }

  .hero-popup-item h5 {
    font-size: 18px;
  }

  .hero-popup-item p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 110px 0 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-circle {
    width: 200px;
    height: 200px;
  }

  .hero-popup-bar {
    padding: 16px 8px;
  }
}

/* Project Overview Section */

.overview-card {
  /* background: #ffffff; */
  /* border-radius: 16px; */
  /* padding: 50px 40px; */
  /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05); */
}

.overview-img-block {
  text-align: center;
  /* padding: 20px; */
}

.overview-img-block img {
  width: 100%;
  height: auto;
}

.overview-content h2 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
}

.overview-content p {
  font-family: "Poppins", sans-serif;
  color: #232326;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}

.overview-content p:last-child {
  margin-bottom: 0;
}

/* Overview Responsive */
@media (max-width: 991px) {
  .overview-section {
    padding: 60px 0;
  }

  /* .overview-card {
    padding: 36px 28px;
  } */

  .overview-img-block {
    margin-bottom: 30px;
  }

  .overview-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .overview-section {
    padding: 50px 0;
  }

  /* .overview-card {
    padding: 28px 20px;
  } */

  .overview-content h2 {
    font-size: 24px;
  }

  .overview-content p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .overview-card {
    border-radius: 12px;
  }

  .overview-content h2 {
    font-size: 22px;
  }

  .overview-content p {
    font-size: 13px;
  }
}

/* Discovery & Requirements Section */

.discovery-img-block {
  overflow: hidden;
  border-radius: 12px;
}

.discovery-img-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.discovery-content h2 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
}

.discovery-content p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #232326;
  line-height: 1.7;
  margin-bottom: 16px;
}

.discovery-content h6 {
  font-family: "Poppins", sans-serif;
  color: #131415;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
}

@media (max-width: 767px) {
  .discovery-content p {
    font-size: 15px;
    line-height: 24px;
  }

  .discovery-content h6 {
    font-size: 17px;
    line-height: 28px;
  }
}

/* Discovery List with arrow icons */
.discovery-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.discovery-section {
  background: #e0ecf1;
}

.discovery-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-family: "Poppins", sans-serif;
  color: #232326;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}

.discovery-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.discovery-goal {
  margin-top: 8px;
  margin-bottom: 0 !important;
}

.discovery-goal strong {
  color: #131415;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
}

@media (max-width: 767px) {
  .discovery-goal strong {
    font-size: 17px;
    line-height: 28px;
  }
}

/* Discovery Responsive */
@media (max-width: 991px) {
  .discovery-section {
    padding: 0 0 60px;
  }

  .discovery-img-block {
    margin-bottom: 30px;
  }

  .discovery-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .discovery-section {
    padding: 0 0 50px;
  }

  .discovery-content h2 {
    font-size: 24px;
  }

  .discovery-content p {
    font-size: 14px;
  }

  .discovery-list li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .discovery-card {
    /* padding: 20px 16px; */
    border-radius: 12px;
  }

  .discovery-content h2 {
    font-size: 22px;
  }

  .discovery-content p {
    font-size: 15px;
  }

  .discovery-list li {
    font-size: 15px;
    gap: 10px;
  }

  .discovery-list li img {
    width: 20px;
    height: 20px;
  }
}

/* Challenges We Addressed Section */
.challenges-content h2 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 48px;
  line-height: 68px;
  letter-spacing: 0%;
}

.challenges-content p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Challenges Diagram */
.challenges-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diagram-row {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.diagram-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  flex: 1;
  max-width: 350px;
}

.diagram-icon {
  margin-bottom: 12px;
  width: 50px;
  height: 50px;
  align-content: center;
  place-self: center;
  background: #e9ecef;
  border-radius: 10px;
}

.diagram-icon img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.diagram-card h6 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0%;
  text-align: center;
}

.diagram-card p {
  font-family: "Poppins", sans-serif;
  color: #232326;
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 16.89px;
  letter-spacing: 0%;
  text-align: center;
}

/* Diagram Connectors */
.diagram-connectors {
  width: 100%;
  max-width: 500px;
  height: 40px;
}

.connector-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Center Box */
.diagram-center {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 3px 0;
}

.diagram-center-box {
  background: linear-gradient(135deg, #1aa3d4, #27ace0);
  border-radius: 12px;
  padding: 24px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(39, 172, 224, 0.3);
}

.diagram-center-box h5 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* Challenges Responsive */
@media (max-width: 991px) {
  .challenges-content {
    margin-bottom: 40px;
    /* padding: 20px 16px; */
  }

  .challenges-content h2 {
    font-size: 28px;
  }

  .challenges-diagram {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .challenges-content h2 {
    font-size: 24px;
  }

  .challenges-content p {
    font-size: 14px;
  }

  .diagram-card {
    padding: 18px 12px;
    max-width: 200px;
  }

  .diagram-card h6 {
    font-size: 13px;
  }

  .diagram-card p {
    font-size: 11px;
  }

  .diagram-center-box {
    padding: 18px 24px;
  }

  .diagram-center-box h5 {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .challenges-content h2 {
    font-size: 22px;
  }

  .challenges-content p {
    font-size: 13px;
  }

  .diagram-row {
    gap: 12px;
  }

  .diagram-card {
    padding: 14px 10px;
    max-width: 160px;
  }

  .diagram-card h6 {
    font-size: 12px;
  }

  .diagram-card p {
    font-size: 10px;
  }

  .diagram-center-box {
    padding: 14px 20px;
  }

  .diagram-center-box h5 {
    font-size: 13px;
  }
}

/* Solution Section */

.solution-section {
  background: #e0ecf1;
}

.solution-section h2 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.solution-section p {
  font-family: "Poppins", sans-serif;
  color: #232326;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 950px;
}

.solution-card {
  background: #eff4f6;
  border: 1px solid #cbd4d8;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.solution-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.solution-icon {
  width: 70px;
  height: 70px;
  background: #e9ecef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.solution-icon img {
  width: 45px;
  height: auto;
}

.solution-card h3 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.solution-card ul li {
  font-family: "Poppins", sans-serif;
  color: #232326;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;

  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}

@media (max-width: 767px) {
  .solution-card ul li {
    font-size: 14px;
    line-height: 24px;
  }
}

.solution-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #121345;
  font-weight: bold;
}

@media (max-width: 991px) {
  .solution-card {
    padding: 30px 20px;
  }

  .solution-card h3 {
    font-size: 20px;
  }
}

/* Features Section */

.features-section h2 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 48px;
  line-height: 63px;
  letter-spacing: 0%;
  text-align: center;
}

.features-section p {
  font-family: "Poppins", sans-serif;
  color: #232326;
  font-weight: 400;
  max-width: 950px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

.feature-card {
  /* background: #ffffff; */
  border: 1px solid #cbd4d8;
  border-radius: 16px;
  padding: 30px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.feature-icon-placeholder {
  width: 50px;
  height: 50px;
  background: #e9ecef;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-placeholder img {
  width: 40px;
  height: auto;
}

.feature-card h6 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin: 0;

  font-weight: 700;
  font-size: 24px;
  /* line-height: 33px; */
  letter-spacing: 0%;
}

@media (max-width: 767px) {
  .feature-card {
    padding: 20px 15px;
  }

  .feature-card h6 {
    font-size: 18px;
  }
}

/* Technology Stack Section */

.technology-section {
  background: #e0ecf1;
}

.technology-content h2 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
}

.technology-content p {
  font-family: "Poppins", sans-serif;
  color: #232326;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}

.technology-logos {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.tech-card {
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tech-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .technology-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .technology-logos {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .tech-card {
    width: 140px;
    height: 140px;
    padding: 20px;
    border-radius: 12px;
  }
}

/* Seamless User Interface Section */
.ui-section h2 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
}

.ui-section p {
  font-family: "Poppins", sans-serif;
  color: #232326;
  font-weight: 400;
  max-width: 950px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}

.ui-section {
  overflow: hidden;
}

.ui-slider-wrapper {
  position: relative;
  padding: 0px 0px 0px 60px;
  overflow: visible;
  margin: 0 auto;
}

.ui-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  justify-self: center;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* padding: 10px 100px 50px 0; */
}

.ui-slider::-webkit-scrollbar {
  display: none;
}

.ui-slide {
  flex: 0 0 82%;
  max-width: 1120px;
  scroll-snap-align: start;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.ui-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.ui-slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.ui-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd4d8;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ui-btn-next {
  background: #27ace0;
  border-color: #27ace0;
}

.ui-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .ui-slide {
    flex: 0 0 90%;
  }
}

@media (max-width: 767px) {
  .ui-slide {
    flex: 0 0 95%;
  }

  .ui-slider {
    gap: 15px;
  }
}

/* Client Feedback Section */

.feedback-section h2 {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
}

.feedback-section p {
  font-family: "Poppins", sans-serif;
  color: #232326;
  max-width: 950px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

.feedback-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.stars {
  color: #ffb400;
  font-size: 26px;
  letter-spacing: 2px;
}

.feedback-text {
  font-family: "Poppins", sans-serif;
  color: #232326;
  font-weight: 400 !important;
  font-size: 20px !important;
  line-height: 32px !important;
  letter-spacing: 0% !important;
  text-align: left !important;
}

.client-name {
  font-family: "Poppins", sans-serif;
  color: #121345;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0%;
}

.client-title {
  font-family: "Poppins", sans-serif;
  color: #2e2f5b;
  margin-bottom: 0;
  text-align: left !important;
  font-weight: 400;
  font-size: 20px !important;
  line-height: 30px !important;
  letter-spacing: 0% !important;
}

@media (max-width: 767px) {
  .feedback-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .feedback-body {
    padding: 30px !important;
  }

  .feedback-text {
    font-size: 14px;
  }
}

/* CTA Section */
.cta-section {
  background-color: #121345;
}

.cta-title {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  margin-bottom: 24px;

  font-weight: 800;
  font-size: 48px;
  /* line-height: 68px; */
  letter-spacing: 0%;
  text-align: center;
}

.cta-desc {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  max-width: 950px;
  margin-bottom: 40px;

  font-weight: 400;
  font-size: 24px;
  line-height: 41px;
  letter-spacing: 0%;
  text-align: center;
}

.btn-cta {
  background-color: #27ace0;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.py-7 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.py-8 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.btn-cta:hover {
  background-color: #1e8ab5;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(39, 172, 224, 0.3);
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-desc {
    font-size: 15px;
    line-height: 25px;
  }

  .btn-cta {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Contact Section */
.contact_section {
  background-color: #ffffff;
}

.contact_wrapper {
  overflow: hidden;
  border: 1px solid #e4e4e4;
}

.contact_info_sidebar {
  padding: 44px;
  background: #fff;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.contact_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  margin-bottom: 40px;
}

.contact_item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact_item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-top: 4px;
}

.contact_text span {
  display: block;
  font-size: 16px;
  color: #616169;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}

.contact_text strong {
  display: block;
  font-size: 20px;
  color: #131415;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.contact_text p {
  font-size: 18px;
  color: #131415;
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.address_item {
  margin-bottom: 40px;
}

.btn_download {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  gap: 12px;
  width: fit-content;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.btn_download:hover {
  background: #27ace0;
  color: #fff;
}

.btn_download span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 28px;
  height: 28px;
  border-radius: 0.25rem;
}

.btn_download span img {
  width: 20px;
}

.contact_illustration {
  margin-top: auto;
  padding-top: 60px;
  margin-left: -60px;
}

.contact_illustration img {
  max-width: 100%;
  width: 257px;
  right: -10%;
  display: block;
  position: absolute;
  bottom: 0;
}

.contact_form_wrapper {
  padding: 60px;
  background: #f9f9f9;
}

.contact_form_wrapper .form-label {
  font-weight: 600;
  color: #131415;
  margin-bottom: 10px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.contact_form_wrapper .form-control {
  border: 1px solid #eef2f6;
  background: #fcfcfc;
  border-radius: 8px;
  padding: 16px 20px;
  height: auto;
  font-size: 16px;
  color: #616169;
  font-family: "Poppins", sans-serif;
}

.contact_form_wrapper .form-select {
  border: 1px solid #eef2f6;
  background: #fcfcfc url("../img/images/down-arrow.svg") no-repeat right 1rem center;
  background-size: 12px;
  border-radius: 8px;
  padding: 16px 20px;
  height: auto;
  font-size: 16px;
  color: #616169;
  font-family: "Poppins", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact_form_wrapper .form-control:focus {
  border-color: #27ace0;
  box-shadow: 0 0 0 4px rgba(39, 172, 224, 0.1);
}

.phone_input_group {
  display: flex;
  gap: 0;
  border: 1px solid #eef2f6;
  border-radius: 8px;
  background: #fcfcfc;
  overflow: hidden;
}

.country_select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  background: transparent;
  border-right: 1px solid #eef2f6;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  color: #131415;
  font-weight: 500;
}

.country_select::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #616169;
  margin-left: 2px;
}

.country_select img {
  width: 20px;
}

.phone_input_group .form-control {
  border: none;
  background: transparent;
  margin-bottom: 0;
}

.btn_submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 18px 36px;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.btn_submit:hover {
  background: #27ace0;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(39, 172, 224, 0.2);
}

.btn_submit img {
  width: 20px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.form-check-label {
  font-size: 16px;
  color: #616169;
  padding-top: 2px;
  padding-left: 8px;
}

/* New Footer */
.footer_section {
  background: #000000;
  color: #ffffff;
  padding: 80px 0 40px;
  font-family: "Poppins", sans-serif;
}

.footer_top h5 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: capitalize;
}

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

.footer_top ul li {
  margin-bottom: 12px;
}

.footer_top ul li a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer_top ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Career Box */
.career_box {
  background: #111111;
  border-radius: 7px;
  padding: 60px 50px;
  margin: 30px 0;
}

.career_box h4 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.career_item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.career_item img {
  width: 24px;
  height: 24px;
}

.career_item span {
  display: block;
  font-size: 13px;
  color: #a0a0a0;
  margin-bottom: 2px;
}

.career_item p {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.btn_inquiry {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #000000;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
  /* border: 1px solid #222; */
  transition: all 0.3s ease;
}

.btn_inquiry:hover {
  background: #1a1a1a;
  border-color: #333;
  color: #ffffff;
}

.btn_inquiry span img {
  width: 14px;
  /* filter: invert(1); */
}

/* Footer About */
.footer_about {
  border-bottom: 1px solid #222;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.footer_about p {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  margin: 0 !important;
  text-align: center;
}

/* Footer Bottom */
.footer_bottom p {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
}

.bottom_links {
  font-size: 13px;
  color: #444;
}

.bottom_links a {
  color: #777;
  text-decoration: none;
  margin: 0 5px;
}

.social_links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social_links span {
  font-size: 13px;
  color: #777;
}

.social_links .icons {
  display: flex;
  gap: 15px;
}

.social_links .icons a {
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social_links .icons a:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .career_box {
    padding: 30px;
  }

  .career_box h4 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .footer_section {
    padding: 60px 0 30px;
  }

  .career_box {
    margin: 40px 0;
  }

  .social_links {
    margin: 20px 0;
  }
}

@media (max-width: 991px) {

  .overview-content h2,
  .discovery-content h2,
  .challenges-content h2,
  .solution-section h2,
  .features-section h2,
  .technology-content h2,
  .ui-section h2,
  .feedback-section h2 {
    font-size: 38px !important;
    line-height: 1.2 !important;
  }

  .overview-content p,
  .discovery-content p,
  .challenges-content p,
  .solution-section p,
  .features-section p,
  .technology-content p,
  .ui-section p,
  .feedback-section p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 767px) {

  .overview-content h2,
  .discovery-content h2,
  .challenges-content h2,
  .solution-section h2,
  .features-section h2,
  .technology-content h2,
  .ui-section h2,
  .feedback-section h2 {
    font-size: 32px !important;
  }
}

@media (max-width: 575px) {

  .overview-content h2,
  .discovery-content h2,
  .challenges-content h2,
  .solution-section h2,
  .features-section h2,
  .technology-content h2,
  .ui-section h2,
  .feedback-section h2 {
    font-size: 28px !important;
  }

  .overview-content p,
  .discovery-content p,
  .challenges-content p,
  .solution-section p,
  .features-section p,
  .technology-content p,
  .ui-section p,
  .feedback-section p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
}

/* Contact Media Queries */
@media (max-width: 1400px) {
  .contact_section .form_block .contact_hand img {
    max-width: 240px;
  }

  .contact_section .form_block .contact_hand {
    left: -190px;
  }

  .contact_section .contact_detail {
    min-width: 270px;
  }
}

@media (max-width: 991px) {
  .contact_section .contact_info {
    padding: 20px;
  }

  .contact_section .contact_detail {
    min-width: 240px;
  }

  .contact_section .form_block {
    padding: 20px 30px;
  }

  .contact_section .form_block .contact_hand img {
    max-width: 200px;
  }

  .contact_section .form_block .contact_hand {
    left: -160px;
  }
}

@media (max-width: 767px) {
  .contact_section .contact_detail {
    min-width: 100%;
    padding: 20px;
  }

  .contact_section .contact_detail:last-child {
    margin-bottom: 20px;
  }

  .contact_section .form_block {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .contact_section .form_block {
    padding: 15px;
  }
}

.client-imgs-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
}

.client-imgs {
  background: #ffffff;
}