    /* @font-face {
    font-family: 'LufgaBlack';
    src: url('../fonts/LufgaBlack.ttf') format('truetype');
} */
@import url("https://fonts.cdnfonts.com/css/lufga");
:root {
  --bg: #000;
  --next-bg: #111;
  --primary-teal: #00b4a6;
  --secondary-teal: #00d4aa;
  --dark-text: #333;
  --light-text: #666;
  --background-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --sc-cards: 4;
  --sc-cardHeight: 77vh;
  --sc-cardTopPadding: 3.5em;
  --sc-cardMargin: 2vw;
}
* {
  font-family: "Lufga", sans-serif;
}
body {
  background: #000;
}
.highlight-text {
    background: linear-gradient(0deg, #028cc5, #35c3bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
 }
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.popup-container {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  position: relative;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.291), inset 0 0 40px rgba(200, 200, 200, 0.149);
}

.form-section {
  padding: 30px;
}

.minus-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: 3px solid black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 25px;
  cursor: pointer;
  z-index: 10;
}

.minus-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.main-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.highlight {
  color: #00d4ff;
}

.subtitle {
  color: #cccccc;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
}

.form-control:focus {
  background: #2a2a2a;
  border-color: #00d4ff;
  box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
  color: white;
}

.form-control::placeholder {
  color: #ffffff;
}

.newsletter-text {
  color: #cccccc;
  font-size: 12px;
  margin-bottom: 25px;
  line-height: 1.4;
}

.submit-btn {
  background: black;
  color: white;
  border: 2px solid white;
  border-radius: 15px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.image-section {
  flex: 1;
  min-height: 100%;
  background-image: url("../images/business.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 0 20px 20px 0; /* optional */
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 212, 255, 0.4) 0%, rgba(0, 153, 204, 0.2) 100%);
  z-index: 1;
}
.form-check-input:checked {
  background-color: #00d4ff;
  border-color: #00d4ff;
}

.form-check-input:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
}

.py-section {
  /* padding-top: 4rem; */
  padding-bottom: 4rem;
}
/* Nav Section */
.menu-toggle {
  background: #000;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  font-size: 1.5rem;
  transition: opacity 0.3s ease;
}

.menu-toggle i{
    color: white;
}
/* Header menu */
.header-menu {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(150%);
  width: 60%;
  max-width: 1100px;
  background: linear-gradient(0deg, #028cc5, #35c3bd);
  border-radius: 50px;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3000; /* menu above everything including toggle */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.3s ease;
}

/* When menu is shown */
.header-menu.show {
  transform: translateX(-35%);
  opacity: 1;
  pointer-events: auto;
}

/* Hide menu toggle when menu is active */
.menu-toggle.hide {
  opacity: 0;
  pointer-events: none;
}

.header-menu .nav-link {
  color: #fff;
  margin: 0 15px;
  /* font-weight: 500; */
  font-size: 1.1rem;
}
.header-menu .btn-quote {
  border: 2px solid #fff;
  border-radius: 25px;
  padding: 6px 20px;
  color: #fff;
  /* font-weight: 600; */
  transition: all 0.3s ease;
}
.header-menu .btn-quote:hover {
  background: #fff;
  color: #0072ff;
}
.close-btn {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-logo {
  width: 60px;
}
/* Hero Section */
/* .hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg);
  color: #fff;
  text-align: center;
  overflow: hidden;
} */
/* .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='2'%3E%3Cpath d='M25,22 L25,28 M22,25 L28,25'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
} */
/* Animated blur circles container */

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #0a0a0f; /* Dark base so rays glow nicely */
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.rays-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: conic-gradient(from 0deg, rgba(208, 0, 255, 0.422) 0deg 10deg, transparent 10deg 20deg, rgba(0, 242, 255, 0.429) 20deg 30deg, transparent 30deg 40deg, rgba(255, 200, 0, 0.308) 40deg 50deg, transparent 50deg 60deg);
  animation: spin 20s linear infinite;
  filter: blur(40px);
  transform: scale(2);
}

@keyframes spin {
  from {
    transform: rotate(0deg) scale(2);
  }
  to {
    transform: rotate(360deg) scale(2);
  }
}

.logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.15s linear;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 100%;
  max-width: 800px; /* limit for large screens */
  height: auto;
  object-fit: contain;
}

