:root {
  --cyan: #0ea5e9;
  --purple: #d946ef;
  --indigo: #6366f1;
  --ink: #14162B;
  --muted: #666B85;
  --bg: #FFFFFF;
  --surface: #F7F6FC;
  --surface-2: #EFEDF9;
  --border: #E7E4F5;

  /* Added Standard Colors for Inline CSS */
  --blue: #3b82f6;
  --blue-light: #e0f2fe;
  --pink: #db2777;
  --pink-light: #fce7f3;
  --orange: #ea580c;
  --orange-light: #fff7ed;
  --red: #e11d48;
  --red-light: #fff1f2;
  --green: #10b981;
  --yellow: #eab308;
  --purple-light: #f3e8ff;
  --dark: #1e293b;
  --gray: #64748b;
  --gray-light: #f8fafc;

  --grad: linear-gradient(90deg, var(--cyan), var(--purple));
  --grad-diag: linear-gradient(135deg, var(--cyan) 0%, var(--indigo) 55%, var(--purple) 100%);
}

* {
  box-sizing: border-box;
}

body {
  /* font-family: 'Inter', sans-serif; */
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
}

::selection {
  background: #DCD4FB;
  color: var(--ink);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Standard Utility Classes */
.text-cyan {
  color: var(--cyan) !important;
}

.bg-cyan {
  background-color: var(--cyan) !important;
}

.border-cyan {
  border-color: var(--cyan) !important;
}

.text-purple {
  color: var(--purple) !important;
}

.bg-purple {
  background-color: var(--purple) !important;
}

.border-purple {
  border-color: var(--purple) !important;
}

.text-indigo {
  color: var(--indigo) !important;
}

.bg-indigo {
  background-color: var(--indigo) !important;
}

.border-indigo {
  border-color: var(--indigo) !important;
}

.text-ink {
  color: var(--ink) !important;
}

.bg-ink {
  background-color: var(--ink) !important;
}

.border-ink {
  border-color: var(--ink) !important;
}

.text-muted {
  color: var(--muted) !important;
}

.bg-muted {
  background-color: var(--muted) !important;
}

.border-muted {
  border-color: var(--muted) !important;
}

.text-bg {
  color: var(--bg) !important;
}

.bg-bg {
  background-color: var(--bg) !important;
}

.border-bg {
  border-color: var(--bg) !important;
}

.text-border {
  color: var(--border) !important;
}

.bg-border {
  background-color: var(--border) !important;
}

.border-border {
  border-color: var(--border) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.border-blue {
  border-color: var(--blue) !important;
}

.text-blue-light {
  color: var(--blue-light) !important;
}

.bg-blue-light {
  background-color: var(--blue-light) !important;
}

.border-blue-light {
  border-color: var(--blue-light) !important;
}

.text-pink {
  color: var(--pink) !important;
}

.bg-pink {
  background-color: var(--pink) !important;
}

.border-pink {
  border-color: var(--pink) !important;
}

.text-pink-light {
  color: var(--pink-light) !important;
}

.bg-pink-light {
  background-color: var(--pink-light) !important;
}

.border-pink-light {
  border-color: var(--pink-light) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.border-orange {
  border-color: var(--orange) !important;
}

.text-orange-light {
  color: var(--orange-light) !important;
}

.bg-orange-light {
  background-color: var(--orange-light) !important;
}

.border-orange-light {
  border-color: var(--orange-light) !important;
}

.text-red {
  color: var(--red) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

.border-red {
  border-color: var(--red) !important;
}

.text-red-light {
  color: var(--red-light) !important;
}

.bg-red-light {
  background-color: var(--red-light) !important;
}

.border-red-light {
  border-color: var(--red-light) !important;
}

.text-green {
  color: var(--green) !important;
}

.bg-green {
  background-color: var(--green) !important;
}

.border-green {
  border-color: var(--green) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.border-yellow {
  border-color: var(--yellow) !important;
}

.text-purple-light {
  color: var(--purple-light) !important;
}

.bg-purple-light {
  background-color: var(--purple-light) !important;
}

.border-purple-light {
  border-color: var(--purple-light) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.border-dark {
  border-color: var(--dark) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.border-gray {
  border-color: var(--gray) !important;
}

.text-gray-light {
  color: var(--gray-light) !important;
}

.bg-gray-light {
  background-color: var(--gray-light) !important;
}

.border-gray-light {
  border-color: var(--gray-light) !important;
}

/* Contact Page Styles */
.contact-hero-section {
  background: radial-gradient(circle at 10% 50%, var(--blue-light) 0%, transparent 40%), radial-gradient(circle at 90% 50%, var(--purple-light) 0%, transparent 40%), var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding-top: 160px;
}

.contact-hero-grid-pattern {
  background-image: radial-gradient(var(--blue-light) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: 0.3;
  width: 100%;
  height: 100%;
}

.contact-badge {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--gray-light);
}

.contact-title {
  color: var(--dark);
  letter-spacing: -1px;
}

.contact-title-gradient {
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtitle {
  max-width: 650px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-form-container {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-icon-text {
  font-size: 0.85rem;
  color: var(--indigo);
}

.contact-icon-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--indigo);
  text-transform: uppercase;
}

.contact-info-card {
  background: white;
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.premium-input {
  font-size: 0.9rem;
  font-weight: 500;
}

.premium-input-select {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.premium-textarea {
  height: 140px;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-submit-gradient {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Masterpiece Cards */
.nav-chevron {
  font-size: 0.8rem;
  font-weight: bold;
}

.tech-icon-img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.tech-icon-fa {
  font-size: 2.2rem;
  margin-bottom: 12px;
  height: 40px;
  display: flex;
  align-items: center;
}

.border-divider {
  height: 35px;
}

.filter-django {
  filter: invert(24%) sepia(45%) saturate(1637%) hue-rotate(113deg) brightness(96%) contrast(97%);
}

.masterpiece-card {
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 50px -20px rgba(6, 182, 212, 0.15);
  background-color: var(--bg);
  border: 1px solid var(--cyan);
}

.masterpiece-content {
  padding: 24px 12px;
}

.app-icon-img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 10px;
  background-color: var(--gray-light);
}

.masterpiece-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
}

.masterpiece-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--gray);
}

.masterpiece-badge {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  background-color: var(--blue-light);
  color: var(--cyan);
}

.masterpiece-btn {
  font-size: 0.95rem;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}

.masterpiece-btn:hover {
  background-color: var(--cyan);
  color: white;
}

.masterpiece-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
}

.masterpiece-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

/* ---------- buttons ---------- */
.btn-grad {
  background: var(--grad);
  color: #fff;
  border: none;
  justify-content: center;
  padding: 10px 25px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 14px 28px -10px rgba(124, 58, 237, 0.45);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -10px rgba(124, 58, 237, 0.55);
  color: #fff;
}

.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--ink);
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  transition: all .25s ease;
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ---------- navbar ---------- */
.navbar {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.navbar .nav-link {
  color: #64748b;
  font-weight: 600;
  font-size: 16px;
  margin: 0 5px;
  padding: 8px 10px !important;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

.navbar .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(217, 70, 239, 0.1));
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-tech-card {
  background: var(--cyan);
  color: #fff;
  border-radius: 8px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  box-shadow: 0 8px 16px rgba(14, 165, 233, 0.4);
  transition: all 0.3s ease;
}

.btn-tech-card:hover {
  background: #0284c7;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.5);
}

/* New Tech Tabs Styling */
.tech-tabs-bar {
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  border-radius: 4px;
  overflow-x: auto;
  white-space: nowrap;
  border: 1px solid #e2e8f0;
}

.tech-tabs-bar .nav-link {
  color: #64748b;
  border: none;
  border-radius: 999px;
  padding: 8px 30px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  background: transparent;
  margin: 0 5px;
}

.tech-tabs-bar .nav-link.active {
  color: #ffffff;
  background: var(--grad);
  border: none;
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
}

.tech-tabs-bar .nav-link:hover:not(.active) {
  color: var(--purple);
}

/* Tool card design */
.tool-card {
  background: #ffffff;
  border-radius: 12px;
  width: 150px;
  padding: 30px 15px;
  text-align: center;
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.tool-icon-circle {
  width: 60px;
  height: 60px;
  background: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #d946ef;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Animations ---------- */
@keyframes infiniteFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(8deg);
  }

  66% {
    transform: translateY(10px) rotate(-5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes infinitePulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.float-icon {
  position: absolute;
  z-index: 0;
  animation: infiniteFloat 8s ease-in-out infinite;
}

.float-icon.delay-1 {
  animation-delay: 2s;
  animation-duration: 10s;
}

.float-icon.delay-2 {
  animation-delay: 4s;
  animation-duration: 12s;
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
}

/* ---------- eyebrow / badge ---------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--purple);
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* ---------- hero ---------- */
.hero {
  padding: 160px 0 90px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero h1 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.hero p.lead-copy {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 500px;
  margin: 22px 0 34px;
}

/* isometric illustration */
.iso-wrap {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iso-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.16), rgba(34, 211, 238, 0.08) 55%, transparent 75%);
  filter: blur(4px);
}

/* Interactive Hero Form */
.hero-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 30px 60px -20px rgb(187 185 191 / 81%), 0 0 0 1px inset rgb(106 121 235 / 37%);
}

.hero-form-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--cyan);
  filter: blur(60px);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.btn-pill {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-check:checked+.btn-pill {
  background: var(--surface-2);
  border-color: var(--purple);
  color: var(--purple);
  font-weight: 600;
}

.btn-check:focus+.btn-pill {
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

/* ---------- sections ---------- */
section {
  padding: 100px 0;
}

.bg-surface {
  background: var(--surface);
}

h2.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
}

p.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
}

/* about */
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.15);
  position: relative;
}

.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Glow behind the image wrapper */
.col-lg-6.reveal:first-child {
  position: relative;
}

.col-lg-6.reveal:first-child::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), rgba(34, 211, 238, 0.08));
  filter: blur(25px);
  border-radius: 50%;
  z-index: -1;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-num-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
}

.about-num-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.num-circle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--grad-diag);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 12px -4px rgba(124, 58, 237, 0.4);
}

/* Process Accordion */
.process-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px -15px rgba(76, 29, 149, 0.08);
  overflow: hidden;
}

.process-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
}

.process-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--border);
  transition: color 0.3s ease;
}

.process-item.expanded .process-num {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  flex-grow: 1;
  color: var(--muted);
  transition: color 0.3s ease;
}

.process-item.expanded .process-title {
  color: var(--ink);
}

.process-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.process-item.expanded .process-toggle {
  transform: rotate(180deg);
  background: var(--purple);
  color: #fff;
}

.process-content {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-item.expanded .process-content {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  margin-top: 20px;
}

/* services */
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 16px 34px -22px rgba(76, 29, 149, 0.16);
  transition: transform .3s ease, box-shadow .3s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -20px rgba(76, 29, 149, 0.28);
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--grad-diag);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 18px;
}

.svc-card h4 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.svc-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.mail-details {
  font-size: 18px;
}

.phone-details {
  font-size: 15px;
}

.svc-underline {
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: var(--border);
}

/* projects (Horizontal) */
.proj-card-horizontal {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(76, 29, 149, 0.12);
  transition: transform .4s ease, box-shadow .4s ease;
  height: 100%;
}

.proj-card-horizontal:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -20px rgba(76, 29, 149, 0.22);
}

.proj-content-side {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.proj-visual-side {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.proj-title-lg {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
}

.proj-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.proj-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple);
  background: #F1ECFC;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.store-badge:hover {
  color: #fff;
  opacity: 0.85;
}

.tech-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
}

/* testimonials */
.test-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 16px 34px -22px rgba(76, 29, 149, 0.14);
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-diag);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
}

.test-quote {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-top: 18px;
}

.test-person .name {
  font-weight: 600;
  font-size: 0.92rem;
}

.test-person .role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* industries */
.ind-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  height: 100%;
  transition: transform .2s ease, border-color .2s ease;
}

.ind-row:hover {
  transform: translateY(-3px);
  border-color: var(--purple);
}

.ind-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}

/* achievements */
.stat-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px 20px;
  box-shadow: 0 20px 50px -28px rgba(76, 29, 149, 0.2);
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* contact (Redesigned) */
#contact {
  /* background-image: url('../images/contact-us-bg.webp'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-calendar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px -15px rgba(76, 29, 149, 0.08);
  position: relative;
}

.contact-calendar-card h3 {
  font-size: 25px;
  font-weight: 700;
}

.calendar-mockup {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.mockup-header {
  background: #F8F9FA;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 6px;
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E0E0E0;
}

.avatar-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.contact-main-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px -15px rgba(76, 29, 149, 0.08);
}

.contact-main-card h2 {
  font-size: 31px;
  font-weight: 700;
}

.form-contact {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  box-shadow: none;
}

.form-contact:focus {
  background: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
  outline: none;
}

.file-drop-zone {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.file-drop-zone:hover {
  background: var(--surface-2);
}

.contact-info-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 30px -15px rgba(76, 29, 149, 0.05);
  overflow: hidden;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .border-start-md {
    border-left: 1px solid var(--border);
  }
}

@media (min-width: 425px) {
  .ind-row {
    padding: 10px;
  }
}

/* footer */
footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
}

footer .foot-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Expanding Hover Gallery */
.expanding-gallery {
  display: flex;
  height: 400px;
  gap: 15px;
  width: 100%;
}

.expand-item {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expand-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.5;
  transition: 0.5s;
}

.expand-item:hover,
.expand-item.active {
  flex: 4;
}

.expand-item:hover::before,
.expand-item.active::before {
  opacity: 0.8;
}

.expand-content {
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  color: white;
  opacity: 0;
  transition: all 0.5s ease;
}

.expand-item:hover .expand-content,
.expand-item.active .expand-content {
  bottom: 20px;
  opacity: 1;
}

.expand-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.expand-content p {
  font-size: 0.9rem;
  margin: 0;
  color: #e2e8f0;
}

