



@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  .animate-float { animation: float 6s ease-in-out infinite; }
  .animate-float-slow { animation: float 10s ease-in-out infinite; }

  /* Lead Generation Journey Animations */
  @keyframes wavy {
    0%, 100% { transform: translateX(0) scaleY(1); }
    25% { transform: translateX(2px) scaleY(1.2); }
    50% { transform: translateX(0) scaleY(0.8); }
    75% { transform: translateX(-2px) scaleY(1.1); }
  }
  
  .animate-wavy {
    animation: wavy 3s ease-in-out infinite;
  }
  
  @keyframes fade-in-up {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
  }
  
  @keyframes glow-pulse {
    0%, 100% { 
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% { 
      box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
  }
  
  .animate-glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
  }
  
  @keyframes particle-float {
    0%, 100% { 
      transform: translateY(0) translateX(0);
      opacity: 0.7;
    }
    25% { 
      transform: translateY(-15px) translateX(10px);
      opacity: 1;
    }
    50% { 
      transform: translateY(-25px) translateX(-5px);
      opacity: 0.8;
    }
    75% { 
      transform: translateY(-10px) translateX(15px);
      opacity: 0.9;
    }
  }
  
  .animate-particle-float {
    animation: particle-float 4s ease-in-out infinite;
  }
  
  @keyframes blob-morph {
    0%, 100% { 
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% { 
      border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% { 
      border-radius: 50% 60% 30% 60% / 60% 30% 60% 40%;
    }
    75% { 
      border-radius: 40% 30% 60% 50% / 30% 60% 40% 60%;
    }
  }
  
  .animate-blob-morph {
    animation: blob-morph 8s ease-in-out infinite;
  }
  
  @keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  
  .animate-icon-bounce {
    animation: icon-bounce 2s ease-in-out infinite;
  }
  
  @keyframes number-glow {
    0%, 100% { 
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% { 
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
  }
  
  .animate-number-glow {
    animation: number-glow 3s ease-in-out infinite;
  }
  
  /* Enhanced Hover Animations */
  @keyframes container-glow {
    0%, 100% { 
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
    }
    50% { 
      box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
    }
  }
  
  .animate-container-glow {
    animation: container-glow 2s ease-in-out infinite;
  }
  
  @keyframes icon-rotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
  }
  
  .animate-icon-rotate {
    animation: icon-rotate 3s ease-in-out infinite;
  }
  
  @keyframes text-glow {
    0%, 100% { 
      text-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
    }
    50% { 
      text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    }
  }
  
  .animate-text-glow {
    animation: text-glow 2s ease-in-out infinite;
  }

      .chatbot-embed .chat-container {
        width: 100%;
        max-width: 500px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 700px;
      }
      .chatbot-embed .chat-header {
        background-color: #3B82F6;
        color: white;
        padding: 15px;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
      }
      .chatbot-embed .chat-messages {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }
      .chatbot-embed .message {
        max-width: 80%;
        padding: 12px 15px;
        border-radius: 18px;
        line-height: 1.4;
        position: relative;
      }
      .chatbot-embed .user-message {
        align-self: flex-end;
        background-color: #3B82F6;
        color: white;
        border-bottom-right-radius: 5px;
      }
      .chatbot-embed .bot-message {
        align-self: flex-start;
        background-color: #f0f0f0;
        color: #333;
        border-bottom-left-radius: 5px;
      }
      .chatbot-embed .typing-indicator {
        display: flex;
        align-self: flex-start;
        background-color: #f0f0f0;
        padding: 10px 15px;
        border-radius: 18px;
        border-bottom-left-radius: 5px;
        margin-bottom: 15px;
      }
      .chatbot-embed .typing-dot {
        width: 8px;
        height: 8px;
        background-color: #999;
        border-radius: 50%;
        margin: 0 2px;
        animation: typingAnimation 1.4s infinite ease-in-out;
      }
      .chatbot-embed .typing-dot:nth-child(1) {
        animation-delay: 0s;
      }
      .chatbot-embed .typing-dot:nth-child(2) {
        animation-delay: 0.2s;
      }
      .chatbot-embed .typing-dot:nth-child(3) {
        animation-delay: 0.4s;
      }
      @keyframes typingAnimation {
        0%, 60%, 100% {
          transform: translateY(0);
        }
        30% {
          transform: translateY(-5px);
        }
      }
      /* Chat input styles removed as requested */
      .chatbot-embed .suggested-questions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 15px;
        background-color: #f9f9f9;
        border-top: 1px solid #eee;
      }
      .chatbot-embed .suggested-question {
        background-color: #e8f0fe;
        color: #3B82F6;
        border: none;
        border-radius: 15px;
        padding: 8px 12px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s;
      }
      .chatbot-embed .suggested-question:hover {
        background-color: #d7e3fc;
      }
      .chatbot-embed .timestamp {
        font-size: 11px;
        color: #999;
        margin-top: 5px;
        text-align: right;
      }
      @keyframes pulse-slow {
        0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.2); }
        50% { box-shadow: 0 0 40px 10px rgba(59,130,246,0.15); }
      }
      .animate-pulse-slow {
        animation: pulse-slow 3s infinite;
      }

:root {
  --primary-blue: #3B82F6;
}

.bg-primary-blue {
  background-color: var(--primary-blue) !important;
}
.text-primary-blue {
  color: var(--primary-blue) !important;
}
.border-primary-blue {
  border-color: var(--primary-blue) !important;
}

/* Back to Top Button Styles */
#backToTopBtn {
  opacity: 0;
  pointer-events: none;
}
#backToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}
#backToTopBtn {
  box-shadow: 0 4px 24px 0 rgba(59,130,246,0.15);
}
@media (max-width: 640px) {
  #backToTopBtn {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem;
  }
}

