:root {
  --primary-color: #2a9d8f;
  /* Teal */
  --secondary-color: #e9c46a;
  /* Golden Yellow */
  --gradient-bg: linear-gradient(135deg, #2a9d8f 0%, #21867a 100%);
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-light: #f4fafa;
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-float: 0 30px 60px -12px rgba(42, 157, 143, 0.18);

  /* Bootstrap variable overrides */
  --bs-primary: #2a9d8f;
  --bs-primary-rgb: 42, 157, 143;
  --bs-link-color: #2a9d8f;
  --bs-link-hover-color: #21867a;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hover-primary {
  transition: color 0.3s ease;
}

.hover-primary:hover {
  color: var(--primary-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: var(--gradient-bg);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-custom {
  background: var(--gradient-bg);
}

.btn-primary-gradient {
  background: var(--gradient-bg);
  color: white;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-pill {
  border-radius: 50rem;
  padding: 0.75rem 1.5rem;
}

.card-rounded {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  background: white;
}

.card-rounded:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.hero-section {
  position: relative;
  padding: 80px 0 80px;
  background: #ffffff;
  overflow: hidden;
}

.hero-blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(236, 72, 153, 0.15);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
}

.hero-blob-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 241, 0.15);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

.demo-form-container {
  margin-bottom: 3rem;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-fade .carousel-item {
  transition-duration: .8s;
}

.carousel-visual-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  height: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 4px solid white;
}

.visual-map-bg {
  background: url('../img/india-map.svg') center/contain no-repeat;
  background-color: #f8fafc;
}

.visual-cam-bg {
  background: url('https://images.unsplash.com/photo-1517331156700-3c241d2b4d83?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80') center/cover;
}

.visual-dashboard-bg {
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80') center/cover;
}

.floating-chip {
  position: absolute;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50rem;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}

.chip-tl {
  top: 20px;
  left: 20px;
}

.chip-br {
  bottom: 20px;
  right: 20px;
}

.chip-video {
  bottom: -25px;
  right: 25px;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: var(--shadow-float);
}

.chip-video:hover {
  transform: scale(1.05);
}

.tracking-point {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.tracking-point .pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: rgba(42, 157, 143, 0.4);
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
  z-index: -1;
}

@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: bold;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step-connector {
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

@media (max-width: 768px) {
  .step-connector::after {
    display: none;
  }
}

.industry-card {
  position: relative;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: white;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: 1;
}

.industry-card>* {
  position: relative;
  z-index: 2;
}

.pricing-card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-float);
}

@media (max-width: 991px) {
  .pricing-card.popular {
    transform: none;
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: transform 0.3s;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.hover-white:hover {
  color: white !important;
  opacity: 1 !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, .125);
}

.accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* Custom Range Slider */
.custom-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #e5e7eb;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #52b5ab 0%, #52b5ab 100%);
  border: 4px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin-top: -9px;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  border-radius: 5px;
}