@media (max-width: 768px) {
  .expanding-gallery {
    flex-direction: column;
    height: 600px;
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:1024px) {
  .hero {
    width: 100%;
    max-width: 100%;
    padding: 140px 0 50px !important;
    overflow: hidden;
  }
}

@media (max-width:768px) {


  .hero h1 {
    font-size: 2.1rem;
  }

  section {
    padding: 64px 0;
  }

  .contact-form-side,
  .contact-info-side {
    padding: 32px 26px;
  }
}


/* ---------- Stats Section ---------- */
.stats-section {
  padding: 0 0 40px 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.stats-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px -15px rgb(0 0 0 / 18%);
  padding: 45px 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #526df53d;
}

.stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
}

.stat-item {
  border-right: 1px dashed var(--border);
  padding: 0 15px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item:last-child,
.stat-item.border-end-0 {
  border-right: none !important;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--grad-diag);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .stat-number {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px dashed var(--border);
    padding: 24px 15px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

}

/* AI Services Map - Premium Redesign */
#ai-services-map {
  background-image: url('../images/service-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
}

.center-title-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 45px 60px;
  border-radius: 24px;
  z-index: 10;
  box-shadow: 0 30px 60px -15px rgba(124, 58, 237, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  text-align: center;
}

.center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(34, 211, 238, 0.05) 50%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.text-purple {
  color: var(--purple);
}

.text-cyan {
  color: var(--cyan);
}

.floating-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(76, 29, 149, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  white-space: nowrap;

  /* Independent properties for silky smooth combination of JS + CSS */
  translate: var(--x, 0px) var(--y, 0px);
  scale: 1;
  transition: scale 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s ease,
    background 0.5s ease,
    border-color 0.5s ease;

  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 5;
}

.floating-pill>i {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.5s ease;
}

.floating-pill:hover {
  scale: 1.1;
  background: #ffffff;
  color: var(--purple);
  border-color: var(--cyan);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15), 0 0 15px rgba(34, 211, 238, 0.2);
  z-index: 100;
}

.floating-pill:hover i {
  color: var(--cyan) !important;
  transform: scale(1.15) translateY(-2px);
}

/* Soft pulse for central box */
.center-title-box {
  animation: softPulse 4s infinite alternate;
}

@keyframes softPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 30px 60px -15px rgba(124, 58, 237, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 40px 80px -10px rgba(34, 211, 238, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  }
}

/* 3D Depth Classes */
.depth-1 {
  font-size: 0.75rem;
  padding: 8px 16px;
  opacity: 0.85;
  z-index: 1;
}

.depth-2 {
  font-size: 0.85rem;
  padding: 10px 20px;
  opacity: 0.95;
  z-index: 2;
}

.depth-3 {
  font-size: 0.95rem;
  padding: 12px 24px;
  opacity: 1;
  z-index: 3;
}

@media (max-width: 991px) {
  .center-title-box {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    animation: none;
    margin: 40px auto;
    width: 90%;
  }

  .floating-pill {
    position: relative;
    display: inline-flex;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 10px;
    opacity: 1;
    transform: none !important;
  }

  #ai-services-map .container {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* WHO WE ARE - Premium Redesign */
.who-premium-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(124, 58, 237, 0.05);
  position: relative;
  overflow: hidden;
}

.who-image-wrap {
  position: relative;
  z-index: 1;
  margin-right: 20px;
  margin-bottom: 20px;
}

.who-image-wrap .main-img {
  width: 100%;
  border-radius: 40px 140px 40px 140px;
  /* Unique organic shape */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

.who-image-wrap .main-img:hover {
  border-radius: 140px 40px 140px 40px;
}

.who-image-wrap .sub-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 65%;
  border-radius: 80px 24px 80px 24px;
  box-shadow: -15px -15px 50px rgba(0, 0, 0, 0.1);
  z-index: 3;
  border: 8px solid #fff;
}

/* CLIENTS MARQUEE */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  /* Faded edges */
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: marquee 30s linear infinite;
}

