@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-deep: #00040a;
  --bg-card: #030812;
  --bg-section: #01060e;
  --bg-dark-blue: #0a111f;
  --primary-blue: #3b82f6;
  --accent-glow-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-deep);
  color: #ffffff;
  overflow-x: hidden;
}

/* Custom backgrounds */
.bg-deep {
  background-color: var(--bg-deep) !important;
}
.bg-card-custom {
  background-color: var(--bg-card) !important;
}
.bg-section-custom {
  background-color: var(--bg-section) !important;
}
.bg-dark-blue-custom {
  background-color: var(--bg-dark-blue) !important;
}

/* Custom effects */
.text-gradient-blue {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-blue-custom {
  color: var(--primary-blue) !important;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.border-white-5 {
  border-color: rgba(255, 255, 255, 0.05) !important;
}

.card-hover {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.card-hover:hover {
  border-color: var(--primary-blue) !important;
  background-color: rgba(59, 130, 246, 0.05) !important;
  transform: translateY(-2px);
}

.accent-glow {
  box-shadow: var(--accent-glow-shadow);
}

/* Horizontal scrolling layout */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* Vertical scroll animation */
.scroll-vertical-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.scroll-vertical-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: scroll-vertical 20s linear infinite;
}

.scroll-vertical-container:hover .scroll-vertical-content {
  animation-play-state: paused;
}

@keyframes scroll-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-btn {
  color: #9ca3af !important;
  border-bottom: 2px solid transparent !important;
}

.tab-btn.active {
  color: #3b82f6 !important;
  border-bottom: 2px solid #3b82f6 !important;
}
/* Table styling for dark theme */
.table-custom {
  color: #ffffff;
}
.table-custom th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.6);
}
.table-custom td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 1.5rem 1rem;
  vertical-align: middle;
}
.table-custom tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* Background image overlay styling */
.hero-bg-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 4, 10, 0.8) 0%,
    rgba(0, 4, 10, 0.4) 50%,
    rgba(0, 4, 10, 1) 100%
  );
}

/* FAQ list customization */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}
.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  color: white;
  text-align: left;
  padding: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    margin-top 0.3s ease-out;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}
.faq-answer.show {
  max-height: 500px;
  margin-top: 1rem;
}

/* Custom extra utilities for Bootstrap conversion */
.bg-white-5 {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.hover-text-white {
  transition: color 0.2s ease;
}
.hover-text-white:hover {
  color: #ffffff !important;
}

.text-light-hover {
  transition: color 0.2s ease;
}
.faq-trigger:hover .text-light-hover {
  color: var(--primary-blue) !important;
}

.benefit-card {
  border-left: 4px solid transparent !important;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  border-color: var(--primary-blue) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}
