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

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
}

/* Custom utilities */
.text-gradient {
  background: linear-gradient(135deg, #00D4FF 0%, #0080FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #009FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-glow {
  color: white;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(0, 212, 255, 0.3);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.hero-text {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.2);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass-effect {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #00D4FF 0%, #0080FF 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.section-card {
  transition: transform 0.3s ease;
}

.section-card:hover {
  transform: translateY(-5px);
}

/* Image optimization and effects */
.section-card img {
  transition: transform 0.3s ease;
  will-change: transform;
}

.section-card:hover img {
  transform: scale(1.02);
}

.object-cover {
  object-fit: cover;
  object-position: left center;
}

.overflow-hidden {
  overflow: hidden;
}

/* Video container */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Fix video overlay for dark mode - remove overlay completely */
.dark .video-overlay {
  background: transparent;
}

/* Loading animations */
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 212, 255, 0.1);
  border-top: 4px solid #00D4FF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0% { text-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
  100% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
  50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite alternate;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Slider styles */
.features-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.features-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slider-card {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
}

/* Fix for responsive layout */
.lg\:flex-row {
  flex-direction: row;
}

.lg\:w-1\/2 {
  width: 50%;
}

.lg\:h-96 {
  height: 24rem;
}

.lg\:p-12 {
  padding: 3rem;
}

@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .lg\:w-1\/2 {
    width: 50%;
  }
  
  .lg\:h-96 {
    height: 24rem;
  }
  
  .lg\:p-12 {
    padding: 3rem;
  }
}

/* Dark mode styles */
.dark-bg {
  background: #0A0A0A;
}

.dark {
  background: #0A0A0A;
  color: white;
}

/* Policy page styles */
.section-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.policy-section {
  margin-bottom: 2rem;
}

.main-content {
  max-width: 100%;
}

@media (min-width: 768px) {
  .main-content {
    max-width: 900px;
  }
}