.marquee-content1 {
  /* display: inline-block; */
  animation: marquee 25s linear infinite;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content img {
  height: 130px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.marquee-content img:hover {
  transform: scale(1.1);
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

/* Unique Text Highlight Animation */
.text-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: var(--ink);
}

.text-highlight::before {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 2px;
  width: 104%;
  height: 35%;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.4), rgba(124, 58, 237, 0.4));
  z-index: -1;
  border-radius: 4px;
  transform: skew(-15deg) scaleX(0);
  transform-origin: left;
  animation: drawHighlight 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes drawHighlight {
  0% {
    transform: skew(-15deg) scaleX(0);
  }

  100% {
    transform: skew(-15deg) scaleX(1);
  }
}

@media (max-width: 768px) {
  .marquee-content img {
    height: 80px;
  }
}

.glass-float-card {
  position: absolute;
  top: 15%;
  left: -35px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 18px 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(255, 255, 255, 1);
  z-index: 4;
  animation: floatUpDown 5s ease-in-out infinite;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-custom {
  display: inline-block;
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-card-modern {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card-modern:hover {
  background: #fff;
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.1);
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.2);
}

.feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.bg-purple-light {
  background: rgba(124, 58, 237, 0.1);
}

.bg-cyan-light {
  background: rgba(34, 211, 238, 0.1);
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .who-image-wrap {
    padding: 0px;
    margin-right: 0px;
  }

  .who-image-wrap .main-img {
    width: 100%;
    border-radius: 10px;
  }

  .who-image-wrap .sub-img {
    width: 60%;
  }
}

/* MAIN SERVICES SECTION CONTAINER (INDUSTRIES) */
.services-sectionv2 {
  position: relative;
  width: 100%;
  height: 400vh;
  background-color: #fafbfc;
  overflow: visible;
  padding: 0 !important;
  margin: -60px 0 !important;
}

.services-sectionv2 .sticky-container {
  position: sticky;
  top: 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.services-sectionv2 .marquee-text {
  position: absolute;
  bottom: 0;
  height: 100%;
  line-height: 100vh;
  display: flex;
  justify-content: center;
  white-space: nowrap;
  font-weight: 900;
  font-family: var(--font-primary, 'Space Grotesk', sans-serif);
  font-size: 20vw;
  letter-spacing: -3px;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  left: 0;
  opacity: 0.9;
  will-change: transform;
  z-index: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: none;
  -webkit-text-stroke: 2px var(--cyan);
  animation: borderGlow 6s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% {
    -webkit-text-stroke-color: var(--cyan);
    text-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
  }

  50% {
    -webkit-text-stroke-color: var(--indigo);
    text-shadow: 0 0 25px rgba(79, 70, 229, 0.5);
  }

  100% {
    -webkit-text-stroke-color: var(--purple);
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
  }
}

.services-sectionv2 .marquee-highlight {
  -webkit-text-stroke: 3px var(--purple);
  animation: borderGlowReverse 6s ease-in-out infinite alternate;
}

@keyframes borderGlowReverse {
  0% {
    -webkit-text-stroke-color: var(--purple);
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  }

  50% {
    -webkit-text-stroke-color: var(--indigo);
    text-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
  }

  100% {
    -webkit-text-stroke-color: var(--cyan);
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
  }
}

.services-sectionv2 .card-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  overflow: visible;
  z-index: 2;
  padding: 0 20px;
}

.services-sectionv2 .service-card {
  position: absolute;
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
}

@media (min-width: 1024px) {
  .services-sectionv2 .service-card {
    flex-direction: row;
  }
}

.services-sectionv2 .fintech-finance {
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .services-sectionv2 .fintech-finance {
    padding: 24px;
  }
}

.services-sectionv2 .fintech-finance .container {
  width: 100%;
}

.services-sectionv2 .fintech-finance .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.col-lg-6-text {
  flex: 0 0 52%;
  max-width: 52%;
}

.col-lg-6-image {
  flex: 0 0 44%;
  max-width: 44%;
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .col-lg-6-text {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-lg-6-image {
    display: none;
  }
}

.services-sectionv2 .sub-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 8px;
}

.services-sectionv2 .section-title {
  font-family: var(--font-primary, 'Space Grotesk', sans-serif);
  font-size: 44px;
  font-weight: 800;
  color: var(--primary-color, #081225);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (max-width: 1200px) {
  .services-sectionv2 .section-title {
    font-size: 32px;
  }
}

.services-sectionv2 .section-description {
  font-size: 15px;
  color: var(--text-desc, #44464a);
  margin-bottom: 24px;
  line-height: 1.6;
}

.services-sectionv2 .sub-title2 {
  font-family: var(--font-primary, 'Space Grotesk', sans-serif);
  font-size: 18px;
  color: var(--primary-color, #081225);
  font-weight: 700;
  margin-bottom: 16px;
}

.services-sectionv2 .solutions-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.services-sectionv2 .solutions-list li {
  font-size: 15px;
  color: var(--primary-color, #081225);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-sectionv2 .solutions-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.services-sectionv2 .link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary, 'Space Grotesk', sans-serif);
  font-size: 16px;
  color: var(--accent-color, #0094ee);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-sectionv2 .link-button:hover {
  color: #0284c7;
  transform: translateX(4px);
}

.services-sectionv2 .link-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.services-sectionv2 .link-button:hover svg {
  transform: translateX(4px);
}

.services-sectionv2 .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  height: 380px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.services-sectionv2 .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-sectionv2 .image-container:hover img {
  transform: scale(1.04);
}

@media (max-width: 1399px) {
  .services-sectionv2 .sticky-container {
    height: 85vh;
  }
}

@media (max-width: 991px) {
  .services-sectionv2 {
    height: auto !important;
  }

  .services-sectionv2 .sticky-container {
    position: relative;
    height: auto;
    overflow: visible;
    display: block;
    padding: 60px 0;
  }

  .services-sectionv2 .marquee-text {
    display: none;
  }

  .services-sectionv2 .card-stage {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    perspective: none;
  }

  .services-sectionv2 .service-card {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    top: auto !important;
  }
}

/* Project Cards Stacking Animation */
.stack-card {
  position: sticky;
  top: 15vh;
  will-change: transform, opacity, filter;
  transform-origin: top center;
  z-index: 10;
}

/* Testimonial Marquee */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.marquee-group {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
}

.marquee-track.left {
  animation: scroll-left 50s linear infinite;
}

.marquee-track.right {
  animation: scroll-right 50s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(calc(-50% - 15px));
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-track:hover {
  animation-play-state: paused;
}

.test-card {
  width: 450px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 16px 34px -22px rgba(76, 29, 149, 0.14);
  white-space: normal;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.test-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(6, 182, 212, 0.25);
  border-color: #06b6d4;
}

.test-quote {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-top: 20px;
  font-style: italic;
}

/* Blog Section */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgb(0 0 0 / 13%);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgb(60 173 242);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-placeholder {
  transform: scale(1.05);
}

.blog-img-placeholder.grad-1 {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.blog-img-placeholder.grad-2 {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.blog-img-placeholder.grad-3 {
  background: linear-gradient(135deg, #f59e0b, #f43f5e);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #0f172a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-title {
  font-family: var(--font-primary, 'Space Grotesk', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: #0094ee;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #0094ee;
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.blog-link i {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-link {
  gap: 12px;
}

/* Footer Vasundhara Style */
.footer-vasundhara {
  background-color: #f2f8fc;
  color: #333;
  position: relative;
  padding-top: 80px;
  padding-bottom: 13vw;
  /* Use vw to scale padding with the giant text */
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.footer-vasundhara::before {
  display: none;
}

.footer-logo {
  height: 60px;
  filter: none;
}

.footer-heading-dark {
  color: #1f2937;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-about-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter-inline {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 10px;
  margin-top: 15px;
}

.newsletter-inline input {
  border: none;
  background: transparent;
  flex-grow: 1;
  outline: none;
  font-size: 0.95rem;
  color: #1f2937;
}

.newsletter-inline input::placeholder {
  color: #94a3b8;
}

.newsletter-inline button {
  background: none;
  border: none;
  color: var(--indigo);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-inline button:hover {
  color: var(--purple);
}

.footer-divider {
  border-color: #cbd5e1;
  opacity: 1;
}

.footer-col-title {
  color: #0f172a;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.footer-links a i {
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--indigo);
}

.footer-links a:hover i {
  color: var(--indigo);
  transform: translateX(3px);
}

.footer-social-circles {
  display: flex;
  gap: 12px;
}

.footer-social-circles a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #94a3b8;
  background: transparent;
  color: #475569;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-circles a:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.footer-giant-text {
  font-size: 200px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(59, 130, 246, 0.4);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* Digital Solutions Section */
.digital-solutions-sec {
  background-color: #f8fafc;
}

.ds-blob-1,
.ds-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.3;
}

.ds-blob-1 {
  top: -100px;
  left: -100px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.ds-blob-2 {
  bottom: -100px;
  right: -100px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
}

.ds-badge {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
}

.text-gradient {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ds-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ds-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(243, 244, 246, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.ds-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(139, 92, 246, 0.3);
}

.ds-card:hover::before {
  opacity: 1;
}

.ds-icon-wrapper {
  --ds-hue: 230;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(var(--ds-hue), 80%, 60%), hsl(calc(var(--ds-hue) + 40), 80%, 50%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 16px hsla(var(--ds-hue), 80%, 50%, 0.3);
}

.ds-card-line {
  width: 40px;
  height: 3px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
}

/* Hero Orbit Section */
.hero-orbit-sec {
  background-color: #ffffff;
}

.hero-orbit-content {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2) !important;
}

.avatar-stack img {
  object-fit: cover;
}

.ms-n3 {
  margin-left: -1rem !important;
}

/* Orbits Animation */
.hero-orbit-graphic {
  position: relative;
  perspective: 1000px;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-ring {
  width: 420px;
  height: 420px;
  border: 2px dashed #93c5fd;
  animation: spinRight 40s linear infinite;
}

.middle-ring {
  width: 290px;
  height: 290px;
  border: 2px solid #bfdbfe;
  animation: spinLeft 25s linear infinite;
}

.inner-ring {
  width: 160px;
  height: 160px;
  border: 2px solid #e0f2fe;
  animation: spinRight 15s linear infinite;
}

/* Unique Center Badge */
.center-badge-unique {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
  animation: pulseBadgeUnique 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.center-badge-unique::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f621, #bfdbfe, #3b82f600);
  z-index: -1;
  animation: spinRightBadge 3s linear infinite;
}

.center-badge-unique::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: white;
  z-index: -1;
}

.cb-text {
  font-size: 52px;
  /* font-family: 'Inter', sans-serif; */
  font-weight: 900;
  background: linear-gradient(to top right, #8b5cf6, #3b82f6, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

@keyframes pulseBadgeUnique {
  to {
    box-shadow: 0 0 0 25px rgba(59, 130, 246, 0);
  }
}

@keyframes spinRightBadge {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinLeft {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes pulseBadge {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

@keyframes floatOrbit {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spinOrbitImage {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.orbit-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

.icon-hand {
  top: -15px;
  left: 20%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  animation: counterSpinRight 40s linear infinite, floatIcon 3s ease-in-out infinite;
}

.icon-sparkle {
  bottom: -15px;
  right: 25%;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  animation: counterSpinLeft 25s linear infinite;
}

@keyframes counterSpinRight {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes counterSpinLeft {
  from {
    transform: rotate(-360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes floatIcon {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -10px;
  }
}

@media (max-width: 991px) {
  .outer-ring {
    width: 300px;
    height: 300px;
  }

  .middle-ring {
    width: 220px;
    height: 220px;
  }

  .inner-ring {
    width: 130px;
    height: 130px;
  }
}

.ds-card:hover .ds-card-line {
  width: 80px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

@keyframes spinOrbitImage {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.custom-d-badge {
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(135deg, #0094EE, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* font-family: 'Inter', sans-serif; */
}

/* About Us Specific Styles */
.section-py {
  padding: 80px 0;
}

@media (min-width: 992px) {
  .section-py {
    padding: 120px 0;
  }
}

.badge-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple);
  background: rgba(124, 58, 237, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.about-banner {
  /* padding: 180px 0 100px; */
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
}

.about-banner h1 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.who-we p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.who-we .right-border {
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

@media (max-width: 991px) {
  .who-we .right-border {
    border-right: none;
    padding-right: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
  }
}

.cornerstones-icon {
  width: 60px;
  height: 60px;
  background: var(--surface);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--purple);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.icon-name {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.icon-name h5 {
  margin: 0;
  font-size: 1.5rem;
}

.icon-name:hover .cornerstones-icon {
  background: var(--purple);
  color: white;
  transform: scale(1.1);
}

.cornerstones-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-details {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.value-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-details:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.value-details:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--grad);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.investor-card {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s;
  height: 100%;
}

.investor-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.investor-card:hover img {
  transform: scale(1.05);
}

/* Premium Hover Effects & Unique Design Additions */

/* Stats Hover Effect */
.stat-box {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 20px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  background: transparent;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(34, 211, 238, 0.05));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
}

.stat-box:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Journey Glass Card */
.journey-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transition: all 0.6s ease;
  transform: skewX(-20deg);
}

.journey-card:hover {
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.1);
  transform: translateY(-5px);
}

.journey-card:hover::before {
  left: 200%;
}

/* Pillars Cards */
.pillar-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--grad);
  transition: width 0.4s ease;
}

.pillar-card:hover {
  transform: translateX(10px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.08);
}

.pillar-card:hover::after {
  width: 100%;
}

.pillar-card:hover .cornerstones-icon {
  background: var(--grad);
  color: #fff;
  transform: rotateY(180deg);
}

.pillar-card .cornerstones-icon {
  transition: transform 0.6s ease, background 0.4s ease, color 0.4s ease;
  margin-bottom: 0;
}

.pillar-card h5 {
  margin: 0;
}

/* Enhanced Values Card */
.value-details {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.value-details:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.15);
}

.value-details .value-icon {
  transition: all 0.5s ease;
}

.value-details:hover .value-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* Investor Card Enhanced */
.investor-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.investor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(34, 211, 238, 0.1));
  z-index: -1;
  border-radius: 16px 16px 0 0;
  transition: height 0.4s ease;
}

.investor-card:hover::before {
  height: 120px;
}

.investor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(76, 29, 149, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}

.investor-card img {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  border: 4px solid #fff;
  background: #fff;
}

.investor-card:hover img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 25px rgba(124, 58, 237, 0.2);
}

/* Circular Text Badges */
.spin-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spin-badge-left {
  left: 10%;
}

.spin-badge-right {
  right: 10%;
}

.spin-text-svg {
  animation: spin 15s linear infinite;
  width: 100%;
  height: 100%;
  position: absolute;
}

.spin-text-svg text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  fill: var(--ink);
  letter-spacing: 2px;
}

.spin-center-icon {
  font-size: 1.5rem;
  color: var(--cyan);
  position: relative;
  z-index: 2;
}

.spin-center-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  z-index: 2;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .spin-badge {
    display: none;
  }

  .pillar-card {
    padding: 10px;
  }
}

/* Timeline Section */
.timeline-section {
  background-color: #0c0c0e;
  position: relative;
  overflow: hidden;
}

.timeline-title {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.timeline-sub {
  color: #a0a0a0;
  max-width: 800px;
  margin: 0 auto 80px;
  font-size: 1rem;
  line-height: 1.6;
}

.timeline-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
}

.timeline-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.timeline-node {
  position: absolute;
  z-index: 2;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 250px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background-color: #3b82f6;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 0 15px #3b82f6;
  position: relative;
}

.timeline-dot::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.timeline-year {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.timeline-text {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Responsive Timeline */
/* MOBILE FIX ONLY — forces stacked layout, doesn't touch desktop */
/* TABLET (576px–991px): 2 items per row */
@media (max-width: 991px) and (min-width: 577px) {
  .timeline-container {
    height: auto !important;
    padding: 0 20px !important;
  }

  .timeline-path {
    display: none !important;
  }

  .timeline-container>*,
  .timeline-node,
  .timeline-node-wrap,
  .timeline-node-bottom {
    /* reset absolute positioning from desktop */
  }

  .timeline-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 24px !important;
  }

  .timeline-node,
  .timeline-node-wrap,
  .timeline-node-bottom {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .timeline-dot-unique {
    margin: 5px 0 0 !important;
    flex-shrink: 0 !important;
  }

  .timeline-content {
    flex-grow: 1 !important;
  }

  .timeline-year-unique {
    font-size: 1.15rem !important;
  }

  .timeline-text-unique {
    font-size: 0.82rem !important;
  }
}

/* PHONE (≤576px): back to single column, stacked */
@media (max-width: 576px) {
  .timeline-container {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    padding: 0 20px !important;
  }

  .timeline-path {
    display: none !important;
  }

  .timeline-node,
  .timeline-node-wrap,
  .timeline-node-bottom {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .timeline-dot-unique {
    margin: 5px 0 0 !important;
    flex-shrink: 0 !important;
  }

  .timeline-content {
    flex-grow: 1 !important;
  }

  .timeline-year-unique {
    font-size: 1.2rem !important;
  }

  .timeline-text-unique {
    font-size: 0.85rem !important;
  }
}

/* Proper Vertical Timeline */
.timeline-section {
  background-color: #0c0c0e;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.timeline-title {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.timeline-sub {
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The central line */
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, transparent, #3b82f6, #8b5cf6, transparent);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 4px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

/* The circles on the timeline */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #0c0c0e;
  border: 4px solid #3b82f6;
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-item:hover::after {
  background-color: #3b82f6;
  box-shadow: 0 0 15px #3b82f6;
}

.timeline-content-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  position: relative;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content-card {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.timeline-year {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-text {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item.right {
    left: 0%;
  }

  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 21px;
  }
}

/* Journey Cards Redesign */
.journey-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.journey-card-new.active-glow {
  box-shadow: -15px 25px 60px rgba(124, 58, 237, 0.15);
}

.journey-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.border-start-lg {
  border-left: 1px solid #e2e8f0;
}

@media (max-width: 991px) {
  .border-start-lg {
    border-left: none;
    padding-top: 30px;
    margin-top: 10px;
    border-top: 1px solid #e2e8f0;
  }
}

/* RED DESIGN THEME CSS */
:root {
  --theme-red: #bb131a;
  --theme-light-red: #fff1f2;
  --theme-dark: #1e293b;
}

.bg-red-gradient {
  background: linear-gradient(180deg, #fff 0%, #fff1f2 60%, #fff 100%);
  position: relative;
}

.bg-red-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #bb131a, #e11d48);
}

.bg-red-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bb131a, transparent);
}

.pill-badge-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fee2e2;
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.stat-card-red {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.stat-card-red:hover {
  transform: translateY(-5px);
}

.stat-card-red.top-border {
  border-top: 4px solid #bb131a;
}

.stat-icon-circle {
  width: 50px;
  height: 50px;
  background-color: #fff1f2;
  color: #bb131a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.check-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #334155;
}

.check-list-icon {
  color: #bb131a;
  font-size: 1.1rem;
}

.value-card-red {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card-red:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.value-icon-red {
  width: 60px;
  height: 60px;
  background-color: #fff1f2;
  color: #bb131a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.team-card-red {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card-red:hover {
  transform: translateY(-5px);
}

.team-card-top {
  background-color: #0f172a;
  height: 130px;
  width: 100%;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  /* border: 4px solid #ffffff; */
  margin-top: -60px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.team-card-body {
  padding: 20px 30px 40px;
}

.team-badge {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

/* Dots decorative pattern */
.dots-pattern {
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 20px 20px;
  width: 100px;
  height: 100px;
  position: absolute;
  opacity: 0.5;
}

/* --- New Heading Pill Badge --- */
.pill-badge-grad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(217, 70, 239, 0.1);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 1.5px;
}

/* --- REDESIGN WHITE THEME CSS --- */

.metric-card-white {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.metric-card-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.2);
}

.metric-card-white .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.25rem;
}

.metric-card-white h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
}

.metric-card-white p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0;
  font-weight: 500;
}

/* Horizontal Timeline */
.horizontal-timeline-wrap {
  position: relative;
  padding: 60px 0;
}

.horizontal-timeline-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grad);
  z-index: 1;
  transform: translateY(-50%);
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  font-size: 1.5rem;
  color: var(--purple);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.timeline-step:hover .timeline-icon {
  border-color: var(--purple);
  color: var(--cyan);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Split Cards */
.split-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: transform 0.3s ease;
}

.split-card:hover {
  transform: translateY(-4px);
}

.split-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(217, 70, 239, 0.1);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

/* Advantage Card */
.advantage-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  border-color: rgba(217, 70, 239, 0.2);
  box-shadow: 0 15px 40px rgba(217, 70, 239, 0.08);
}

.advantage-icon {
  width: 45px;
  height: 45px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  background: var(--surface);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-newsletter input {
  border-radius: 999px;
  padding: 15px 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  width: 100%;
  max-width: 400px;
}

.cta-newsletter button {
  border-radius: 999px;
  padding: 15px 35px;
  margin-left: -50px;
  position: relative;
}

/* --- UNIQUE TIMELINE DESIGN (ABOUT US) --- */
.timeline-section-unique {
  background-color: #0c0c0e;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.timeline-dot-unique {
  width: 16px;
  height: 16px;
  background: var(--grad);
  border-radius: 50%;
  margin: 0 auto 15px;
  position: relative;
  box-shadow: 0 0 20px var(--cyan), 0 0 40px var(--purple);
  z-index: 2;
}

.timeline-dot-unique::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(14, 165, 233, 0.4);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.timeline-year-unique {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 1px;
}

.timeline-text-unique {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-node-wrap {
  transition: transform 0.3s ease;
}

.timeline-node-wrap:hover {
  transform: translate(-50%, -60%) scale(1.05) !important;
}

/* --- PERFECT TIMELINE FIX --- */
.timeline-dot-unique {
  width: 14px !important;
  height: 14px !important;
  background: #00e5ff !important;
  border-radius: 50%;
  margin: 0 auto 15px;
  position: relative;
  box-shadow: 0 0 15px #00e5ff, 0 0 30px #a855f7 !important;
  z-index: 2;
}

.timeline-dot-unique::after {
  content: '';
  position: absolute;
  top: -8px !important;
  left: -8px !important;
  right: -8px !important;
  bottom: -8px !important;
  border: 2px solid rgba(168, 85, 247, 0.5) !important;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  z-index: 1;
}

.timeline-year-unique {
  color: #fff;
  font-size: 1.6rem !important;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.6) !important;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 1px;
}

/* --- ZIG ZAG TIMELINE --- */
.timeline-node-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -7px);
}

.timeline-node-bottom .timeline-dot-unique {
  margin-bottom: 15px;
}

.timeline-node-top {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  transform: translate(-50%, calc(-100% + 7px));
}

.timeline-node-top .timeline-dot-unique {
  margin-top: 15px;
}

.timeline-node-wrap:hover {
  /* Override the old hover transform */
  transform: none !important;
}

.timeline-node-bottom:hover {
  transform: translate(-50%, -12px) scale(1.05) !important;
}

.timeline-node-top:hover {
  transform: translate(-50%, calc(-100% + 2px)) scale(1.05) !important;
}

/* --- OUR JOURNEY REDESIGN --- */
.bg-lavender-light {
  background: linear-gradient(135deg, #f8f9ff 0%, #f3f5fa 100%);
  position: relative;
  z-index: 1;
}

.pill-badge-soft-purple {
  background: #fae8ff;
  color: #d946ef;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  text-transform: uppercase;
}

.journey-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  border: none;
  height: 100%;
}

.journey-card-new.active-glow {
  box-shadow: -20px 20px 80px rgba(217, 70, 239, 0.12), 0 20px 40px rgba(0, 0, 0, 0.03);
}

.journey-card-new p {
  color: #6b7280 !important;
  font-size: 1.05rem;
}

.journey-border-line {
  width: 1px;
  height: 100px;
  background-color: #e2e8f0;
  margin: 0 auto 25px;
}

@media (max-width: 991px) {
  .journey-border-line {
    width: 100px;
    height: 1px;
    margin: 30px auto;
  }
}

/* --- OUR JOURNEY REFINED UNIQUE DESIGN --- */
.bg-lavender-light {
  background-color: #f7f9fc !important;
  background-image: radial-gradient(circle at 10% 50%, rgba(217, 70, 239, 0.04), transparent 40%) !important;
}

.pill-badge-soft-purple {
  background: #fdf4ff !important;
  color: #e02fe9 !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  padding: 8px 24px !important;
  border-radius: 50px !important;
  display: inline-block !important;
  text-transform: uppercase !important;
}

.journey-card-new {
  background: #ffffff !important;
  border-radius: 24px !important;
  /* Softer radius */
  padding: 45px 40px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.4s ease !important;
  border: none !important;
  height: 100% !important;
}

.journey-card-new.active-glow {
  /* Exactly matches the huge soft purple glow in the image */
  box-shadow: -40px 40px 100px rgba(217, 70, 239, 0.1), 0 10px 40px rgba(0, 0, 0, 0.02) !important;
}

.journey-card-new p {
  color: #838996 !important;
  /* Softer gray text */
  font-size: 1.05rem !important;
  font-weight: 400 !important;
}

.journey-border-line {
  width: 1px !important;
  height: 120px !important;
  background-color: #e2e6ec !important;
  margin: 0 auto 30px !important;
}

.journey-quote-btn {
  font-size: 0.85rem !important;
  border: 1px solid #d1d5db !important;
  color: #374151 !important;
  background: #fff !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
}

.journey-quote-btn:hover {
  background: #f3f4f6 !important;
  transform: translateY(-2px);
}

/* --- OUR JOURNEY SPLIT LAYOUT REDESIGN --- */
.bg-split-layout {
  background-color: #ffffff;
}

.pill-badge-red-soft {
  background: #fff0f2 !important;
  color: #e11d48 !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  padding: 6px 16px !important;
  border-radius: 50px !important;
  display: inline-block !important;
  text-transform: uppercase !important;
}

.journey-split-title {
  color: #0f172a !important;
  font-size: 3.2rem !important;
  line-height: 1.15 !important;
  letter-spacing: -1px !important;
}

.journey-image-wrapper {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.journey-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: #fff0f2 !important;
  border-radius: 24px;
  z-index: -1;
}

.journey-image-main {
  border-radius: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 6px solid #fff;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* --- OUR JOURNEY SPLIT LAYOUT PIXEL PERFECT --- */
.bg-split-layout {
  background-color: #ffffff !important;
  padding: 50px 0 !important;
}

.pill-badge-red-soft {
  background: #fff0f4 !important;
  color: #fb3f5c !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  display: inline-block !important;
  text-transform: uppercase !important;
}

.journey-split-title {
  color: #0f172a !important;
  font-size: 3.5rem !important;
  line-height: 1.15 !important;
  letter-spacing: -1px !important;
  margin-bottom: 25px !important;
}

.journey-image-wrapper {
  position: relative;
  z-index: 1;
  padding: 20px 0 20px 20px;
}

.journey-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: #fff0f4 !important;
  border-radius: 30px !important;
  z-index: -1;
}

.journey-image-main {
  border-radius: 20px !important;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
  border: 6px solid #fff !important;
  width: 100%;
  height: auto;
  min-height: 350px;
  object-fit: cover;
}

/* --- APPLY LOGO COLORS TO SPLIT LAYOUT --- */
.bg-split-layout .pill-badge-red-soft {
  background: rgba(217, 70, 239, 0.1) !important;
  /* Soft Magenta */
  color: #d946ef !important;
  /* Magenta text */
}

.bg-split-layout .bi-check-circle.text-danger {
  color: #00e5ff !important;
  /* Cyan checkmarks instead of red */
}

.bg-split-layout .journey-image-bg {
  /* Unique offset shadow using a soft blend of Cyan and Magenta */
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(217, 70, 239, 0.15)) !important;
}

/* --- CUSTOM VALUES REDESIGN --- */
.custom-values-timeline {
  position: relative;
  padding-top: 10px;
}

.values-line {
  position: absolute;
  top: 40px;
  /* 10px padding + 30px (half of 60px circle) */
  left: 12.5%;
  /* Center of first col-3 */
  right: 12.5%;
  /* Center of last col-3 */
  height: 2px;
  background: linear-gradient(90deg, #00e5ff 0%, #d946ef 100%);
  z-index: 1;
}

.value-node {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.value-icon-circle {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgb(217 70 239 / 17%);
  border: 1px solid #ce4eef61;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-icon-circle i {
  font-size: 22px;
  color: #d946ef;
  transition: all 0.3s ease;
}

/* Hover & Active State */
.value-node:hover .value-icon-circle,
.value-node.active .value-icon-circle {
  border-color: #d946ef;
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 0 0 6px rgba(217, 70, 239, 0.15), 0 20px 40px rgba(0, 229, 255, 0.2);
}

.value-node:hover .value-icon-circle i,
.value-node.active .value-icon-circle i {
  color: #00e5ff;
  transform: scale(1.2);
}

.value-node:hover h5 {
  color: #d946ef !important;
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.value-node h5 {
  font-size: 1.15rem;
  letter-spacing: -0.3px;
  color: #0f172a !important;
}

.value-node p {
  color: #64748b !important;
}

@media (max-width: 767px) {
  .values-line {
    display: none;
  }
}



/* --- SOLUTION CARDS --- */
.solution-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(217, 70, 239, 0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
  border-color: rgba(217, 70, 239, 0.2);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 70px;
  height: 70px;
  background: rgba(217, 70, 239, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 30px;
  color: #d946ef;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  background: #d946ef;
  color: white;
  transform: rotateY(180deg);
}

.solution-link {
  display: inline-block;
  margin-top: 15px;
  color: #00e5ff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.solution-link i {
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-link {
  color: #d946ef;
}

.solution-card:hover .solution-link i {
  transform: translateX(5px);
}

/* --- CASE STUDIES --- */
.case-study-card {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.case-study-img-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.case-study-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-card:hover .case-study-img-wrap {
  transform: scale(1.08);
}

.case-study-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.1) 100%);
  opacity: 0.9;
  transition: all 0.4s ease;
}

.case-study-card:hover .case-study-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(217, 70, 239, 0.95) 0%, rgba(0, 229, 255, 0.5) 70%, rgba(0, 229, 255, 0.1) 100%);
}

.case-study-overlay h4 {
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.case-study-overlay p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
}

.case-study-card:hover .case-study-overlay h4 {
  transform: translateY(0);
}

.case-study-card:hover .case-study-overlay p {
  opacity: 1;
  transform: translateY(0);
  max-height: 50px;
  margin-top: 5px;
}

/* --- APP PORTFOLIO REDESIGN --- */
.app-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  padding: 6px 16px 6px 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.app-pill-icon {
  width: 28px;
  height: 28px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.app-pill-tag {
  font-weight: 400;
  color: #94a3b8;
  font-size: 0.75rem;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 12px;
}

.app-filter-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.app-filter-pill.active {
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  border-color: transparent;
  color: #ffffff;
}

.app-filter-pill.active .app-pill-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}

.app-filter-pill.active .app-pill-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.app-detail-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.custom-check-list li {
  font-size: 0.95rem;
  color: #334155;
}

.btn-custom-red {
  background-color: #7f1d1d !important;
  border-color: #7f1d1d !important;
  transition: all 0.3s ease;
}

.btn-custom-red:hover {
  background-color: #991b1b !important;
  border-color: #991b1b !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(127, 29, 29, 0.2);
}

.benefit-card,
.usecase-card {
  transition: all 0.3s ease;
}

.benefit-card:hover,
.usecase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(217, 70, 239, 0.2) !important;
}

.tech-card {
  transition: all 0.3s ease;
}

.tech-card:hover {
  background: #fafafb !important;
  border-color: rgba(217, 70, 239, 0.2) !important;
}

.related-card {
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

/* --- Case Study Page Styles --- */



/* Navbar */
.navbar-custom {
  padding: 20px 0;
  background-color: #fff;
}

.vasundhara-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.vasundhara-logo span.v {
  color: #0284c7;
}

.vasundhara-logo span.rest {
  color: #0284c7;
}

.vasundhara-logo span.a {
  color: #0284c7;
}

.nav-link-custom {
  color: #1e293b;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 10px;
  text-decoration: none;
}

.nav-link-custom i {
  font-size: 0.75rem;
  margin-left: 3px;
}

.btn-get-quote {
  background: #0ea5e9;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

/* Case Study Header */
.page-title {
  color: #0f172a;
  font-weight: 800;
  font-size: 2.5rem;
  text-align: center;
  margin: 40px 0;
}

/* Case Study Cards */
.cs-card {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 0;
}

.cs-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.cs-title {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #0f172a;
}

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.cs-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  padding: 6px 14px;
  border: 1.5px solid rgba(71, 85, 105, 0.2);
  border-radius: 999px;
}

.cs-desc {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 0;
}

.cs-img-container {
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

/* Backgrounds */
.bg-peach {
  background-color: #feece3;
}

.bg-lavender {
  background-color: #e5defc;
}

.bg-mint {
  background-color: #d8f5e5;
}

.bg-tan {
  background-color: #fcece0;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
}

.page-info {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.pagination {
  display: flex;
  gap: 5px;
  margin: 0;
}

.page-link-custom {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  font-size: 0.9rem;
}

.page-link-custom.active {
  background-color: #0ea5e9;
  color: #fff;
}

.page-link-custom:hover:not(.active) {
  background-color: #f1f5f9;
}

/* CTA Banner */
.cta-banner {
  background-color: #0f172a;
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  /* margin-bottom: 80px; */
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  color: #fff;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-desc {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}

.cta-watermarks {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  z-index: 1;
}

.cta-watermark {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  margin: 10px 0;
  line-height: 1.1;
}

.cta-watermark.highlight {
  color: #f59e0b;
  opacity: 0.8;
}

/* Footer */
.footer-custom {
  padding-top: 60px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.footer-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.footer-text {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: #0ea5e9;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 5px;
}

.newsletter-form input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.85rem;
}

.newsletter-form button {
  background: none;
  border: none;
  color: #0ea5e9;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.giant-text {
  font-size: 12vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #e2e8f0;
  text-align: center;
  line-height: 0.8;
  margin-top: 40px;
  letter-spacing: -2px;
}

/* --- Premium Case Study Design (Unic) --- */


.unic-title {
  font-size: 3.5rem !important;
  background: linear-gradient(90deg, #0284c7, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 60px 0 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cs-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.cs-card:hover {
  transform: translateY(-10px) scale(1.01) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08) !important;
}

.cs-tag {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(5px) !important;
  transition: all 0.3s !important;
}

.cs-tag:hover {
  background: #0ea5e9 !important;
  color: #fff !important;
  border-color: #0ea5e9 !important;
  transform: translateY(-2px) !important;
}

.cs-img-container {
  transition: all 0.5s ease !important;
}

.cs-card:hover .cs-img-container {
  transform: scale(1.03) rotate(1deg) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* --- Ultra Premium Animations --- */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.premium-glass:hover .cs-img-hover {
  transform: scale(1.05) translateY(-5px);
}

.blur-blob {
  animation: blob-float 10s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.1);
  }

  100% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* --- Mobile Navbar Premium Design --- */
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28139, 92, 246, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 15px 0;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 1.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 1000;
    margin-top: 5px;
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .navbar .nav-link {
    margin: 5px 0;
    text-align: left;
    width: 100%;
    font-size: 1.05rem;
    padding: 10px 20px !important;
  }

  .navbar .btn-grad {
    /* width: 100%; */
    text-align: center;
    margin-top: 15px !important;
  }
}

/* --- Premium Dropdown (Mega Menu Style) --- */
.dropdown-toggle::after {
  display: none !important;
}

.mega-menu-box {
  border-radius: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  min-width: 250px;
  left: 0 !important;
  transform: none !important;
  margin-top: 10px;
}

.mega-icon-box {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.bg-light-purple {
  background: #f3e8ff;
  color: #a855f7;
}

.bg-light-green {
  background: #dcfce7;
  color: #22c55e;
}

.bg-light-blue {
  background: #e0f2fe;
  color: #0ea5e9;
}

.mega-menu-item {
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.mega-menu-item:hover {
  background: #f8fafc;
  transform: translateX(5px);
}

.mega-menu-item:hover .mega-icon-box {
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .dropdown-mega:hover .dropdown-menu {
    display: block;
    animation: fadeUp 0.3s ease forwards;
  }

  .dropdown-mega:hover>.nav-link {
    background: #f0f9ff !important;
    color: #0ea5e9 !important;
  }

  .dropdown-mega>.nav-link i {
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .dropdown-mega:hover>.nav-link i {
    transform: rotate(180deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 991px) {
  .mega-menu-box {
    min-width: 100%;
    left: 0 !important;
    transform: none !important;
    animation: none;
  }

  .dropdown-mega>.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* --- REFERENCE LAYOUT STYLES --- */

/* 1. Hero Section */
.ref-hero {
  padding: 160px 0 40px;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.ref-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 25px;
}

.ref-hero-title span {
  position: relative;
}

.ref-hero-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--cyan);
}

.ref-hero-tag {
  background: #16a34a;
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -60px;
  transform: rotate(5deg);
}

.ref-hero-tag-2 {
  background: #f59e0b;
  color: white;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  position: absolute;
  bottom: 20px;
  left: 20%;
  transform: rotate(-10deg);
}

.ref-hero p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.btn-ref-blue {
  background: #0ea5e9;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
  transition: 0.3s;
}

.btn-ref-blue:hover {
  background: #0284c7;
  color: white;
  transform: translateY(-2px);
}

/* 2. Stats Section */
.ref-stats {
  background: #f8fafc;
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.ref-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
}

.ref-stat-border {
  border-right: 1px solid #cbd5e1;
}

.ref-stat-img {
  width: 60px;
  height: auto;
}

.ref-stat-text h4 {
  font-weight: 800;
  margin: 0;
  font-size: 1.5rem;
  color: var(--ink);
}

.ref-stat-text p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

/* 3. Open Positions */
.ref-positions {
  padding: 80px 0;
  background: #ffffff;
}

.ref-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

.ref-job-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
}

.ref-job-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.ref-job-info h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.ref-job-meta {
  display: flex;
  gap: 15px;
  font-size: 17px;
  color: var(--muted);
}

.ref-job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 4. Image Collage / Story */
.ref-story {
  padding: 80px 0;
  background: #f8fafc;
}

.ref-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

.ref-collage-img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ref-img-large {
  grid-row: span 2;
  position: relative;
}

.ref-years-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #0ea5e9;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.ref-years-badge span {
  font-size: 1.5rem;
  line-height: 1;
}

.ref-story-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ref-story-text p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 15px;
}

/* 5. Perks Grid */
.ref-perks {
  padding: 60px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.ref-perks::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ref-perks::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ref-perks-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.ref-perk-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--indigo);
  z-index: 2;
}

.ref-perk-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ref-perk-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white !important;
  font-size: 1.4rem;
}

.ref-perk-box h6 {
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--ink);
}

.ref-perk-box p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.ref-perk-box p::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #0ea5e9;
  margin-top: 15px;
  transition: width 0.3s ease;
}

.ref-perk-box:hover p::after {
  width: 50px;
}

.ref-perks .row>div:nth-child(1) .ref-perk-icon {
  background: #7c3aed;
}

.ref-perks .row>div:nth-child(2) .ref-perk-icon {
  background: #0ea5e9;
}

.ref-perks .row>div:nth-child(3) .ref-perk-icon {
  background: #d946ef;
}

.ref-perks .row>div:nth-child(4) .ref-perk-icon {
  background: #f43f5e;
}

.ref-perks .row>div:nth-child(5) .ref-perk-icon {
  background: #14b8a6;
}

.ref-perks .row>div:nth-child(6) .ref-perk-icon {
  background: #a3e635;
}

.ref-perks .row>div:nth-child(7) .ref-perk-icon {
  background: #f97316;
}

.ref-perks .row>div:nth-child(8) .ref-perk-icon {
  background: #6366f1;
}

.ref-perks .row>div:nth-child(9) .ref-perk-icon {
  background: #eab308;
}

/* 6. Light CTA */
.ref-cta-container {
  padding: 80px 0 0 0;
}

.ref-cta-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.ref-cta-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  max-width: 500px;
  color: var(--ink);
}

.ref-cta-text p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 500px;
  margin-bottom: 30px;
}

.ref-scrolling-words {
  font-size: 2rem;
  font-weight: 800;
  color: #d1d5db;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ref-scrolling-words .active {
  background: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.chat-fab {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  cursor: pointer;
  transition: transform 0.3s;
}

.chat-fab:hover {
  transform: scale(1.1);
}

.chat-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-popup-header {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: white;
  padding: 15px 20px;
  border-radius: 12px 12px 0 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.8;
}

.chat-popup-close:hover {
  opacity: 1;
}

.chat-popup-body {
  padding: 20px;
  font-size: 0.95rem;
  color: #333;
}

.chat-popup-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.chat-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.chat-whatsapp-btn:hover {
  background: #128C7E;
  color: white;
}

/* Moments Carousel Restored CSS */
.moments-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  /* padding: 20px 0; */
}

.moments-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  position: relative;
  perspective: 1000px;
}

.moments-slide {
  position: absolute;
  width: 600px;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.moments-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moments-slide.is-active {
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
}

.moments-slide.is-adjacent {
  z-index: 2;
  opacity: 0.6;
}

.moments-slide[style*="--d: 1"].is-adjacent,
.moments-slide[style*="--d: 1.5"].is-adjacent {
  transform: translateX(35%) scale(0.85);
}

.moments-slide[style*="--d: -1"].is-adjacent,
.moments-slide[style*="--d: -1.5"].is-adjacent {
  transform: translateX(-35%) scale(0.85);
}

.moments-slide.is-hidden {
  z-index: 1;
  opacity: 0;
  transform: translateX(0) scale(0.7);
}

.moments-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* margin-top: 30px; */
}

.moments-btn {
  background: white;
  border: 1px solid #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.moments-btn:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

.moments-dots {
  display: flex;
  gap: 10px;
}

.moments-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.moments-dot.active {
  background: var(--cyan);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .moments-slide {
    width: 90%;
    height: 250px;
  }

  .moments-slide[style*="--d: 1"].is-adjacent,
  .moments-slide[style*="--d: 1.5"].is-adjacent {
    transform: translateX(20%) scale(0.9);
  }

  .moments-slide[style*="--d: -1"].is-adjacent,
  .moments-slide[style*="--d: -1.5"].is-adjacent {
    transform: translateX(-20%) scale(0.9);
  }
}

.sticky-top {
  z-index: 11;
}

/* Custom Blog Details Styles */
.bd-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
}

.bd-hero-img {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  margin-top: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.bd-toc {
  position: sticky;
  top: 100px;
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.bd-toc ul {
  list-style: none;
  padding-left: 0;
}

.bd-toc li {
  margin-bottom: 18px;
}

.bd-toc a {
  position: relative;
  text-decoration: none;
  color: #7b879c;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
  padding-left: 20px;
  line-height: 1.5;
}

.bd-toc a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.bd-toc a:hover {
  color: #06b6d4;
  transform: translateX(5px);
}

.bd-toc a.active {
  color: #06b6d4;
  transform: translateX(8px);
}

.bd-toc a.active::before,
.bd-toc a:hover::before {
  width: 4px;
  height: 18px;
  background: #06b6d4;
  border-radius: 4px;
}

.bd-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
}

.bd-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  margin-top: 50px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.bd-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  border-radius: 2px;
}

.bd-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 35px;
}

.bd-content ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.7;
}

.bd-content ul li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 2px;
  color: #0ea5e9;
  font-size: 1.3rem;
}

.bd-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 30px;
  margin-bottom: 15px;
}

.bd-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 40px;
}

.bd-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bd-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.bd-author h6 {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.bd-author p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.bd-share button {
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #475569;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.bd-share button:hover {
  background: var(--cyan);
  color: white;
}

.accordion-button {
  font-size: 20px;
}

.bd-faq .accordion-button {
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.bd-faq .accordion-button:not(.collapsed) {
  color: var(--cyan);
  border-bottom-color: transparent;
}

.bd-faq .accordion-item {
  border: none;
  background: transparent;
}

.bd-faq .accordion-body {
  padding: 0 0 1.5rem 0;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

/* Premium FAQ Styles for FAQs Page */
.premium-faq {
  background: transparent;
}

.premium-faq .accordion-item {
  border: 1px solid #cbd5e1;
  border-radius: 16px !important;
  margin-bottom: 20px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-faq .accordion-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #94a3b8;
  transform: translateY(-2px);
}

.premium-faq .accordion-button {
  font-weight: 700;
  color: #1e293b;
  background: #ffffff;
  padding: 1.5rem;
  border: none;
  box-shadow: none;
  border-radius: 16px !important;
  font-size: 1.1rem;
}

.premium-faq .accordion-button:not(.collapsed) {
  background: #f8fafc;
  color: #4f46e5;
  box-shadow: none;
}

.premium-faq .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #475569;
  line-height: 1.8;
  background: #f8fafc;
  font-size: 1.05rem;
}

/* MEGA MENU 2-COLUMN HOVER REDESIGN */
@media (min-width: 992px) {
  .dropdown-mega:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.mega-menu-box {
  width: 880px !important;
  padding: 25px 20px !important;
  border-radius: 20px !important;
  transform: translateX(-30%);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.mega-menu-box .mega-left-col {
  border-right: none;
  padding-right: 20px;
}

.mega-menu-item {
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}

.mega-menu-item:hover {
  background: #f8fafc;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(var(--bs-primary-rgb), 0.2) !important;
}

/* Tech Tabs Styling */
.custom-tech-tabs .nav-link {
  color: #64748b;
  background-color: transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.custom-tech-tabs .nav-link:hover {
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.custom-tech-tabs .nav-link.active {
  color: #fff;
  background-color: var(--bs-primary);
  box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}

/* Tech Grid Hover Cards */
.tech-hover-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  border-radius: 2px;
}

.bd-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 35px;
}

.bd-content ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.7;
}

.bd-content ul li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 2px;
  color: #0ea5e9;
  font-size: 1.3rem;
}

.bd-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 30px;
  margin-bottom: 15px;
}

.bd-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 40px;
}

.bd-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bd-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.bd-author h6 {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.bd-author p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.bd-share button {
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #475569;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.bd-share button:hover {
  background: var(--cyan);
  color: white;
}

.bd-faq .accordion-button {
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.bd-faq .accordion-button:not(.collapsed) {
  color: var(--cyan);
  border-bottom-color: transparent;
}

.bd-faq .accordion-item {
  border: none;
  background: transparent;
}

.bd-faq .accordion-body {
  padding: 0 0 1.5rem 0;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

/* Premium FAQ Styles for FAQs Page */
.premium-faq {
  background: transparent;
}

.premium-faq .accordion-item {
  border: 1px solid #cbd5e1;
  border-radius: 16px !important;
  margin-bottom: 20px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-faq .accordion-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #94a3b8;
  transform: translateY(-2px);
}

.premium-faq .accordion-button {
  font-weight: 700;
  color: #1e293b;
  background: #ffffff;
  padding: 1.5rem;
  border: none;
  box-shadow: none;
  border-radius: 16px !important;
  font-size: 1.1rem;
}

.premium-faq .accordion-button:not(.collapsed) {
  background: #f8fafc;
  color: #4f46e5;
  box-shadow: none;
}

.premium-faq .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #475569;
  line-height: 1.8;
  background: #f8fafc;
  font-size: 1.05rem;
}

/* NEW TECH BOX CARD DESIGN EXACTLY FROM SCREENSHOT */
.tech-box-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f2f7fb;
  /* Light blue-grey exactly as requested */
  border-radius: 12px;
  padding: 20px 10px;
  transition: all 0.3s ease;
  text-align: center;
  color: #1e293b;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.tech-box-card:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
  color: #0ea5e9;
}

.tech-box-card img,
.tech-box-card i,
.tech-box-card .custom-icon {
  margin-bottom: 15px !important;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MEGA MENU 2-COLUMN HOVER REDESIGN */
@media (min-width: 992px) {
  .dropdown-mega:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.mega-menu-box {
  width: 850px !important;
  padding: 25px 20px !important;
  border-radius: 20px !important;
  background-color: #ffffff !important;
  transform: translateX(-30%);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.mega-menu-box .mega-left-col {
  border-right: none;
  padding-right: 20px;
}

.mega-menu-item {
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}

.mega-menu-item:hover {
  background: #f8fafc;
}

.mega-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.mega-menu-item .mega-text {
  font-weight: 600 !important;
  color: #334155 !important;
  font-size: 0.95rem;
}

.featured-blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  display: block;
}

.featured-blog-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.featured-blog-card:hover img {
  transform: scale(1.05);
}

.featured-blog-card .overlay-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1e293b;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 0;
}

.bd-content ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.7;
}

.bd-content ul li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 2px;
  color: #0ea5e9;
  font-size: 1.3rem;
}

.bd-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 30px;
  margin-bottom: 15px;
}

.bd-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 40px;
}

.bd-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bd-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.bd-author h6 {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.bd-author p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.bd-share button {
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #475569;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.bd-share button:hover {
  background: var(--cyan);
  color: white;
}

.bd-faq .accordion-button {
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.bd-faq .accordion-button:not(.collapsed) {
  color: var(--cyan);
  border-bottom-color: transparent;
}

.bd-faq .accordion-item {
  border: none;
  background: transparent;
}

.bd-faq .accordion-body {
  padding: 0 0 1.5rem 0;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

/* Premium FAQ Styles for FAQs Page */
.premium-faq {
  background: transparent;
}

.premium-faq .accordion-item {
  border: 1px solid #cbd5e1;
  border-radius: 16px !important;
  margin-bottom: 20px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-faq .accordion-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #94a3b8;
  transform: translateY(-2px);
}

.premium-faq .accordion-button {
  font-weight: 700;
  color: #1e293b;
  background: #ffffff;
  padding: 1.5rem;
  border: none;
  box-shadow: none;
  border-radius: 16px !important;
  font-size: 1.1rem;
}

.premium-faq .accordion-button:not(.collapsed) {
  background: #f8fafc;
  color: #4f46e5;
  box-shadow: none;
}

.premium-faq .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #475569;
  line-height: 1.8;
  background: #f8fafc;
  font-size: 1.05rem;
}

/* MEGA MENU 2-COLUMN HOVER REDESIGN */
@media (min-width: 992px) {
  .dropdown-mega:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.mega-menu-box {
  width: 850px !important;
  padding: 25px 20px !important;
  border-radius: 20px !important;
  transform: translateX(-30%);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.mega-menu-box .mega-left-col {
  border-right: none;
  padding-right: 20px;
}

.mega-menu-item {
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}

.mega-menu-item:hover {
  background: #f8fafc;
}

.mega-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.mega-menu-item .mega-text {
  font-weight: 600 !important;
  color: #334155 !important;
  font-size: 0.95rem;
}

.featured-blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  display: block;
}

.featured-blog-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.featured-blog-card:hover img {
  transform: scale(1.05);
}

.featured-blog-card .overlay-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1e293b;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 0;
}

.featured-blog-card:hover .overlay-text {
  bottom: 0;
}

/* =========================================
   TECHNOLOGY PAGE CSS
========================================= */

/* Hero Banner Fixes */
.tech-hero-section {
  background: radial-gradient(circle at 100% 50%, rgba(239, 246, 255, 0.8) 0%, rgba(255, 255, 255, 1) 50%);
  padding-bottom: 0px;
}

/* Marquee Infinite Scroll Animation */
.marquee-section {
  position: relative;
  height: 80px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  animation: scroll-marquee 25s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Tech List Cards Hover Effects */
.tech-list-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.tech-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(var(--bs-primary-rgb), 0.2) !important;
}

/* Tech Tabs Styling */
.custom-tech-tabs .nav-link {
  color: #64748b;
  background-color: transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.custom-tech-tabs .nav-link:hover {
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.custom-tech-tabs .nav-link.active {
  color: #fff;
  background-color: var(--bs-primary);
}

/* Tech Grid Hover Cards */
.tech-hover-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  cursor: pointer;
}

.tech-hover-card:hover {
  transform: translateY(-8px);
  background-color: #fff !important;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.02) !important;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent;
  padding: 10px 15px;
  transition: all 0.3s ease;
  text-align: left;
  color: #1e293b;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
}

.tech-dropdown-card:hover {
  background-color: #f8f9fa;
  color: #0ea5e9;
}

.tech-dropdown-card img,
.tech-dropdown-card i,
.tech-dropdown-card .custom-icon {
  margin-bottom: 0 !important;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ReactJS Development Page Styles */
.hero-react-img {
  animation: float 4s ease-in-out infinite;
  width: 400px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.react-service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none !important;
  border-radius: 16px !important;
  background: linear-gradient(145deg, #ffffff, #fafbfe);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.06) !important;
}

.map-section iframe {
  width: 100% !important;
  height: 450px !important;
  border: 0 !important;
  border-radius: 10px;
}

.react-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  /* Gradient border thickness */
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.25;
  /* Always visible gradient border */
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.react-service-card:hover::before {
  opacity: 1;
}

.react-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(217, 70, 239, 0.15) !important;
}

.react-service-card .icon-box {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(14, 165, 233, 0.1) !important;
  width: 60px !important;
  height: 60px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.react-service-card .icon-box i {
  color: var(--cyan) !important;
  transition: all 0.3s ease-in-out;
}

.react-service-card:hover .icon-box {
  background: linear-gradient(135deg, var(--cyan), var(--purple)) !important;
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(217, 70, 239, 0.3);
}

.react-service-card:hover .icon-box i {
  color: white !important;
}

/* Feature Row Card Redesign */
.feature-row-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(14, 165, 233, 0.05);
  background: white;
  position: relative;
  overflow: hidden;
}

.feature-row-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(217, 70, 239, 0.1);
  border-color: rgba(217, 70, 239, 0.2);
}

.feature-row-card .feature-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  line-height: 0.8;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  transition: all 0.4s ease;
}

.feature-row-card:hover .feature-number {
  opacity: 0.8;
  transform: scale(1.1) rotate(-5deg);
}

/* Premium Feature Card Redesign */
.premium-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(14, 165, 233, 0.1);
  z-index: 1;
}

.premium-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  transition: all 0.4s ease;
  z-index: 0;
}

.premium-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(217, 70, 239, 0.15);
  border-color: rgba(217, 70, 239, 0.3);
}

.premium-feature-card:hover::before {
  width: 100%;
  opacity: 0.03;
}

.premium-feature-card .bg-number {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.05;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
  pointer-events: none;
}

.premium-feature-card:hover .bg-number {
  opacity: 0.15;
  transform: scale(1.1) rotate(-5deg);
}

.premium-feature-card .content {
  position: relative;
  z-index: 2;
}

/* Dark Process Timeline Redesign */
.process-timeline-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 40px 20px;
  gap: 3rem;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  position: relative;
}

.process-timeline-container::-webkit-scrollbar {
  height: 6px;
}

/* Premium Grid Process Cards */
.process-card {
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.process-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.03), rgba(217, 70, 239, 0.03));
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 70, 239, 0.4);
  box-shadow: 0 20px 40px rgba(217, 70, 239, 0.08);
}

.process-card:hover .process-card-bg {
  opacity: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 20px 5px 20px 5px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cyan);
  border: 1px solid rgba(14, 165, 233, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
}

.process-card:hover .step-number::before {
  opacity: 1;
}

.process-card:hover .step-number {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: white;
  border-color: transparent;
  border-radius: 5px 20px 5px 20px;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.process-watermark {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(14, 165, 233, 0.04);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  z-index: 0;
  transition: all 0.5s ease;
}

.process-card:hover .process-watermark {
  color: rgba(217, 70, 239, 0.08);
  transform: scale(1.1) translateY(-10px);
}

.step-line {
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(14, 165, 233, 0.2) 0, rgba(14, 165, 233, 0.2) 5px, transparent 5px, transparent 10px);
  position: relative;
  overflow: hidden;
}

.step-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  transition: all 0.6s ease;
}

.process-card:hover .step-line::after {
  left: 100%;
  transition: all 0.8s ease 0.1s;
}

/* Tech Stack Card Redesign */
.tech-stack-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px !important;
  padding: 40px 30px !important;
  border: 1px solid rgba(14, 165, 233, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  z-index: 1;
}

.tech-stack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0.8;
  transition: all 0.4s ease;
  z-index: -1;
}

.tech-stack-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(217, 70, 239, 0.1);
  border-color: rgba(217, 70, 239, 0.2);
}