/*.logo {*/
/*  position: absolute;*/
/*  z-index: 1;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*  opacity: 0;*/
/*  pointer-events: none;*/
/*  will-change: opacity, transform;*/
/*  transition: opacity 0.15s linear;*/
  /*max-width: 100%;*/
/*  width: 100%;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*}*/
/*.logo img {*/
/*  display: block;*/
/*  width: 100%;*/
/*  max-width: 600px;*/
/*  height: auto;*/
  /*object-fit: contain;*/
/*}*/
.content {
  position: relative;
  z-index: 2;
}
.content h1 {
  margin: 0;
  font-size: 7rem;
  letter-spacing: 1px;
}
.content span {
  font-weight: 400;
}
.content p {
  margin-top: 10px;
  color: #ddd;
  font-size: 1.5rem;
}
.scroll-catcher {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  pointer-events: auto;
}
.scroll-catcher .hint {
  color: #fff;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-catcher .hint i {
  font-size: 1.5rem;
}
.next-section {
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.8rem;
}
.scroll-catcher.removing {
  transition: opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.section-divider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.stack-sc-cards {
  padding-top: 50px;
  background: linear-gradient(180deg, #f4fcff 0%, #eef9fb 40%);
  position: relative;
}

.stack-sc-cards::before {
  content: "";
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='36' height='36' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='6' r='4' fill='%2300c6d6'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 36px 36px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.stack-sc-cards > .container,
.stack-sc-cards > .swipe-note {
  position: relative;
  z-index: 1;
}
.sc-container {
  width: 90%; /* ya 100% agar full width chahiye */
  margin: 0 auto;
}

.sc-card-inner {
  position: relative;
  z-index: 2;
}

#sc-card1 {
  --index: 1;
}
#sc-card2 {
  --index: 2;
}
#sc-card3 {
  --index: 3;
}
#sc-card4 {
  --index: 4;
}

.sc-card {
  position: sticky;
  top: 0;
  padding-top: calc(var(--index) * var(--sc-cardTopPadding));
  background-color: transparent;
  border: none;
}

#sc-card1 .sc-card-body {
  background-color: #fff;
}
#sc-card2 .sc-card-body {
  background-color: #fff;
}
#sc-card3 .sc-card-body {
  background-color: #fff;
}
#sc-card4 .sc-card-body {
  background-color: #fff;
}

.sc-card-body {
  border-radius: 36px;
  border: 2px solid #00c6d6;
  position: relative;
  overflow: visible;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(7, 22, 34, 0.06);
  display: flex;
  justify-content: center;
  align-items: start;
  transition: all 0.5s;
}
.project-sc-card {
  height: -webkit-fill-available;
}

h2 {
  font-size: 2.5em;
}
.project-sc-card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -36px;
  width: 88%;
  height: 48px;
  border-radius: 18px;
  filter: blur(6px);
  z-index: 0;
}
.stacked-shadow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 88%;
  height: 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.04);
  filter: blur(4px);
  z-index: 0;
}

.sc-card-inner {
  position: relative;
  z-index: 2;
}


.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #111;
}

.brand-logo i {
  color: #111;
}

h1.display-title {
  font-size: 30px;
  font-weight: 800;
  margin: 18px 0;
  color: #0f1724;
}
p.lead-desc {
  color: #6b7280;
  max-width: 640px;
}

