
@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}


/* [data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

.aos-init {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^="fade"][data-aos^="fade"] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0);
}

[data-aos="fade-down"] {
  transform: translate3d(0, -30px, 0);
}

[data-aos="fade-right"] {
  transform: translate3d(-30px, 0, 0);
}

[data-aos="fade-left"] {
  transform: translate3d(30px, 0, 0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
} */

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}


/* Force Zoho SalesIQ button to viewport bottom‑right corner */
.zsiq_floatmain,
.zsiq_flt1,
iframe[src*="salesiq"] {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  z-index: 999999 !important;
}

/* Also ensure its parent container doesn't interfere */
body .zsiq_floatmain,
body .zsiq_flt1 {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
}

#smooth-wrapper,
#smooth-content {
  transform: none !important;
}


.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #17479e;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top-btn:hover {
  background: #e01a22;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Add to your global CSS or criticalCSS */
.pulse-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid #E01A22;
  border-radius: 50%;
  animation: pulse 1.5s ease-out infinite;
  opacity: 0;
}
.delay { animation-delay: 0.5s; }
.delay2 { animation-delay: 1s; }

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* For the glass shatter overlay */
.glass-shatter-overlay svg line {
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
}

/* Typing dots animation */
.typing-dots {
  display: inline-block;
  width: 24px;
  text-align: left;
  animation: blinkDots 1.2s step-end infinite;
}
@keyframes blinkDots {
  0%, 20% { content: "."; }
  40%, 60% { content: ".."; }
  80%, 100% { content: "..."; }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .service-bot-wrapper {
    bottom: 16px;
    left: 16px;
  }
  .service-bot-bubble {
    max-width: 220px;
    font-size: 0.75rem;
  }
}

/* typing dots animation */
.typing-dots {
  display: inline-block;
  width: 24px;
  text-align: left;
  animation: blinkDots 1.2s step-end infinite;
}
@keyframes blinkDots {
  0%, 20% { content: "."; }
  40%, 60% { content: ".."; }
  80%, 100% { content: "..."; }
}

/* Responsive */
@media (max-width: 640px) {
  .service-bot-wrapper {
    bottom: 16px;
    left: 16px;
  }
  .service-chat-container {
    width: 260px !important;
  }
}


select option {
  background-color: #1e1e2e !important;  /* dark background */
  color: #ffffff !important;             /* white text */
}

select option:hover {
  background-color: #ff4444 !important;  /* hover color */
}