/* Triangle Back to Top Button Styles */
.triangle-btn {
  border-radius: 18% 18% 40% 40% / 30% 30% 70% 70%;
  box-shadow: 0 8px 32px 0 rgba(59,130,246,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transition: box-shadow 0.3s, transform 0.2s;
}
.triangle-btn svg {
  display: block;
  filter: drop-shadow(0 2px 8px rgba(59,130,246,0.12));
  transition: transform 0.2s;
}
.triangle-btn:hover svg {
  transform: translateY(-4px) scale(1.08) rotate(-2deg);
}
.triangle-btn:active {
  box-shadow: 0 2px 8px 0 rgba(59,130,246,0.10);
  transform: scale(0.97);
}

  /* 3D Transform Styles for Image Hover Effect */
  #image-container {
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  
  #hero-image {
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
  }
  
  /* Custom cursor for better UX */
  #image-container:hover {
    cursor: none;
  }
  
  /* Smooth animation for the bending effect */
  .image-bend-left {
    transform: rotateY(-15deg) rotateX(5deg) scale(1.05);
  }
  
  .image-bend-right {
    transform: rotateY(15deg) rotateX(5deg) scale(1.05);
  }
  
  .image-bend-center {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  }
  
  /* Custom cursor element */
  .custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(59, 130, 246, 0.8);
    border: 2px solid white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  
  .custom-cursor.hidden {
    opacity: 0;
  }
    .container-width {
      max-width: 1600px !important;
    }
    .container-width-2 {
      max-width: 1350px !important;
    }
    .container-width-3 {
      max-width: 1000px !important;
    }







/* Dropdown Menu Styles for index file */ 








.dropdown-container {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e5e7eb;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: all 0.3s ease;
  z-index: 50;
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  background: linear-gradient(to right, #3B82F6, #1D4ED8);
  color: white;
  padding: 1rem;
  border-radius: 1rem 1rem 0 0;
}

.dropdown-items {
  padding: 0.5rem;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.dropdown-item:hover {
  background-color: #f8fafc;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.dropdown-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-item-icon {
  transform: scale(1.1);
}

.dropdown-footer {
  background-color: #f9fafb;
  padding: 0.75rem;
  border-radius: 0 0 1rem 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Color themes for dropdown items */
.dropdown-item-blue:hover {
  background-color: #eff6ff;
}

.dropdown-item-blue:hover .dropdown-item-icon {
  background-color: #dbeafe;
}

.dropdown-item-yellow:hover {
  background-color: #fefce8;
}

.dropdown-item-yellow:hover .dropdown-item-icon {
  background-color: #fef3c7;
}

.dropdown-item-green:hover {
  background-color: #f0fdf4;
}

.dropdown-item-green:hover .dropdown-item-icon {
  background-color: #dcfce7;
}

.dropdown-item-purple:hover {
  background-color: #faf5ff;
}

.dropdown-item-purple:hover .dropdown-item-icon {
  background-color: #e9d5ff;
}

.dropdown-item-red:hover {
  background-color: #fef2f2;
}

.dropdown-item-red:hover .dropdown-item-icon {
  background-color: #fecaca;
}



@keyframes fade-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fade-in 0.4s cubic-bezier(0.4,0,0.2,1);
}
/* Make overlay blur very strong on mobile menu open */
#mobile-menu-overlay.backdrop-blur-2xl {
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
}

/* Infinite scroll animation for reviews */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 30s linear infinite;
}

/* Pause animation on hover */
.animate-scroll:hover {
  animation-play-state: paused;
}

/* Connected cards effect */
.connected-card-left {
  border-right: none;
  box-shadow: 5px 0 15px rgba(59, 130, 246, 0.1);
}

.connected-card-right {
  border-left: none;
  box-shadow: -5px 0 15px rgba(59, 130, 246, 0.1);
}

.connected-card-left:hover {
  box-shadow: 8px 0 20px rgba(59, 130, 246, 0.2);
}

.connected-card-right:hover {
  box-shadow: -8px 0 20px rgba(59, 130, 246, 0.2);
}

/* Lead Verification Section Animations */
@keyframes fade-in-delay {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-delay {
  animation: fade-in-delay 1s ease-out 0.3s both;
}

@keyframes slide-in {
  0% { width: 0; opacity: 0; }
  100% { width: 6rem; opacity: 1; }
}

.animate-slide-in {
  animation: slide-in 1s ease-out 0.6s both;
}

@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fade-in-up 1s ease-out 0.2s both;
}