.btn-outline-accent {
  border-radius: 18px;
  border: 2px solid black;
  padding: 10px 18px;
  background: transparent;
  color: #07172a;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}

/* phone mockup area */
.phone-wrap {
  position: relative;
  height: 360px;
}
.phone-wrap img {
  position: absolute;
  right: -30px;
  max-height: 420px;
  transform: rotate(-12deg);
  z-index: 3;
  border: 10px solid transparent;
  background-clip: padding-box;
}
.phone-wrap img.back {
  right: -80px;
  transform: rotate(10deg) scale(0.95);
  z-index: 2;
  opacity: 0.98;
}
.text-wrapp {
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
  height: 20rem;
}

/* small swipe text */
.swipe-note {
  position: relative;
  text-align: center;
  margin-top: 36px;
  color: #6b7280;
  font-size: 13px;
}
.mouse-icon {
  display: block;
  margin: 0 auto 8px auto;
  width: 30px;
  height: 40px;
  border-radius: 20px;
  border: 2px solid #2b2f30;
  position: relative;
}
.mouse-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #00c6d6;
  border-radius: 50%;
}
/* our-work Section */
/* .our-work {
  background: #000;
  margin: 0;
  overflow-x: hidden;
  position: relative;
}
.our-work::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 35%, #99a975 45%, #276065 50%, #2a3b70 55%, #572660 65%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 100%);
  background-blend-mode: screen;
  filter: blur(50px);
  z-index: 1;
} */
.our-work {
  background: #000;
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

.our-work::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 35%, #99a975 45%, #276065 50%, #2a3b70 55%, #572660 65%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 100%);
  background-size: 300% 300%; /* allow room for shifting */
  background-blend-mode: screen;
  filter: blur(50px);
  z-index: 1;

  /* Animation */
  animation: gradientShift 12s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.custom-curve-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-curve-divider svg {
  display: block;
  width: 100%;
  height: 20px;
}
.section-heading {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.section-heading span {
  color: #2cd4ff;
  font-weight: 700;
}
.section-sub {
  font-size: 2.25rem;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #fff;
}

/* just for testing */

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.row {
    margin-left: 0;
    margin-right: 0;
}


.work-card {
  background: #111;
  border-radius: 15px;
  border: 1px solid white;
  padding: 20px;
  color: #fff;
  transition: all 0.3s ease;
  height: 100%;
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}
.card-header-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-bottom {
  margin-top: 20px;
}
.logo-box {
  width: 35px;
  height: 35px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  margin-bottom: 10px;
}
.work-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}
.work-card p {
  font-size: 0.9rem;
  color: #bbb;
}
.work-text {
  color: #fff;
  margin-bottom: 0;
}
.work-img2 img {
  width: 100px;
}
.btn-work-accent {
  border-radius: 18px;
  border: 2px solid white;
  padding: 10px 18px;
  background: transparent;
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Countered Section */
.stat-section {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding-top: 2rem;
  background: var(--background-gradient);
  position: relative;
}

/* Plus pattern background using CSS
.plus-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle at center, #666 1px, transparent 1px), radial-gradient(circle at center, #666 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: 30px 15px, 30px 45px;
}

.plus-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 28px, #666 28px, #666 32px, transparent 32px, transparent 60px), repeating-linear-gradient(90deg, transparent, transparent 28px, #666 28px, #666 32px, transparent 32px, transparent 60px);
  background-size: 60px 60px;
  background-position: 30px 30px;
  mask: radial-gradient(circle at 30px 30px, black 6px, transparent 6px), radial-gradient(circle at 30px 30px, black 6px, transparent 6px);
  mask-size: 60px 60px;
  mask-position: 0 0, 30px 30px;
} */

.section-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--dark-text);
  letter-spacing: -0.5px;
}

.section-header .highlight {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  color: var(--primary-teal);
  display: block;
  line-height: 0.9;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--light-text);
  font-weight: 400;
}