.tech-stack-card:hover::before {
  height: 100%;
  opacity: 0.03;
}

.tech-stack-pill {
  background: #f8faff;
  color: #334155;
  border: 1px solid rgba(14, 165, 233, 0.1);
  padding: 8px 20px !important;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.tech-stack-pill:hover {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(217, 70, 239, 0.2);
}

.tech-stack-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(14, 165, 233, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--cyan);
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.tech-stack-card:hover .tech-stack-icon {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  border-radius: 50%;
  transform: rotate(360deg);
}

/* =========================================
   CONTACT US PAGE CSS
========================================= */

.contact-hero-bg {
  overflow: hidden;
  pointer-events: none;
}

.glow-blob {
  transition: all 0.5s ease;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(10px);
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #f1f5f9;
  color: #475569;
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-social-btn:hover {
  background-color: var(--bs-primary);
  color: #fff;
  transform: translateY(-5px) rotate(8deg);
}

.premium-input {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.premium-input:focus {
  background-color: #ffffff;
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.contact-form-wrapper {
  overflow: hidden;
  z-index: 1;
}

/* Active states for Mega Menu elements */
.mega-menu-item.active {
  background: #f8fafc;
  border-left: 3px solid #0ea5e9;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.mega-menu-item.active .mega-text {
  color: #0ea5e9 !important;
}

.tech-box-card {
  padding: 25px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.tech-box-card.active {
  background: #f0f9ff;
  border: 1px dashed rgba(14, 165, 233, 0.4);
}

.tech-box-card.active span {
  color: #0ea5e9 !important;
  font-weight: 700 !important;
}

/* =========================================
   UNIQUE CONTACT PAGE EXTRAS
========================================= */

/* Glassmorphism for Form */
.glassmorphism-form {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05) !important;
}

/* Floating Shapes in Hero */
.shape-float {
  position: absolute;
  pointer-events: none;
  animation: floatShape 8s ease-in-out infinite;
  opacity: 0.6;
}

.shape-float.delay-1 {
  animation-delay: 2s;
}

.shape-float.delay-2 {
  animation-delay: 4s;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-30px) rotate(15deg) scale(1.1);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* Animated Submit Button */
.btn-send-animated {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.btn-send-animated .send-icon {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.btn-send-animated:hover .send-icon {
  transform: translateX(100px) translateY(-50px) rotate(45deg);
  opacity: 0;
}

.btn-send-animated::after {
  content: '\f1d8';
  /* FontAwesome Paper Plane */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  color: white;
  font-size: 1.3rem;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-send-animated:hover::after {
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.btn-send-animated:hover .btn-text {
  opacity: 0;
  transform: translateX(-20px);
}

.btn-send-animated .btn-text {
  transition: all 0.4s ease;
  display: inline-block;
}

/* Animated Glowing Border around the Glass Form */
.glass-glow-wrapper {
  position: relative;
  border-radius: 2rem;
  padding: 3px;
  background: linear-gradient(90deg, #0ea5e9, #d946ef, #0ea5e9);
  background-size: 200% auto;
  animation: shine 4s linear infinite;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.glass-glow-wrapper>.glassmorphism-form {
  border-radius: calc(2rem - 3px) !important;
  height: 100%;
  border: none !important;
}

/* 3D Contact Cards */
.card-3d {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
  transform-style: preserve-3d;
}

.card-3d:hover {
  transform: translateY(-10px) rotateX(8deg) rotateY(-8deg) scale(1.02);
  box-shadow: 15px 25px 40px rgba(0, 0, 0, 0.06) !important;
}

/* Dot Grid Background for Hero */
.dot-grid-bg {
  background-image: radial-gradient(rgba(14, 165, 233, 0.15) 2px, transparent 2px);
  background-size: 30px 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ==========================================
   Autogenerated Utility Classes
   ========================================== */
.digi-style-1 {
  padding: 11px 24px;
  font-size: 0.88rem;
}

.digi-style-2 {
  z-index: 2;
}

.digi-style-3 {
  background: transparent;
  color: var(--dark);
}

.digi-style-4 {
  font-size: 3.5rem;
  color: var(--ink);
}

.digi-style-5 {
  max-width: 650px;
  font-size: 1.15rem;
  line-height: 1.7;
}

.digi-style-6 {
  font-size: 1.1rem;
  padding: 14px 35px;
}

.digi-style-7 {
  max-height: 650px;
  object-fit: cover;
  object-position: center 30%;
}

.digi-style-8 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
}

.digi-style-9 {
  font-size: 3rem;
  color: var(--ink);
}

.digi-style-10 {
  line-height: 1.8;
}

.digi-style-11 {
  bottom: 15%;
  left: 8%;
  z-index: 0;
}

.digi-style-12 {
  bottom: 20%;
  left: 45%;
  z-index: 0;
}

.digi-style-13 {
  top: 20%;
  right: 15%;
  z-index: 0;
}

.digi-style-14 {
  bottom: 15%;
  right: 10%;
  z-index: 2;
}

.digi-style-15 {
  max-width: 700px;
}

.digi-style-16 {
  z-index: 1;
}

.digi-style-17 {
  text-transform: uppercase;
}

.digi-style-18 {
  max-width: 600px;
}

.digi-style-19 {
  color: var(--ink);
}

.digi-style-20 {
  line-height: 1.8;
  font-size: 1.1rem;
}

.digi-style-21 {
  background: rgba(14, 165, 233, 0.1);
  color: var(--cyan);
}

.digi-style-22 {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  background-color: var(--ink);
}

.digi-style-23 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--bg);
}

.digi-style-24 {
  max-width: 900px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 60px;
  color: var(--gray);
}

.digi-style-25 {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0 auto;
}

.digi-style-26 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
}

.digi-style-27 {
  position: absolute;
  left: 8.5%;
  top: 75%;
  width: 220px;
  z-index: 2;
}

.digi-style-28 {
  position: absolute;
  left: 32.3%;
  top: 50%;
  width: 220px;
  z-index: 2;
}

.digi-style-29 {
  position: absolute;
  left: 25.5%;
  top: 15%;
  width: 220px;
  z-index: 2;
}

.digi-style-30 {
  position: absolute;
  left: 42.5%;
  top: 75%;
  width: 220px;
  z-index: 2;
}

.digi-style-31 {
  position: absolute;
  left: 55.25%;
  top: 10%;
  width: 220px;
  z-index: 2;
}

.digi-style-32 {
  position: absolute;
  left: 68%;
  top: 50%;
  width: 220px;
  z-index: 2;
}

.digi-style-33 {
  position: absolute;
  left: 80.75%;
  top: 15%;
  width: 220px;
  z-index: 2;
}

.digi-style-104 {
  position: absolute;
  left: 95%;
  top: 50%;
  width: 220px;
  z-index: 2;
}

.digi-style-34 {
  font-size: 2.8rem;
}

.digi-style-35 {
  border-radius: 24px;
}

.digi-style-36 {
  padding: 140px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: radial-gradient(circle at 10% 50%, var(--blue-light) 0%, transparent 40%), radial-gradient(circle at 90% 50%, var(--purple-light) 0%, transparent 40%), var(--gray-light);
}

.digi-style-37 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(129, 140, 248, 0.3));
  filter: blur(80px);
  top: -150px;
  left: -100px;
  animation: blob-float 15s infinite alternate ease-in-out;
}

.digi-style-38 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.2), rgba(244, 114, 182, 0.2));
  filter: blur(60px);
  bottom: -100px;
  right: -50px;
  animation: blob-float 12s infinite alternate-reverse ease-in-out;
}

.digi-style-39 {
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.8;
}

.digi-style-40 {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
}

.digi-style-41 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo);
}