/* Include minimal Tailwind-like utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.max-w-6xl { max-width: 72rem; }
.max-w-md { max-width: 28rem; }
.max-h-90vh { max-height: 90vh; }
.max-h-95vh { max-height: 95vh; }
.overflow-y-auto { overflow-y: auto; }

.mx-auto { margin: 0 auto; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pr-6 { padding-right: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.opacity-0 { opacity: 0; }
.pt-32 { padding-top: 8rem; }
.pb-16 { padding-bottom: 4rem; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 4rem; }
.text-7xl { font-size: 4.5rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-display { font-family: 'Orbitron', sans-serif; }

.bg-white { background-color: white; }
.bg-gray-50 { background-color: #f9fafb; }
.text-white { color: white; }
.text-gray-600 { color: #6b7280; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }

.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

.transition-all { transition: all 0.3s ease; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.duration-300 { transition-duration: 300ms; }

.hover\:bg-primary:hover { background: linear-gradient(135deg, #00D4FF 0%, #0080FF 100%); }
.hover\:text-white:hover { color: white; }
.hover\:text-primary:hover { color: #00D4FF; }

.scroll-smooth { scroll-behavior: smooth; }

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:text-left { text-align: left; }
  .md\:flex-row { flex-direction: row; }
  .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0; }
  .md\:mb-0 { margin-bottom: 0; }
}

.order-1 { order: 1; }
.order-2 { order: 2; }
.gap-12 { gap: 3rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }

.bg-primary { background: linear-gradient(135deg, #00D4FF 0%, #0080FF 100%); }
.text-primary { color: #00D4FF; }

.border-t { border-top-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }

.list-decimal { list-style-type: decimal; }
.ml-6 { margin-left: 1.5rem; }

.underline { text-decoration: underline; }
.italic { font-style: italic; }
.appearance-none { appearance: none; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.flex-col { flex-direction: column; }
.leading-relaxed { line-height: 1.625; }

.h-80 { height: 20rem; }
.w-6xl { width: 72rem; }

.p-2 { padding: 0.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.bg-black { background-color: #000; }
.bg-gray-900 { background-color: #111827; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-900 { background-color: #14532d; }
.bg-blue-900 { background-color: #1e3a8a; }
.bg-blue-800 { background-color: #1e40af; }
.border-gray-100 { border-color: #f3f4f6; }
.placeholder-transparent::placeholder { color: transparent; }
.peer:placeholder-shown ~ .peer-placeholder-shown\:top-5 { top: 1.25rem; }
.peer:placeholder-shown ~ .peer-placeholder-shown\:text-gray-400 { color: #9ca3af; }
.peer:placeholder-shown ~ .peer-placeholder-shown\:text-lg { font-size: 1.125rem; }
.peer:placeholder-shown ~ .peer-placeholder-shown\:font-medium { font-weight: 500; }
.peer:focus ~ .peer-focus\:-top-3 { top: -0.75rem; }
.peer:focus ~ .peer-focus\:text-primary { color: #00D4FF; }
.peer:focus ~ .peer-focus\:text-sm { font-size: 0.875rem; }
.peer:focus ~ .peer-focus\:font-bold { font-weight: 700; }
.peer:focus ~ .peer-focus\:opacity-100 { opacity: 1; }
.shadow-primary\/20 { box-shadow: 0 10px 15px -3px rgba(0, 212, 255, 0.2), 0 4px 6px -4px rgba(0, 212, 255, 0.2); }
.bg-opacity-50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-opacity-95 { background-color: rgba(17, 24, 39, 0.95); }
.bg-opacity-20 { background-color: rgba(255, 255, 255, 0.2); }
.text-opacity-90 { color: rgba(255, 255, 255, 0.9); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.resize-none { resize: none; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-auto { width: auto; }
.max-h-96 { max-height: 24rem; }
.focus\:border-transparent:focus { border-color: transparent; }
.text-green-500 { color: #10b981; }
.text-green-600 { color: #059669; }
.text-4xl { font-size: 2.25rem; }
.flex-1 { flex: 1; }
.rounded-lg { border-radius: 0.5rem; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-600 { border-color: #4b5563; }
.bg-gray-200 { background-color: #e5e7eb; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }
.font-semibold { font-weight: 600; }
.text-3xl { font-size: 1.875rem; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.justify-center { justify-content: center; }
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.5); }
.focus\:ring-primary:focus { box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.5); }
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* Button reset styles to make it look like a link */
.btn-reset {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

.btn-reset:focus {
  outline: none;
}

.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-primary { --tw-gradient-from: #00D4FF; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(0 212 255 / 0)); }
.to-secondary { --tw-gradient-to: #0080FF; }
.to-accent { --tw-gradient-to: #4C1D95; }

.pt-8 { padding-top: 2rem; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }

/* Dark mode overrides */
.dark .bg-white { background-color: #0A0A0A; }
.dark .bg-gray-50 { background-color: #1A1A1A; }
.dark .text-gray-900 { color: white; }
.dark .text-gray-700 { color: #d1d5db; }
.dark .text-gray-600 { color: #9ca3af; }
.dark .border-gray-200 { border-color: #374151; }
.dark .border-gray-700 { border-color: #4b5563; }
.dark .border-gray-800 { border-color: #1f2937; }
.dark .bg-dark-secondary { background-color: #1A1A1A; }
.dark .bg-dark-tertiary { background-color: #2A2A2A; }
.dark .bg-dark { background-color: #0A0A0A; }
.dark .dark-bg { background-color: #0A0A0A; }
.dark .text-green-400 { color: #34d399; }
.dark .hover\:bg-dark-tertiary:hover { background-color: #2A2A2A; }
.dark .hover\:text-gray-200:hover { color: #e5e7eb; }
.dark .border-gray-600 { border-color: #4b5563; }

/* Accordion Styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 2000px;
    overflow: visible;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
} 

/* Dark Mode Classes - Only missing custom classes */
.bg-dark {
  background-color: #1a1a1a;
}

.bg-dark-secondary {
  background-color: #2d2d2d;
}

.text-dark {
  color: #1a1a1a;
}

.border-dark {
  border-color: #374151;
} 

 