.animate-fade-in-up-delay {
  animation: fade-in-up 1s ease-out 0.4s both;
}

.animate-fade-in-up-delay-2 {
  animation: fade-in-up 1s ease-out 0.6s both;
}

.animate-fade-in-up-delay-3 {
  animation: fade-in-up 1s ease-out 0.8s both;
}

@keyframes pulse-slow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

@keyframes bounce-slow {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-8px); }
  70% { transform: translateY(-4px); }
  90% { transform: translateY(-2px); }
}

.animate-bounce-slow {
  animation: bounce-slow 4s ease-in-out infinite;
}

/* Enhanced shadow effects */
.shadow-3xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Smooth transitions for cards */
.transform-gpu {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Lead Verification Section Specific Styles */
.lead-verification-section {
  overflow: hidden;
  position: relative;
}

.process-flow-container {
  position: relative;
  z-index: 10;
}

.process-step {
  position: relative;
  z-index: 20;
}

.step-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.step-card:hover::before {
  left: 100%;
}

.step-number {
  position: relative;
  z-index: 30;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.icon-container {
  position: relative;
  z-index: 25;
  transition: all 0.3s ease;
}

.icon-container:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Snake-like Animation for Connecting Lines */
@keyframes snake-flow {
  0% {
    transform: scaleX(0) rotate(12deg);
    opacity: 0;
  }
  50% {
    transform: scaleX(1) rotate(12deg);
    opacity: 1;
  }
  100% {
    transform: scaleX(1) rotate(12deg);
    opacity: 1;
  }
}

@keyframes snake-flow-reverse {
  0% {
    transform: scaleX(0) rotate(-12deg);
    opacity: 0;
  }
  50% {
    transform: scaleX(1) rotate(-12deg);
    opacity: 1;
  }
  100% {
    transform: scaleX(1) rotate(-12deg);
    opacity: 1;
  }
}

.animate-snake-flow {
  animation: snake-flow 2s ease-out 1s both;
}

.animate-snake-flow-reverse {
  animation: snake-flow-reverse 2s ease-out 1.5s both;
}

.snake-line {
  position: relative;
  overflow: hidden;
}

.snake-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: snake-glow 3s ease-in-out infinite;
}

@keyframes snake-glow {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .process-flow-container {
    flex-direction: column;
    gap: 4rem;
  }
  
  .snake-line {
    display: none;
  }
  
  .step-card {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .step-card {
    max-width: 350px;
    padding: 1.5rem;
  }
  
  .step-number {
    width: 3rem;
    height: 3rem;
  }
  
  .step-number span {
    font-size: 1rem;
  }
  
  .icon-container {
    width: 4rem;
    height: 4rem;
  }
  
  .icon-container svg {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 640px) {
  .step-card {
    max-width: 300px;
    padding: 1rem;
  }
  
  .step-card h3 {
    font-size: 1.25rem;
  }
  
  .step-card p {
    font-size: 0.875rem;
  }
}

/* Enhanced Hover Effects */
.process-step:hover .step-number {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.process-step:hover .icon-container {
  transform: scale(1.05);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

/* Card Color Variables */
.step-1 .step-card {
  --card-color-1: #60a5fa;
  --card-color-2: #3b82f6;
}

.step-2 .step-card {
  --card-color-1: #1e40af;
  --card-color-2: #1e3a8a;
}

.step-3 .step-card {
  --card-color-1: #f97316;
  --card-color-2: #ea580c;
}

.step-4 .step-card {
  --card-color-1: #374151;
  --card-color-2: #1f2937;
}





/* Tab Content Styles */
.tab-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.tab-content.active {
  opacity: 1;
  transform: translateY(0);
}

.tab-content.hidden {
  display: none;
}

/* Calendar Styles */
.calendar-container {
  font-family: 'Inter', sans-serif;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: white;
  padding: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.month-year {
  font-weight: 600;
  font-size: 1.25rem;
  color: #1f2937;
}

.prev-month-btn, .next-month-btn {
  background: none;
  border: none;
  color: #3b82f6;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.prev-month-btn:hover, .next-month-btn:hover {
  background-color: #e0e7ff;
  color: #1d4ed8;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.weekday {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  padding: 0.5rem 0;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.day-btn {
  width: 100%;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.day-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.day-btn:disabled {
  cursor: not-allowed;
}

.time-selection, .confirmation-section {
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.time-btn {
  padding: 0.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.selected-date-time {
  margin-bottom: 1rem;
  font-weight: 500;
  color: #1f2937;
}

.confirm-meeting {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  background-color: #3b82f6;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.confirm-meeting:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}



/* virtual stagg form / */

 .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }


  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fade-up {
    animation: fadeUp 0.6s ease-out both;
  }

  .animate-fade-up.delay-100 {
    animation-delay: 0.1s;
  }


  

  .btn-disabled {
    background-color: grey !important;
    border-color: grey !important;
    cursor: not-allowed !important;
}