.digi-style-42 {
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.digi-style-43 {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: var(--cyan);
  background-color: var(--indigo);
}

.digi-style-44 {
  max-width: 650px;
  line-height: 1.7;
  font-weight: 400;
}

.digi-style-45 {
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.digi-style-46 {
  object-fit: cover;
}

.digi-style-47 {
  object-fit: cover;
  filter: hue-rotate(90deg);
}

.digi-style-48 {
  object-fit: cover;
  filter: hue-rotate(180deg);
}

.digi-style-49 {
  object-fit: cover;
  filter: hue-rotate(-90deg);
}

.digi-style-50 {
  font-size: 0.8rem;
}

.digi-style-51 {
  color: var(--cyan);
}

.digi-style-52 {
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  border-color: var(--blue-light);
}

.digi-style-53 {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 12px;
  border-left: 4px solid var(--cyan);
}

.digi-style-54 {
  background-color: var(--gray-light);
}

.digi-style-55 {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 25px;
}

.digi-style-56 {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.digi-style-57 {
  font-size: 14px;
}

.digi-style-58 {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--gray-light);
}

.digi-style-59 {
  font-size: 2.2rem;
  line-height: 1.3;
}

.digi-style-60 {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 95%;
}

.digi-style-61 {
  border: none;
  border-radius: 50px;
}

.digi-style-62 {
  height: 180px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.digi-style-63 {
  transition: transform 0.6s ease-in-out;
  transform: translateY(0px);
}

.digi-style-64 {
  padding: 140px 0 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: radial-gradient(circle at 10% 50%, var(--blue-light) 0%, transparent 40%), radial-gradient(circle at 90% 50%, var(--purple-light) 0%, transparent 40%), var(--gray-light);
}

.digi-style-65 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(129, 140, 248, 0.3));
  filter: blur(90px);
  top: -200px;
  left: -100px;
  animation: blob-float 15s infinite alternate ease-in-out;
}

.digi-style-66 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.25), rgba(244, 114, 182, 0.25));
  filter: blur(80px);
  bottom: -150px;
  right: -100px;
  animation: blob-float 12s infinite alternate-reverse ease-in-out;
}

