@import url('https://fonts.cdnfonts.com/css/satoshi');

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

* {
  box-sizing: border-box;
}

body {
  font-family: 'Satoshi', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.bg-dots {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.bg-dots::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.header {
  height: 100vh;
  position: relative;
}

.sub-header {
  height: 60vh;
}

.nav-custom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-custom .navbar-brand img {
  height: 40px !important;
}

.nav-custom .navbar-brand img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.bg-white .navbar-brand img {
  filter: brightness(1) invert(0);
}

.nav-custom .nav-link {
  color: white !important;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.nav-custom .btn-sm {
  color: white;
  border-color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
}

.bg-white {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0px !important;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
}

.bg-white .nav-link {
  color: #120635 !important;
}

.bg-white .btn-sm {
  color: #667eea;
  border-color: #667eea;
}

.bg-white .btn-sm:hover {
  background-color: #667eea;
  color: white !important;
  border-color: #667eea;
}

.nav-link {
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.bg-white .nav-link.active,
.bg-white .nav-link:hover {
  color: #667eea !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.bg-white .navbar-toggler {
  border-color: rgba(18, 6, 53, 0.3);
  color: #120635;
}

h1 {
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 110%;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 120%;
}

.sub-text {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.6;
}

.text-primary {
  color: #120635 !important;
}

.text-accent {
  color: #0b65d8 !important;
}

.text-secondary {
  color: #66646d !important;
}

.text-secondary-dark {
  color: #e3e2e5 !important;
}

.btn {
  border-radius: 50px;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-sm {
  border-radius: 50px;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  position: relative;
  height: 3.125rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  min-width: 10rem;
  color: white;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #667eea !important;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn:hover,
.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  border-color: white;
}

.integration {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.integration::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.integration h2,
.integration p {
  position: relative;
  z-index: 1;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

#rotatingWord {
  display: inline-block;
}

.team-rounded {
  background: #f3ebe1;
  border-radius: 24px;
}

.team-img {
  border-radius: 24px;
}

.contact-card-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* Smooth text rotation animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-out {
  animation: fadeOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#rotatingWord {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Down Arrow */
.scroll-down-arrow {
  margin-top: 3rem;
  text-align: center;
}

.scroll-down-arrow a {
  text-decoration: none;
  display: inline-block;
}

.arrow-container {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: bounceArrow 2s infinite;
}

.arrow-container i {
  color: white;
  font-size: 1.5rem;
}

.scroll-down-arrow a:hover .arrow-container {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(5px);
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* AI Chat Demo Styles */
.ai-chat-popup {
  border-radius: 24px !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.swal2-popup.ai-chat-popup .swal2-html-container {
  margin: 0 !important;
  padding: 0 !important;
}

/* Custom close button for chat modal */
.swal2-close {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  transition: all 0.3s ease !important;
  z-index: 1000 !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.swal2-close:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: white !important;
  transform: rotate(90deg) !important;
}

.ai-chat-container {
  display: flex;
  flex-direction: column;
  height: 600px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 24px 24px 0 0;
}

.bot-avatar {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #667eea;
}

.bot-info h4 {
  margin: 0;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.status-indicator {
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 500;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  background: #f8f9ff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  display: flex;
  gap: 0.75rem;
  animation: fadeInMessage 0.4s ease-out;
}

@keyframes fadeInMessage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-message {
  align-items: flex-start;
}

.user-message {
  justify-content: flex-end;
}

.message-avatar {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.bot-message .message-content {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 0 16px 16px 16px;
  max-width: 75%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #120635;
  line-height: 1.6;
}

.user-message .message-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 16px 0 16px 16px;
  max-width: 75%;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.typing-indicator {
  display: none !important;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 16px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: absolute;
  bottom: 0;
  left: 2rem;
}

.typing-indicator.show {
  display: flex !important;
  position: relative;
  bottom: auto;
  left: auto;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #667eea;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
}

.chat-input-area {
  padding: 1.5rem;
  background: white;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 0.75rem;
}

.chat-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.chat-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chat-send-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chat-option-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #667eea;
  border-radius: 50px;
  color: #667eea;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.chat-option-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Scrollbar styling for chat */
.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #764ba2;
}

/* Calendly button inside chat */
.calendly-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  margin-top: 1rem;
}

.calendly-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
  color: white !important;
}

.calendly-button i {
  font-size: 1.1rem;
}

.paragraph {
  line-height: 150%;
}

.slide-up {
  animation: slideUp 1s forwards;
}

.bg-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  position: relative;
  overflow: hidden;
}

.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.feature-section h4 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-section .comparison-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.feature-section .comparison-label.wrong {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.feature-section .comparison-label.correct {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

/* Industry Cards */
.industry-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.3);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.industry-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #120635;
  margin-bottom: 0.75rem;
}

.industry-card p {
  font-size: 0.95rem;
  color: #66646d;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Process Flow */
.process-flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.process-step {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  width: 200px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(240, 147, 251, 0.3);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 1rem auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 1.75rem;
  color: white;
  transition: all 0.4s ease;
}

.process-step:hover .process-icon {
  background: white;
  color: #667eea;
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.process-step h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 0;
}

.process-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Process Flow */
@media screen and (max-width: 1400px) {
  .process-step {
    width: 180px;
  }
}

@media screen and (max-width: 1200px) {
  .process-flow-container {
    gap: 1.5rem;
  }

  .process-step {
    width: 160px;
    padding: 1.75rem 1.25rem;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  .process-flow-container {
    flex-direction: column;
    gap: 2rem;
  }

  .process-step {
    width: 100%;
    max-width: 400px;
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}

.text-strikethrough {
  text-decoration: Line-Through;
}

.img-impl {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}

.img-impl:hover {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1) translateY(-5px);
}

.img-thumbnail {
  border-radius: 16px;
  border: 2px solid rgba(102, 126, 234, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.img-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

.footer a:hover::after {
  width: 100%;
}

.social-icons a {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 50%;
  margin: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  margin: 2rem 0;
}

.footer-links {
  position: relative;
  z-index: 1;
}

.footer-links a {
  white-space: nowrap;
}

.client {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  width: 280px;
  text-align: center;
  padding: 15px;
}

.client a {
  text-decoration: none;
  color:#0b65d8;
}

.client a:hover {
  text-decoration: underline;
}

/* Story Page Styles */
.story-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.story-card:hover::before {
  transform: scaleY(1);
}

.story-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s ease;
}

.story-card:hover .story-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.story-card h2 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Value Cards */
.value-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.2);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  font-size: 1.75rem;
  color: white;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #120635;
  margin-bottom: 0.875rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #66646d;
  line-height: 1.6;
  margin-bottom: 0;
}

.team-rounded {
  background: transparent;
  border-radius: 0;
  padding: 0 !important;
}

/* Case Study Page Styles */
.case-study-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.case-study-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.case-study-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #120635;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.case-study-subtitle {
  font-size: 1.25rem;
  color: #66646d;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.case-study-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #66646d;
  font-size: 0.95rem;
}

.meta-item i {
  color: #667eea;
}

.challenge-section h5,
.solution-section h5 {
  color: #120635;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.challenge-section i {
  color: #f5576c;
  margin-right: 0.5rem;
}

.solution-section i {
  color: #667eea;
  margin-right: 0.5rem;
}

.challenge-section p,
.solution-section p {
  color: #66646d;
  line-height: 1.7;
}

.solution-section ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.solution-section ul li {
  color: #66646d;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.results-box {
  background: linear-gradient(135deg, #f8f9ff 0%, #f5f7ff 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 2px solid rgba(102, 126, 234, 0.15);
}

.results-box h4 {
  font-weight: 700;
  color: #120635;
  margin-bottom: 2rem;
}

.metric-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.metric-value {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.875rem;
  color: #66646d;
  font-weight: 600;
  line-height: 1.3;
}

.testimonial {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border-left: 4px solid #667eea;
}

.testimonial .quote {
  font-style: italic;
  color: #120635;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial .author {
  color: #66646d;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.case-study-tech h6 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #120635;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-tag {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid #667eea;
}

.btn-outline-primary {
  color: #667eea;
  border: 2px solid #667eea;
  background: transparent;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

@media screen and (max-width: 991px) {
  .case-study-card {
    padding: 1.5rem 1rem !important;
    overflow: hidden;
  }

  .case-study-card .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .case-study-card .col-lg-6 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .case-study-title {
    font-size: 1.5rem !important;
    word-wrap: break-word;
  }

  .case-study-subtitle {
    font-size: 0.95rem !important;
    word-wrap: break-word;
  }

  .case-study-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-item {
    font-size: 0.85rem;
  }

  .results-box {
    padding: 1.25rem 0.75rem !important;
    margin-top: 2rem;
  }

  .results-box h4 {
    font-size: 1.25rem !important;
    margin-bottom: 1rem;
  }

  .results-box .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .results-box .col-6 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
    margin-bottom: 0.5rem;
  }

  .metric-card {
    padding: 1rem 0.5rem !important;
    min-height: 100px;
  }

  .metric-value {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem;
  }

  .metric-label {
    font-size: 0.7rem !important;
    line-height: 1.2;
    word-wrap: break-word;
  }

  .testimonial {
    padding: 0.75rem !important;
    margin-top: 1rem !important;
  }

  .testimonial .quote {
    font-size: 0.85rem !important;
    line-height: 1.5;
  }

  .testimonial .author {
    font-size: 0.8rem !important;
  }

  .challenge-section,
  .solution-section {
    margin-top: 1.5rem !important;
  }

  .challenge-section h5,
  .solution-section h5 {
    font-size: 0.95rem !important;
    margin-bottom: 0.75rem;
  }

  .challenge-section p,
  .solution-section p,
  .solution-section ul li {
    font-size: 0.85rem !important;
    line-height: 1.5;
  }

  .solution-section ul {
    padding-left: 1.25rem;
  }

  .case-study-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-bottom: 0.75rem;
  }

  .btn-outline-primary {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
  }
}

/* Additional mobile fixes for very small screens */
@media screen and (max-width: 576px) {
  .case-study-card {
    padding: 1rem 0.75rem;
  }

  .case-study-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .case-study-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .results-box {
    padding: 1.25rem 0.75rem;
  }

  .results-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .metric-card {
    padding: 1rem 0.5rem;
  }

  .metric-value {
    font-size: 1.5rem;
  }

  .metric-label {
    font-size: 0.75rem;
  }

  .testimonial {
    padding: 0.75rem;
    margin-top: 1rem !important;
  }

  .testimonial .quote {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .testimonial .author {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 1.75rem !important;
  }

  h2 {
    font-size: 1.35rem !important;
  }

  .case-study-card {
    padding: 1rem 0.5rem !important;
  }

  .case-study-title {
    font-size: 1.35rem !important;
  }

  .case-study-subtitle {
    font-size: 0.9rem !important;
  }

  .results-box {
    padding: 1rem 0.5rem !important;
  }

  .results-box h4 {
    font-size: 1.1rem !important;
  }

  .results-box .col-6 {
    padding-left: 0.2rem !important;
    padding-right: 0.2rem !important;
  }

  .metric-card {
    padding: 0.75rem 0.25rem !important;
    min-height: 90px;
  }

  .metric-value {
    font-size: 1.35rem !important;
  }

  .metric-label {
    font-size: 0.65rem !important;
  }

  .testimonial {
    padding: 0.5rem !important;
  }

  /* Fix all cards on small screens */
  .service-card,
  .service-detail-card,
  .ai-feature-card,
  .process-card,
  .impact-card,
  .value-card {
    padding: 1rem 0.75rem !important;
  }

  /* Tech logo cards */
  .tech-logo-card {
    padding: 1rem 0.5rem !important;
    min-height: 110px;
  }

  .tech-logo-img,
  .tech-logo-card i,
  .tech-logo-card svg {
    max-width: 45px !important;
    max-height: 45px !important;
    font-size: 2rem !important;
  }

  .tech-logo-card p {
    font-size: 0.8rem;
  }

  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
}

.img-dsktp {
  max-width: 60% !important;
}

.img-dsktp2 {
  max-width: 60% !important;
}

/* Scroll animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating animation for images */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.img-dsktp,
.img-dsktp2 {
  animation: float 6s ease-in-out infinite;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Add subtle parallax effect */
section {
  position: relative;
}

@media screen and (max-width: 991px) {
  /* Fix header height on mobile to prevent content being cut off */
  .header {
    min-height: 100vh;
    height: auto;
    padding-bottom: 2rem;
  }

  .sub-header {
    min-height: 60vh;
    height: auto;
    padding-bottom: 2rem;
  }

  /* Add padding to header section content to account for fixed navbar */
  .header section,
  .sub-header section {
    padding-top: 100px !important;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
  }

  .sub-header section {
    min-height: calc(60vh - 80px);
  }

  h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  h4 {
    font-size: 1.1rem !important;
  }

  .sub-text {
    font-size: 0.95rem !important;
    line-height: 1.5;
  }

  .paragraph {
    font-size: 0.9rem !important;
  }

  /* Ensure all sections have proper padding */
  section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .container {
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Fix card spacing */
  .card,
  .impact-card,
  .value-card,
  .industry-card,
  .story-card {
    margin-bottom: 1.5rem;
  }

  /* Mobile nav - transparent at top, white on scroll (same as desktop) */
  .nav-custom .navbar-brand img {
    filter: brightness(0) invert(1) !important;
  }

  .nav-custom .nav-link {
    color: white !important;
  }

  .nav-custom .navbar-toggler {
    color: white !important;
    border-color: white !important;
  }

  .nav-custom .navbar-toggler i {
    color: white !important;
  }

  .nav-custom .btn-sm {
    color: white !important;
    border-color: white !important;
  }

  /* Mobile nav - when scrolled (white background) */
  .bg-white .navbar-brand img {
    filter: none !important;
  }

  .bg-white .nav-link {
    color: #120635 !important;
  }

  .bg-white .navbar-toggler {
    color: #120635 !important;
    border-color: rgba(18, 6, 53, 0.3) !important;
  }

  .bg-white .navbar-toggler i {
    color: #120635 !important;
  }

  .bg-white .btn-sm {
    color: #667eea !important;
    border-color: #667eea !important;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 80% !important;
  }
  .contact-card-wrapper {
    flex-direction: column;
  }

  .client {
    width: -webkit-fill-available;
  }
  .img-dsktp {
    min-width: 100% !important;
  }

  .break {
    display: none;
  }

  .icons {
    width: 60%;
  }

  body {
    overflow-x: hidden;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Impact/Measurable Business Section Styles */
.impact-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.impact-icon-wrapper {
  margin-bottom: 1.5rem;
}

.impact-metric {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

.impact-facts {
  list-style: none;
  padding: 1.5rem;
  margin: 1rem 0 0 0;
  text-align: left;
  background: #f8f9ff;
  border-radius: 16px;
  border-left: 4px solid #667eea;
}

.impact-facts li {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: #66646d;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.impact-facts li:not(:last-child) {
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.impact-facts li i {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.3rem;
}

.impact-facts li span {
  flex: 1;
  display: block;
}

.stats-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Integration Section Styles */
.integration-category-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 2px solid transparent;
}

.integration-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.integration-category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.integration-category-card:hover .integration-category-icon {
  transform: scale(1.1) rotate(5deg);
}

.integration-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.integration-category-card:hover .integration-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.integration-benefit {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.integration-benefit:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

/* Contact Page Styles */
.contact-method-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.contact-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.contact-method-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.contact-method-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #120635;
}

.contact-method-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  color: white !important;
}

/* Services Page Styles */
.service-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.service-card h3 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.75rem;
  font-weight: 700;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.75rem 0;
  color: #66646d;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: #667eea;
  font-size: 1.1rem;
}

.service-detail-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s ease;
}

.service-detail-card:hover .service-detail-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.service-detail-card h3 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.75rem;
  font-weight: 700;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #66646d;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.feature-item i {
  color: #667eea;
  font-size: 0.875rem;
}

.tech-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tech-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.tech-logo-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.tech-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.tech-logo-card i,
.tech-logo-card svg {
  transition: all 0.3s ease;
  max-width: 60px;
  max-height: 60px;
}

.tech-logo-card svg {
  width: 60px !important;
  height: 60px !important;
}

.tech-logo-card:hover i,
.tech-logo-card:hover svg {
  transform: scale(1.1);
}

.tech-logo-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #120635;
  text-align: center;
}

.tech-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.tech-logo-card:hover .tech-logo-img {
  transform: scale(1.1);
}

.ai-feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ai-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ai-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.3);
}

.ai-feature-card:hover::before {
  transform: scaleX(1);
}

.ai-feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.ai-feature-card:hover .ai-feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.ai-feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #120635;
  margin-bottom: 1rem;
}

.ai-feature-card p {
  font-size: 0.95rem;
  color: #66646d;
  line-height: 1.6;
  margin-bottom: 0;
}

.process-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: visible;
  margin-top: 20px;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  z-index: 1;
}

.process-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #120635;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.process-card p {
  font-size: 0.95rem;
  color: #66646d;
  line-height: 1.6;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .service-card,
  .service-detail-card {
    padding: 2rem 1.5rem;
  }

  .service-card h3,
  .service-detail-card h3 {
    font-size: 1.5rem;
  }
}