.stat-item {
  text-align: start;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stat-number {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-image {
  max-width: 450px;
}

.industries-section {
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(90deg, #ffffff, #c4d1e3);
}

/* Neon Blob (light source) */
.neon-blob {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00e0ff 0%, rgba(0, 224, 255, 0.2) 70%, transparent 100%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: pulse 6s ease-in-out infinite;
}

/* Pulse effect for blob */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.industry-category {
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
  border-top-right-radius: 95px;
  padding: 30px 20px 1px;
  z-index: 2;
  position: relative;
}

.industries-section h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
}

.industries-section h2 span {
  color: #00e0ff;
}

.industry-card {
  position: relative;
  background: #111;
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  border: 1px solid #eaeaea; /* normal white border */
  height: 100%;
  overflow: hidden;
}

/* gradient border setup */
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px; /* border thickness */
  background: linear-gradient(0deg, #028cc5, #35c3bd);
  -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;
  pointer-events: none;
  z-index: 1;
}

/* hover state */
.industry-card:hover {
  border-color: transparent; /* hide white border */
  box-shadow: 0px 0px 15px rgba(0, 224, 255, 0.3);
  transform: translateY(-5px);
  z-index: 2;
}

/* show gradient border */
.industry-card:hover::before {
  opacity: 1;
}


.industry-card h5 {
  color: #fff;
  font-weight: 600;
  margin-top: 15px;
}

.industry-card:hover h5 {
  background: linear-gradient(0deg, #028cc5, #35c3bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.industry-card p {
  font-size: 0.9rem;
  color: #aaa;
}

.industry-tags span {
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 0.8rem;
  margin: 5px;
  display: inline-block;
  color: #ccc;
  border: 1px solid #cfcece;
}

/* .industry-card.active {
  border: 2px solid #00e0ff;
} */

.industry-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #cfcece;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00e0ff;
  font-size: 1.5rem;
}

.view-grid {
  display: grid;
  grid-template-columns: auto 1fr; /* button fixed, text flexible */
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.industry-outline-accent {
  border-radius: 18px;
  border: 2px solid white;
  padding: 10px 18px;
  background: transparent;
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
}

.testimonial-section {
  padding: 60px 0;
  color: white;
  border-bottom-left-radius: 95px;
  background: linear-gradient(135deg, #1a2332 0%, #0f1419 50%, #1a2332 100%);
  position: relative;
  /*margin-left: 80px;*/
  overflow: hidden;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* only on right side */
  width: 60%; /* adjust how wide the dotted area should be */
  height: 100%;
  background-image: radial-gradient(rgba(0, 212, 255, 0.3) 2px, transparent 2px);
  background-size: 25px 25px; /* dot spacing */
  opacity: 0.25; /* make subtle */
  z-index: 0;
  pointer-events: none;
}

/* keep content above glow */
.testimonial-section > * {
  position: relative;
  z-index: 1;
}

.testimonial-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.testimonial-heading {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #ffffff;
}

.testimonial-description {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 10px;
}

.testimonial-section .swiper-outer {
  /* overflow: hidden;        */
  position: relative;
  /* padding-left: 145px; */
}

.testimonial-section .swiper {
  padding: 10px 0 20px;
  overflow-y: visible;
  overflow-x: clip;
}

.testimonial-section .swiper-slide-active .testimonial-card {
  border: 2px solid #00bcd4;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
  /* z-index: 7;*/
  /*position: relative; */
}

.testimonial-section .swiper-wrapper {
  align-items: stretch;
}

.testimonial-card {
  /* background: rgba(15, 23, 42, 0.6); */
  background: linear-gradient(135deg, #333333, #161616 50%, #020202);
  border-radius: 30px;
  padding: 32px 28px;
  height: 275px;
  /* border: 1px solid rgba(71, 85, 105, 0.3); */
  /* backdrop-filter: blur(8px); */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.client-info {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10px, -24px);
  display: flex;
  align-items: end;
  margin-bottom: 24px;
}

.client-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
  border: 2px solid rgba(148, 163, 184, 0.3);
  z-index: 20;
}

.testimonial-section .swiper-slide-active .client-avatar {
  border-color: #00bcd4;
}

.testimonial-section .client-details h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.testimonial-section .client-details p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.testimonial-section .testimonial-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: auto;
  flex-grow: 1;
  padding-top: 40px;
  width: 93%;
}

.testimonial-section .rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.testimonial-section .star-icon {
  width: 40px;
  height: 40px;
  color: #00bcd4;
}

.testimonial-section .rating-score {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 4px;
}

/* Custom Swiper Styles */
.testimonial-section .swiper-button-next,
.testimonial-section .swiper-button-prev {
  display: none;
}

.testimonial-section .swiper-pagination {
  display: none;
}

/* Connecting Line */
.testimonial-section .testimonial-card.swiper-slide-active::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #00bcd4, transparent);
  transform: translateY(-50%);
  z-index: 10;
}

.testimonial-section .testimonial-card.swiper-slide-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  width: 30px;
  height: 2px;
  background: linear-gradient(270deg, #00bcd4, transparent);
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-slide {
  height: auto;
}

.work-text {
  color: #fff;
  margin-bottom: 0;
  max-width: 900px;
}

.footer-container {
  background-color: #000;
  color: #fff;
  padding: 60px 0 0 0;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: #fff;
}

.service-link,
.quick-link {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
  font-size: 16px;
  transition: color 0.3s ease;
}

.service-link:hover,
.quick-link:hover {
  color: #20b2aa;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  background: linear-gradient(0deg, #028cc5, #35c3bd);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
  color: #fff;
}

.contact-info h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info p {
  color: #ccc;
  font-size: 16px;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  width: max-content;
  border: 2px solid #eeeeee;
  border-radius: 8px;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  color: #ccc;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: #20b2aa;
  color: #20b2aa;
}

.logo-section {
  margin-bottom: 10px;
}

.about-text {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  /* margin-bottom: 30px; */
}

.cta-section {
  background: linear-gradient(0deg, #028cc5, #35c3bd);
  border-radius: 20px;
  padding: 20px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-content h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  /* margin-bottom: 15px; */
}

.cta-content p {
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  background: #fff;
  color: #20b2aa;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 30px 0;
  margin-top: 40px;
}

.footer-bottom-links {
  display: flex;
  gap: 40px;
  justify-content: end;
}

.footer-bottom-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: #20b2aa;
}

.copyright {
  color: #666;
  font-size: 14px;
}

.post-inspector-banner {
  background-color: #333;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.post-inspector-banner a {
  color: #20b2aa;
  text-decoration: none;
  font-size: 14px;
}

.services-section {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  cursor: none;
  background: white;
}

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.2;
  pointer-events: none;
}

.services-section > *:not(.services-background) {
  position: relative;
  z-index: 2;
}

.services-background svg {
  width: 200%;
  height: 200%;
  transform: perspective(1900px) rotateX(130deg);
}

.section-title {
  color: black;
  font-size: 3rem;
  font-weight: 500;
}

.section-title span {
  color: var(--primary-teal);
  font-weight: 700;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  cursor: none;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Animation for left-to-right movement */
@keyframes marquee-left-to-right {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(+30%);
  }
}

/* Animation for right-to-left movement */
@keyframes marquee-right-to-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.track-left-to-right {
  animation: marquee-left-to-right 70s linear infinite;
}

.track-right-to-left {
  animation: marquee-right-to-left 30s linear infinite;
}

.marquee-card-wrapper {
  flex-shrink: 0;
  width: 25rem;
  padding: 0 0.5rem;
}

.marquee-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  margin: 0;
  z-index: -10;
}

.card-content {
  z-index: 2;
  position: relative;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.card-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.marquee-card:hover .card-image-bg {
  filter: brightness(0.9);
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.cursor-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(0deg, #028cc5, #35c3bd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cursor span {
  font-size: 35px;
  color: #fff;
}

.btn-outline-black {
  border-radius: 18px;
  border: 2px solid black;
  padding: 10px 18px;
  background: transparent;
  color: black;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-btn {
  border-radius: 18px;
  border: 2px solid black;
  padding: 10px 0;
  background: transparent;
  color: black;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
  gap: 8px;
}

.work-text2 {
  color: #000000;
  margin-bottom: 0;
}

/* Top divider */
.custom-shape-divider-top {
  line-height: 0;
  width: 100%;
  overflow: hidden;
  z-index: 3;
  position: relative;
}
.custom-shape-divider-top svg {
  display: block;
  width: 100%;
  height: 20px;
}
.custom-shape-divider-top .shape-fill {
  fill: white;
}

/* Awards section */
.awards-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 40px;
  background: #f8f8f8;
  text-align: center;
  top: -18px;
}

/* Globe SVG */
.globe-svg {
  position: absolute;
  left: 50%;
  top: -48px;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-6deg);
  width: 800px;
  height: 800px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.26;
}

.awards-content {
  position: relative;
  z-index: 2;
  /*max-width: 1100px;*/
  /*margin-top: 60px ;*/

}

.awards-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1;
}
.awards-section h2 span {
  color: var(--teal);
}

.awards-section p {
  max-width: 920px;
  margin: 10px auto 26px;
  color: #666;
  font-size: 18px;
}

.awards-logos {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.awards-logos img {
  max-height: 92px;
  display: block;
}

/* Bottom divider */
.custom-shape-divider-bottom {
  line-height: 0;
  width: 100%;
  overflow: hidden;
  margin-top: -75px;
  z-index: 3;
  position: relative;
}
.custom-shape-divider-bottom svg {
  display: block;
  width: 100%;
  height: 100px;
}
.custom-shape-divider-bottom .shape-fill {
  fill: #35c3bd;
}

/* CTA */
.cta2-section {
  background: linear-gradient(0deg, #028cc5, #35c3bd);
  color: #fff;
  padding: 21px 20px 76px;
  position: relative;
  overflow: visible;
  text-align: left;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
.cta-head {
  font-size: 64px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}
.cta-sub {
  font-size: 20px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.95);
}
.btn-get {
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
}

/* mock phones */
.phone-left {
  position: absolute;
  bottom: -30px;
  width: 220px;
  z-index: 5;
  transform-origin: center;
}
.phone-right {
  position: absolute;
  bottom: 30px;
  width: 370px;
  z-index: 5;
  transform-origin: center;
}
.phone-left {
  top: -38%;
  left: -8%;
  transform: rotate(58deg);
}
.phone-right {
  right: 7%;
  transform: rotate(-20deg);
}
@media (max-width: 1399px) {
    .work-card h5{
        font-size: 18px;
    }
  .header-menu {
    width: 70%;
  }
  .section-sub{
      font-size: 1.8rem;
  }
}
@media (max-width: 1200px) {
  .section-heading {
    font-size: 3rem;
  }
  .logo img {
    max-width: 650px;
  }
}
@media (max-width: 1199px) {
    .work-card p{
        font-size: 12px;
    }
    .work-card h5 {
        font-size: 14px;
    }
    .work-text {
        font-size: 13px;
    }
    .section-sub {
        font-size: 24px;
    }
    .section-title{
        font-size: 40px;
    }
    h1.display-title{
        font-size: 24px;
    }
    .popup-container{
        max-width: 850px;
    }
  .header-menu {
    width: 75%;
  }
}
@media (max-width: 991px) {
    .awards-section h2{
        font-size: 30px;
    }
    .awards-section p{
        max-width: 579px;
        font-size: 14px;
    }
    .industry-category p.text-white{
        font-size: 13px;
    }
    .industries-section h2{
        font-size: 35px;
    }
    h1.display-title {
        font-size: 20px;
    }
    p.lead-desc{
        font-size: 13px;
    }
    .stack-sc-cards .lead{
        font-size: 13px;
    }
    .section-title {
        font-size: 29px;
    }
    .popup-container {
        max-width: 95%;
    }
    .popup-overlay{
        top: 30px;
    }
  .header-menu.show {
    transform: translateX(-55%);
  }
  .section-heading {
    text-align: start;
  }
  .menu-toggle {
    margin: 40px 10px;
  }
  .header-menu {
    top: 24px;
    left: 50%;
    width: 90%;
    transform: translateX(-53%);
    padding: 10px 20px;
  }
  .header-menu .btn-quote {
    padding: 6px 15px;
  }
  .header-menu .nav-link {
    font-size: 16px;
  }
  .content h1 {
    font-size: 5rem;
  }
  .content p {
    font-size: 19px;
    width: 95%;
    margin: 10px auto;
  }
  .main-image {
    max-width: 100%;
  }
  p.lead-desc {
    width: 95%;
  }
  .phone-right,
  .phone-left {
    display: none;
  }
  .view-grid {
    grid-template-columns: 1fr;
    /*text-align: center;*/
  }
  .btn-outline-black, .btn-work-accent, .industry-outline-accent {
    width: max-content;
    justify-content: center;
  }

}
@media (max-width: 895px) {
  .text-wrapp {
    height: auto;
  }
}
@media (max-width: 850px) {
  .sc-card-body {
    padding: 26px 15px;
  }
  h1.display-title {
        font-size: 17px;
    }
  p.lead-desc,
  h1.display-title {
    width: 90%;
  }
  .header-menu {
    transform: translateX(-55%);
  }
}
@media (max-width: 767px) {
    .services-section {
        cursor: default !important;
    }
    .custom-cursor{
        display: none !important;
    }
    .cta-head {
    font-size: 40px;
    }
  .header-menu {
    width: 75%;
  }
  .header-menu.show {
    transform: translateX(-50%);
  }
  .btn-outline-black {
    padding: 10px 5px;
  }
  .popup-overlay {
    width: 90%;
    left: 40px;
    top: 75px; 
    height: 85%;
  }
  .form-section {
    padding: 10px 30px;
  }
  .testimonial-section {
    margin-left: 0;
  }
  p.lead-desc,
  h1.display-title {
    width: 100%;
  }
  .sc-card-body {
    padding: 26px;
  }

  .header-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
    width: 98%;
    top: 20px;
  }

  .nav-wrapp {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 15px;
  }

  .navs {
    flex-direction: column;
    width: 100%;
  }

  .navs .nav-link {
    margin: 10px 0;
    font-size: 1rem;
  }

  .btn-quote {
    margin-top: 15px;
    align-self: flex-start;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    font-size: 2rem;
    background: transparent;
    color: #fff;
  }
  /* .header-menu .nav-link,
  .header-menu .btn-quote {
    margin: 10px 0;
    text-align: center;
  }
  .nav-wrapp {
    flex-direction: column;
  }
  .header-menu {
    top: 26px;
    width: 45%;
    transform: translateX(-19%);
  }
  #closeMenu {
    order: 1;
    margin-left: 0 !important;
  }
  .navs {
    order: 2;
  }
  .btn-quote {
    order: 3;
  }
  .navs,
  .nav-wrapp,
  .header-menu {
    flex-direction: column;
  }
  .menu-toggle {
    margin: 2rem;
  } */
  .section-heading {
    font-size: 2.5rem;
  }
  .testimonial-card {
    height: auto;
    min-height: 300px;
    margin: 0 10px;
  }

  .testimonial-card.swiper-slide-active::before,
  .testimonial-card.swiper-slide-active::after {
    display: none;
  }
  .py-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .main-container {
    margin: 20px;
    padding: 40px 0;
    border-radius: 20px;
  }

  .stat-item {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-heading {
    font-size: 3rem;
  }
  .section-sub {
    font-size: 1.7rem;
  }
  .btn-outline-accent {
    margin: 10px 0;
  }
  .logo {
    max-width: 100vw;
  }
  .logo img {
    width: 600px;
    margin: auto;
  }
  p.lead-desc,
  h1.display-title {
    width: 100%;
  }
}
@media (max-width: 630px) {
  .header-menu {
    transform: translateX(-26%);
  }
}
@media (max-width: 590px) {
  .logo img {
    width: 570px;
  }
}
@media (max-width: 575px) {
    .services-section{
        cursor: default !important;
    }
    .sc-container{
        width: 96%;
    }
  .main-title {
    font-size: 30px;
  }
  .subtitle {
    font-size: 14px;
  }
  .popup-overlay {
    left: 20px;
    /*top: 30px;*/
  }
  .content h1 {
    font-size: 4rem;
  }
  .content p {
    font-size: 20px;
  }
  .main-image {
    max-width: 100%;
  }
}
@media (max-width: 550px) {
    .logo img {
        width: 500px;
    }
}
@media (max-width: 523px) {
    .subtitle {
        font-size: 12px;
    }
}
@media (max-width: 460px) {
    .industries-section h2 {
        font-size: 24px;
    }
    .industry-category p.text-white {
        font-size: 10px;
    }
}
@media (max-width: 480px) {
  .logo img {
    width: 460px;
  }
  .awards-section h2 {
    font-size: 30px;
  }
  .cta-head {
    font-size: 40px;
  }
}
@media (max-width: 440px) {
    .logo img {
        width: 425px;
    }
}
@media (max-width: 400px) {
    .section-header p{
        font-size: 13px;
    }
    .newsletter-text {
        font-size: 10px;
        margin-bottom: 15px;
        line-height: normal; 
    }
    .logo img {
        width: 370px;
    }
}
@media (max-width: 387px) {
    .popup-overlay{
        height: 80%;
        top: 105px;
    }
    .subtitle{
      font-size: 12px;
      margin-bottom: 15px;
      line-height: normal;
    }
    .form-section {
        padding: 10px 15px;
    }
}
@media (max-width: 380px) {
    .newsletter-text{
        font-size: 10px;
        margin-bottom: 15px;
        line-height: normal;
    }
     .subtitle{
        width: 83%;
        font-size: 11px;
    }
    .main-title{
        font-size: 25px;
        width: 83%;
    }
}
@media (max-width: 370px) {
    .content h1 {
        font-size: 2.5rem;
    }
    .content p {
        font-size: 15px;
    }
}
@media (max-width: 350px) {
     .subtitle{
        width: 90%;
    }
}