.digi-style-67 {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  border-color: var(--cyan);
  color: var(--cyan);
}

.digi-style-68 {
  background: linear-gradient(135deg, rgba(254, 236, 227, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(20px);
}

.digi-style-69 {
  width: 300px;
  height: 300px;
  opacity: 0.15;
  filter: blur(50px);
  top: -100px;
  left: -100px;
  background-color: var(--yellow);
}

.digi-style-70 {
  line-height: 1.2;
}

.digi-style-71 {
  font-size: 0.8rem;
  border-color: var(--blue-light);
}

.digi-style-72 {
  min-height: 400px;
  transition: transform 0.5s ease;
}

.digi-style-73 {
  max-height: 450px;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.digi-style-74 {
  background: linear-gradient(135deg, rgba(229, 222, 252, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(20px);
}

.digi-style-75 {
  width: 300px;
  height: 300px;
  opacity: 0.15;
  filter: blur(50px);
  bottom: -100px;
  right: -100px;
  background-color: var(--indigo);
}

.digi-style-76 {
  background: linear-gradient(135deg, rgba(216, 245, 229, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(20px);
}

.digi-style-77 {
  width: 300px;
  height: 300px;
  opacity: 0.15;
  filter: blur(50px);
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  background-color: var(--green);
}

.digi-style-78 {
  background: linear-gradient(135deg, rgba(252, 236, 224, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(20px);
}

.digi-style-79 {
  width: 300px;
  height: 300px;
  opacity: 0.15;
  filter: blur(50px);
  top: 10px;
  right: 10px;
  background-color: var(--yellow);
}

.digi-style-80 {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 12px;
  height: 40px;
  display: flex;
  align-items: center;
}

.digi-style-81 {
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 12px;
  height: 40px;
  display: flex;
  align-items: center;
}

.digi-style-82 {
  font-size: 2.2rem;
  color: var(--indigo);
  margin-bottom: 12px;
  height: 40px;
  display: flex;
  align-items: center;
}

.digi-style-83 {
  font-size: 2.2rem;
  color: var(--gray);
  margin-bottom: 12px;
  height: 40px;
  display: flex;
  align-items: center;
}

.digi-style-84 {
  font-size: 0.95rem;
}

.digi-style-85 {
  font-size: 0.85rem;
  color: var(--gray);
}

.digi-style-86 {
  border: 0;
}

.digi-style-87 {
  color: var(--dark);
}

.digi-style-88 {
  width: 60px;
  height: 4px;
  margin: 15px auto 0;
  border-radius: 2px;
  background-color: var(--cyan);
  background-color: var(--indigo);
}

.digi-style-89 {
  height: 35px;
}

.digi-style-90 {
  z-index: 1;
}

.digi-style-91 {
  font-size: 1.4rem;
  font-weight: 700;
}

.digi-style-92 {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.digi-style-93 {
  background-color: var(--bg);
  background-color: var(--gray-light);
}

.digi-style-94 {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
}

.digi-style-95 {
  background: var(--grad);
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.1;
}

.digi-style-96 {
  font-size: 1.05rem;
}

.digi-style-97 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.digi-style-98 {
  font-size: 1.15rem;
  line-height: 1.7;
}

.digi-style-99 {
  line-height: 1.6;
}

.digi-style-100 {
  letter-spacing: 1px;
}

.digi-style-101 {
  color: var(--ink);
  font-size: 2.2rem;
}

.digi-style-102 {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.digi-style-103 {
  margin-bottom: 0;
}

.digi-style-104 {
  height: 220px;
}

.digi-style-105 {
  min-height: 550px;
}

.digi-style-106 {
  font-size: 2.2rem;
}

.digi-style-107 {
  font-size: 1.15rem;
  font-weight: 500;
}

.digi-style-108 {
  top: 8%;
  left: 18%;
  animation-delay: 0s;
}

.digi-style-109 {
  top: 22%;
  left: 40%;
  animation-delay: 1s;
}

.digi-style-110 {
  top: 15%;
  right: 15%;
  animation-delay: 2s;
}

.digi-style-111 {
  top: 32%;
  right: 8%;
  animation-delay: 0.5s;
}

.digi-style-112 {
  top: 50%;
  left: 8%;
  animation-delay: 1.5s;
}

.digi-style-113 {
  top: 70%;
  left: 22%;
  animation-delay: 2.5s;
}

.digi-style-114 {
  top: 45%;
  right: 18%;
  animation-delay: 1.2s;
}

.digi-style-115 {
  top: 65%;
  right: 8%;
  animation-delay: 0.8s;
}

.digi-style-116 {
  bottom: 8%;
  left: 45%;
  animation-delay: 2.2s;
}

.digi-style-117 {
  bottom: 18%;
  right: 32%;
  animation-delay: 1.8s;
}

.digi-style-118 {
  z-index: 10;
}

.digi-style-119 {
  z-index: 9;
}

.digi-style-120 {
  z-index: 8;
}

.digi-style-121 {
  z-index: 7;
}

.digi-style-122 {
  z-index: 6;
}

.digi-style-123 {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--gray-light);
}

.digi-style-124 {
  max-width: 1400px;
}

.digi-style-125 {
  row-gap: 24px;
}

.digi-style-126 {
  z-index: 0;
  margin-bottom: 50vh;
}

.digi-style-127 {
  opacity: 0.1;
  margin: auto 0 24px 0;
}

.digi-style-128 {
  font-size: 1.2rem;
}

.digi-style-129 {
  border-radius: 24px;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 500px;
}

.digi-style-130 {
  z-index: 1;
  margin-bottom: 50vh;
}

.digi-style-131 {
  border-radius: 24px;
  overflow: hidden;
  background-image: url('assets/images/case-study-1.png');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 500px;
}

.digi-style-132 {
  z-index: 2;
  margin-bottom: 50vh;
}

.digi-style-133 {
  border-radius: 24px;
  overflow: hidden;
  background-image: url('assets/images/case-study-2.png');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 500px;
}

.digi-style-134 {
  z-index: 3;
  margin-bottom: 50vh;
}

.digi-style-135 {
  border-radius: 24px;
  overflow: hidden;
  background-image: url('assets/images/case-study-3.png');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 500px;
}

.digi-style-136 {
  z-index: 4;
  margin-bottom: 50vh;
}

.digi-style-137 {
  border-radius: 24px;
  overflow: hidden;
  background-image: url('assets/images/case-study-4.png');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 500px;
}

.digi-style-138 {
  z-index: 5;
  margin-bottom: 50vh;
}

.digi-style-139 {
  border-radius: 24px;
  overflow: hidden;
  background-image: url('assets/images/case-study-5.png');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 500px;
}

.digi-style-140 {
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 50px -20px rgba(6, 182, 212, 0.15);
  background-color: var(--bg);
  border-color: var(--cyan);
}

.digi-style-141 {
  padding: 24px 12px;
}

.digi-style-142 {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 10px;
  background-color: var(--gray-light);
}

.digi-style-143 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
}

.digi-style-144 {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--gray);
}

.digi-style-145 {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  background-color: var(--blue-light);
  color: var(--cyan);
}

.digi-style-146 {
  font-size: 0.95rem;
  color: var(--cyan);
  border-color: var(--cyan);
}

.digi-style-147 {
  border-radius: 24px;
  overflow: hidden;
  background-image: url('assets/images/case-study-6.png');
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 500px;
}

.digi-style-148 {
  transition: all 0.3s ease;
  background-color: var(--gray-light);
}

.digi-style-149 {
  padding: 20px;
  background-color: var(--blue-light);
}

.digi-style-150 {
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: var(--blue);
  color: var(--bg);
}

.digi-style-151 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.digi-style-152 {
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: var(--yellow);
  color: var(--bg);
}

.digi-style-153 {
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: var(--green);
  color: var(--bg);
}

.digi-style-154 {
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: var(--indigo);
  color: var(--bg);
}

.digi-style-155 {
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: var(--red);
  color: var(--bg);
}

.digi-style-156 {
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: var(--cyan);
  color: var(--bg);
}

.digi-style-157 {
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: var(--pink);
  color: var(--bg);
}

.digi-style-158 {
  border-radius: 50px;
}

.digi-style-159 {
  --ds-hue: 220;
}

.digi-style-160 {
  --ds-hue: 200;
}

.digi-style-161 {
  --ds-hue: 260;
}

.digi-style-162 {
  --ds-hue: 320;
}

.digi-style-163 {
  --ds-hue: 150;
}

.digi-style-164 {
  --ds-hue: 30;
}

.digi-style-165 {
  font-size: 0.9rem;
}

.digi-style-166 {
  height: 60px;
}

.digi-style-167 {
  font-size: 2.5rem;
}

.digi-style-168 {
  border-right: none;
}

.digi-style-169 {
  font-size: 0.85rem;
}

.digi-style-170 {
  font-size: 0.7rem;
}

.digi-style-171 {
  width: 18px;
  height: 18px;
}

.digi-style-172 {
  font-size: 0.8rem;
  margin-right: 20px;
}

.digi-style-173 {
  font-size: 0.6rem;
}

.digi-style-174 {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.digi-style-175 {
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

.digi-style-176 {
  padding: 0 10px;
  border-radius: 4px;
  background-color: var(--purple-light);
}

.digi-style-177 {
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.6;
}

.digi-style-178 {
  font-size: 1.1rem;
}

.digi-style-179 {
  font-size: 0.8rem;
}

.digi-style-180 {
  min-height: 400px;
}

.digi-style-181 {
  animation: spinOrbitImage 40s linear infinite;
  max-width: 450px;
  width: 100%;
}

.digi-style-182 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  background-color: var(--bg);
}

.digi-style-183 {
  color: var(--maroon-darker);
}

.digi-style-184 {
  margin-left: 0;
}

.digi-style-185 {
  background-color: var(--cyan);
  background-color: var(--indigo);
}

.digi-style-186 {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(20px);
}

.digi-style-187 {
  width: 400px;
  height: 400px;
  filter: blur(60px);
  top: -100px;
  right: -100px;
  z-index: 0;
  opacity: 0.7;
  background-color: var(--blue-light);
  background-color: var(--purple-light);
}

.digi-style-188 {
  max-width: 400px;
  position: relative;
}

.digi-style-189 {
  width: 100px;
  height: 100px;
  filter: blur(20px);
  top: 30%;
  left: 10%;
  z-index: 0;
  opacity: 0.6;
  animation: blob-float 5s infinite alternate ease-in-out;
  background-color: var(--cyan);
  background-color: var(--indigo);
}

.digi-style-190 {
  width: 75%;
  position: relative;
  z-index: 2;
  border-color: var(--bg);
}

.digi-style-191 {
  width: 70%;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 1;
  opacity: 0.9;
  border-color: var(--bg);
}

.digi-style-192 {
  color: white;
  background-color: var(--cyan);
  background-color: var(--indigo);
}

.digi-style-193 {
  width: 50px;
  height: 50px;
  background-color: var(--cyan);
  background-color: var(--indigo);
}

.digi-style-194 {
  font-size: 2.2rem;
  transition: all 0.3s ease;
  color: var(--ink);
}

.digi-style-195 {
  font-size: 1.05rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.digi-style-196 {
  color: var(--cyan);
}

.digi-style-197 {
  color: var(--indigo);
}

.digi-style-198 {
  width: 42px;
  height: 42px;
  color: var(--indigo);
}

.digi-style-199 {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.digi-style-200 {
  width: 40px;
  height: 40px;
  background-color: var(--blue-light);
  background-color: var(--blue-light);
}

.digi-style-201 {
  width: 40px;
  height: 40px;
  background-color: var(--blue-light);
  background-color: var(--purple-light);
}

.digi-style-202 {
  width: 40px;
  height: 40px;
  background-color: var(--pink-light);
  background-color: var(--blue-light);
}

.digi-style-203 {
  color: var(--pink);
}

.digi-style-204 {
  border-color: var(--indigo);
}

.digi-style-205 {
  border-color: var(--pink);
}

.digi-style-206 {
  height: 180px;
  object-fit: cover;
}

.digi-style-207 {
  width: 45px;
  height: 45px;
}

.digi-style-208 {
  border-width: 2px;
}

.digi-style-209 {
  width: 45px;
  height: 45px;
  background-color: var(--indigo);
}

.digi-style-210 {
  background: transparent;
  border-color: var(--indigo);
  color: var(--indigo);
}

.digi-style-211 {
  width: 45px;
  height: 45px;
  background-color: var(--pink);
}

.digi-style-212 {
  background: transparent;
  border-color: var(--pink);
  color: var(--pink);
}

.digi-style-213 {
  height: 45px;
}

.digi-style-214 {
  border-color: var(--blue-light);
}

.digi-style-215 {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.digi-style-216 {
  width: 35px;
  height: 35px;
  transition: all 0.3s;
}

.digi-style-217 {
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.digi-style-218 {
  font-size: 15vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(14, 165, 233, 0.1);
  margin: 0;
  line-height: 0.8;
  font-family: 'Inter', sans-serif;
  letter-spacing: -5px;
}

.digi-style-219 {
  display: none;
}

.digi-style-220 {
  font-size: 2.5rem;
  color: var(--blue-light);
}

.digi-style-221 {
  font-family: 'Space Grotesk', sans-serif;
}

.digi-style-222 {
  font-weight: 500;
}

.digi-style-223 {
  max-height: 400px;
  animation: float 4s ease-in-out infinite;
  z-index: 1;
}

.digi-style-224 {
  max-width: 600px;
  font-family: 'Inter', sans-serif;
}

.digi-style-225 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
}

.digi-style-226 {
  max-width: 700px;
  font-family: 'Inter', sans-serif;
}

.digi-style-227 {
  max-width: 600px;
  color: var(--gray);
}

.digi-style-228 {
  max-width: 500px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border-color: var(--blue-light);
}

.digi-style-229 {
  max-width: 520px;
}

.digi-style-230 {
  object-fit: cover;
  aspect-ratio: 4/3;
}

.digi-style-231 {
  top: 100px;
}

.digi-style-232 {
  object-fit: cover;
  aspect-ratio: 16/9;
}

.digi-style-233 {
  border: 1px solid var(--border);
  background: var(--bg);
}

.digi-style-234 {
  font-size: 55px;
  line-height: 1;
  color: var(--cyan);
}

.digi-style-235 {
  font-size: 55px;
  line-height: 1;
  color: var(--red);
}

.digi-style-236 {
  font-size: 55px;
  line-height: 1;
  color: var(--gray);
}

.digi-style-237 {
  font-size: 55px;
  line-height: 1;
  color: var(--green);
}

.digi-style-238 {
  padding: 10px;
}

.digi-style-239 {
  min-width: 900px;
}

.digi-style-240 {
  color: var(--orange);
}

.digi-style-241 {
  color: var(--yellow);
}

.digi-style-242 {
  color: var(--green);
}

.digi-style-243 {
  color: var(--muted);
}

.digi-style-244 {
  color: var(--blue);
}

.digi-style-245 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  background-color: var(--ink);
  color: var(--bg);
}

.digi-style-246 {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  background-color: var(--blue);
  color: var(--bg);
}

.digi-style-247 {
  color: var(--gray);
}

.digi-style-248 {
  background-color: var(--gray-light);
  border-color: var(--blue-light);
}

.digi-style-249 {
  max-width: 900px;
}

.digi-style-250 {
  position: absolute;
  inset: 0;
  opacity: .35;
}

@media (max-width:1024px) {

  .digi-style-4 {
    font-size: 40px;
  }

  /* .solution-hero-new {
    padding: 0px;
  } */
}

/* ========================================================= */
/* INDUSTRIES PAGE UNIQUE STYLES */
/* ========================================================= */
.ind-hero-spacing {
  padding-top: 120px;
}

.ind-max-w-800 {
  max-width: 800px;
}

.ind-card-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.ind-card-glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
}

.ind-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--indigo);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.ind-card-glass:hover .ind-icon-wrap {
  background: var(--grad);
  color: var(--bg);
}

.ind-floating-img {
  animation: indFloat 6s ease-in-out infinite;
  border-radius: 1.5rem;
  filter: drop-shadow(0 15px 30px rgba(217, 70, 239, 0.15));
}

@keyframes indFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.ind-stat-card {
  background: var(--bg);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 4px solid transparent;
  transition: all 0.4s ease;
  height: 100%;
}

.ind-stat-card:hover {
  border-bottom: 4px solid var(--purple);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(217, 70, 239, 0.15);
}

.ind-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  z-index: 1;
}

.ind-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 2rem;
  background: var(--grad-diag);
  opacity: 0.15;
  z-index: -1;
  filter: blur(20px);
  transition: all 0.4s ease;
}

.ind-image-wrapper:hover::after {
  opacity: 0.3;
  filter: blur(25px);
}

.ind-image-wrapper img {
  border-radius: 1.5rem;
  position: relative;
  z-index: 2;
}

.ind-icon-wrap-sm {
  width: 36px;
  height: 36px;
  margin-bottom: 0;
}

/* ========================================================= */
/* PREMIUM UNIQUE DESIGN ADDITIONS */
/* ========================================================= */

/* Overlapping Glass Cards */
@media (min-width: 992px) {
  .overlap-right {
    margin-right: -80px;
  }

  .overlap-left {
    margin-left: -80px;
  }
}

/* Background Blobs */
.bg-blob-1,
.bg-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
  animation: blobFloat 10s infinite alternate;
}

.bg-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--purple-light);
  top: 10%;
  left: -100px;
}

.bg-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--cyan);
  bottom: 20%;
  right: -50px;
  opacity: 0.2;
  animation-delay: 2s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 50px) scale(1.1);
  }
}

/* Platform Icons Glow */
.tech-box-card {
  transition: all 0.3s ease;
  border: 1px solid var(--cyan);
}

.tech-box-card:hover {
  background: white;
  border-color: var(--cyan);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.15);
  transform: translateY(-5px);
}

/* Enhanced Stat Cards */
.ind-stat-card {
  position: relative;
  overflow: hidden;
}

.ind-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}

.ind-stat-card:hover::before {
  opacity: 1;
}

/* Checklist alignment */
.ind-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ind-list-item i {
  color: var(--grad);
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}

/* Custom Image Wrapper Shape */
.ind-image-wrapper {
  border-radius: 1.5rem;

  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ind-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.ind-image-wrapper:hover img {
  transform: scale(1.1);
}


/* Industries Mega Menu */
@media (min-width: 992px) {
  .ind-mega-menu {
    min-width: 900px !important;
    left: -250px !important;
    padding: 25px 30px !important;
  }
}


/* Premium Stat Cards for Industries */
.stat-card-premium {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 35px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 1;
}

.stat-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.6), rgba(217, 70, 239, 0.6));
  -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;
  z-index: -1;
}

.stat-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.stat-card-premium:hover::before {
  opacity: 1;
}

.stat-card-premium .stat-number {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.stat-color-1 {
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-color-2 {
  background: linear-gradient(135deg, #059669, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-color-3 {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-color-4 {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* Premium Unique Vertical Tabs (Brand Styling) */
.nav-pills-custom {
  gap: 15px !important;
}

.nav-pills-custom .nav-link {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03);
  color: var(--muted);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  padding: 22px 25px !important;
  border-radius: 16px !important;
  z-index: 1;
  font-weight: 700 !important;
  text-align: left;
  width: 100%;
}

.nav-pills-custom .nav-link:hover {
  background-color: #fcfbfe;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transform: translateX(6px);
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.08);
}

.nav-pills-custom .nav-link.active {
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%) !important;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
  color: var(--purple) !important;
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.18), inset 0 2px 0 rgba(255, 255, 255, 1);
  transform: translateX(15px) scale(1.03);
  z-index: 2;
}

/* Details Box Unique Design */
.tab-pane-card {
  background: #ffffff;
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(124, 58, 237, 0.02);
  border-radius: 24px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease;
}

.tab-pane-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad);
}

.tab-pane-card .decor-blob-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  top: -150px;
  right: -150px;
  z-index: -1;
  border-radius: 50%;
}

.tab-pane-card .decor-blob-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -100px;
  left: -100px;
  z-index: -1;
  border-radius: 50%;
}

/* Glowing Gradient Left Bar */
.nav-pills-custom .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0px;
  background: var(--grad);
  transition: width 0.3s ease;
}

.nav-pills-custom .nav-link.active::before {
  width: 6px;
}

/* Glowing Indicator Dot on Right */
.nav-pills-custom .nav-link::after {
  content: '';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-pills-custom .nav-link.active::after {
  transform: translateY(-50%) scale(1);
}




/* Solution Cards Premium Hover Effect */
.solution-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  /* Slightly more visible base border */
}

.solution-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(124, 58, 237, 0.15) !important;
  background-color: #ffffff !important;
}

.solution-card .icon-box-small {
  transition: all 0.4s ease;
}

.solution-card:hover .icon-box-small {
  transform: scale(1.15) rotate(5deg);
}

/* Gradient line that expands on hover */
.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--grad);
  transition: width 0.4s ease;
}

.solution-card:hover::after {
  width: 100%;
}


/* ================================== */
/* SOLUTIONS THEME SECTION            */
/* ================================== */
.bg-grad {
  background: var(--grad);
}

.text-grad-diag {
  background: var(--grad-diag);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-theme-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.solution-theme-pill {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.solution-theme-pill .icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  /* light purple */
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.4s ease;
}

.solution-theme-pill .text-wrapper {
  font-weight: 600;
  color: #333;
  font-size: 17px;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.solution-theme-pill:hover {
  transform: translateY(-5px) scale(1.02);
  background: var(--grad-diag);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.solution-theme-pill:hover .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotate(10deg);
}

.solution-theme-pill:hover .text-wrapper {
  color: #fff;
}

/* ========================================= */
/* OUR PRODUCTS (INNOVATIONS) CARDS CSS      */
/* ========================================= */
.innovations-section {
  padding: 60px 0 0;
  background-color: #fafbfc;
}

.innovation-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.innovation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.innovation-media {
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-bottom: 25px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.innovation-media img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.innovation-launch {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  transition: transform 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.innovation-launch:hover {
  transform: scale(1.1);
  color: var(--purple);
}

.innovation-tag {
  display: inline-block;
  background-color: var(--purple-light);
  color: var(--purple);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  align-self: flex-start;
}

.innovation-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 15px;
}

.innovation-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.innovation-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--grad);
  color: var(--bg);
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.innovation-btn i {
  margin-left: 5px;
  font-size: 14px;
}

.innovation-btn:hover {
  background: var(--grad-diag);
  color: var(--bg);
}

/* ========================================= */
/* PRODUCTS HERO CSS                         */
/* ========================================= */
.products-hero {
  position: relative;
  padding: 160px 0 80px;
  background: radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(217, 70, 239, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
  background-color: var(--surface);
  text-align: center;
  overflow: hidden;
}

.products-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
}

.products-hero-badge i {
  font-size: 14px;
}

.products-hero-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 25px;
  font-family: 'Space Grotesk', sans-serif;
}

.products-hero-title .text-gradient {
  background: var(--grad-diag);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-hero-subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .products-hero {
    padding: 140px 0 60px;
  }

  .products-hero-title {
    font-size: 36px;
  }
}

/* ========================================= */
/* SERVICES PAGE CSS                         */
/* ========================================= */

.service-block {
  padding: 100px 0;
  background-color: var(--bg);
  position: relative;
}

.service-block-alt {
  background-color: var(--surface-2);
}

.service-eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 22px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-block-alt .service-eyebrow-icon {
  background: var(--indigo);
  color: var(--bg);
}

.service-block .section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}

.service-block .accent {
  background: var(--grad-diag);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-check:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border-color: rgba(99, 102, 241, 0.15);
}

.service-block-alt .service-check {
  background: var(--bg);
}

.service-check i {
  color: var(--cyan);
  font-size: 18px;
}

.service-block-alt .service-check i {
  color: var(--indigo);
}

/* Glassmorphism visual container */
.service-visual {
  position: relative;
  border-radius: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 3;
}

/* Glowing orbs behind the glass */
.service-visual::before,
.service-visual::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(60px);
  opacity: 0.7;
}

/* Cyan Orb */
.service-visual::before {
  top: -30px;
  left: -30px;
  background: rgba(14, 165, 233, 0.5);
  /* --cyan */
}

/* Purple Orb */
.service-visual::after {
  bottom: -30px;
  right: -30px;
  background: rgba(217, 70, 239, 0.5);
  /* --purple */
}

/* Alternate block colors */
.service-block-alt .service-visual::before {
  top: auto;
  bottom: -30px;
  left: -30px;
  background: rgba(99, 102, 241, 0.5);
  /* --indigo */
}

.service-block-alt .service-visual::after {
  bottom: auto;
  top: -30px;
  right: -30px;
  background: rgba(234, 88, 12, 0.4);
  /* --orange */
}

.service-visual:hover::before {
  transform: scale(1.4) translate(-10px, -10px);
  opacity: 0.9;
}

.service-visual:hover::after {
  transform: scale(1.4) translate(10px, 10px);
  opacity: 0.9;
}

@keyframes floatVisual {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.service-visual-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  animation: floatVisual 6s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-visual:hover .service-visual-img {
  transform: scale(1.06) translateY(-5px);
  animation-play-state: paused;
}

@media (max-width: 991px) {
  .service-block {
    padding: 70px 0;
  }

  .service-block .section-title {
    font-size: 32px;
  }

  .service-visual {
    margin-top: 30px;
    padding: 20px;
  }

  .service-visual::before,
  .service-visual::after {
    display: none;
  }
}

/* ========================================= */
/* HIGHLIGHTED MARQUEE SECTION CSS           */
/* ========================================= */
.marquee-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  white-space: nowrap;
  padding: 5px 0;
}

/* Gradient masks for smooth fading at edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(250, 250, 252, 1) 0%, transparent 100%);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(250, 250, 252, 1) 0%, transparent 100%);
}

.marquee-content {
  /* display: inline-block;  */
  animation: marquee 25s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.expertise-tag {
  background: #fff;
  color: var(--dark);
  border: 1px solid rgba(124, 58, 237, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  margin-right: 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  z-index: 1;
}

.expertise-tag i {
  color: var(--purple);
  margin-right: 8px;
  transition: color 0.3s ease;
}

.expertise-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expertise-tag:hover {
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(124, 58, 237, 0.3);
}

.expertise-tag:hover i {
  color: #fff;
}

.expertise-tag:hover::before {
  opacity: 1;
}

/* --- New Case Study Card Styles --- */
.cs-modern-card {
  background: var(--bg);
  border-radius: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.cs-modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.cs-outline-tag {
  border: 1px solid var(--border);
  color: var(--gray);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.cs-modern-card h2 {
  font-size: 2.2rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cs-image-box {
  background-color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.cs-image-box img {
  border-radius: 1.25rem;
  transition: transform 0.4s ease;
}

.cs-modern-card:hover .cs-image-box img {
  transform: scale(1.02);
}

/* 
.port-image img{
  width: 100%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
} */
.hero-gradient-overlay {
  padding: 10px 0;
}

.whychoosereact {
  padding: 0;
}

.bg-light-blue-tint {
  padding: 20px 0;
}

.solution-hero {
  padding: 160px 0 40px;
}

@media (max-width:1024px) {
  .footer-giant-text {
    font-size: 60px;
    bottom: 0px;
  }

  .footer-vasundhara {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .digi-style-22 {
    padding: 120px 0;
  }

  .bg-light-blue-tint {
    padding: 0;
  }

  .whychoosereact {
    padding: 0;
  }

  .accordion-button {
    font-size: 18px;
  }
}

@media (max-width:991px) {


  .digi-style-22 {
    padding: 120px 0 0;
  }

  .hero-react-img {
    animation: float 4s ease-in-out infinite;
    width: 200px;
  }

  .ref-hero-tag {
    display: none;
  }

  .ref-section-title {
    font-size: 30px;
  }

  .digi-style-55 {
    font-size: 40px;
  }

  .cta-banner {
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    gap: 22px;
    flex-direction: column !important;
    /* margin-bottom: 80px; */
  }
}

@media (max-width:425px) {
  .footer-bottom {
    bottom: 30px;
  }

  .ref-job-card {

    align-items: start;

    flex-direction: column;
    gap: 20px;
    padding: 13px;
  }

  .ref-job-info h5 {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
  }

  .ref-job-meta {

    font-size: 17px;
  }

  .ref-job-meta span {

    font-size: 14px;
  }

  .digi-style-55 {
    font-size: 35px;
  }

  .digi-style-59 {
    font-size: 30px;
    /* line-height: 1.3; */
  }

  .digi-contact h5{
    font-size: 17px;
  }
}