/* Design System Variables */
:root {
    --background: 220 25% 97%;
    --foreground: 222 47% 11%;
    --card: 0 0% 100%;
    --card-foreground: 222 47% 11%;
    --popover: 0 0% 100%;
    --popover-foreground: 222 47% 11%;
    --primary: 217 91% 60%;
    --primary-foreground: 0 0% 100%;
    --secondary: 260 84% 65%;
    --secondary-foreground: 0 0% 100%;
    --muted: 220 14% 96%;
    --muted-foreground: 220 9% 46%;
    --accent: 199 89% 48%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 217 91% 60%;
    --radius: .75rem;
    --gradient-start: 217 91% 60%;
    --gradient-mid: 260 84% 65%;
    --gradient-end: 199 89% 48%;
    --shadow-color: 217 91% 60%;
    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5% 26%;
    --sidebar-primary: 217 91% 60%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 220 14% 96%;
    --sidebar-accent-foreground: 222 47% 11%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217 91% 60%;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.line-clamp-2-custom {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Styles */
.bg-card {
  background-color: hsl(var(--card));
}

.border-border {
  border-color: hsl(var(--border));
}

/* Navigation Styles */
.nav-link {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-scrolled .nav-link {
  color: hsl(var(--foreground));
}

.header-scrolled .nav-link:hover {
  background-color: hsl(var(--muted));
}

/* Dropdown Menu */
.dropdown-menu {
  transition: all 0.2s ease;
}

/* Add these styles to your CSS file */

/* Gradient Text Class */
.gradient-text {
  background: linear-gradient(to right, #8b5cf6, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Font Classes */
.font-heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
}

/* Container Class */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Grid Classes */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Gap Utilities */
.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

@media (min-width: 768px) {
  .gap-8 {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .gap-12 {
    gap: 3rem;
  }
  
  .gap-16 {
    gap: 4rem;
  }
}

/* Padding Utilities */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

/* Margin Utilities */
.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.inline-flex {
  display: inline-flex;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Color Classes */
/* Background Colors */
.bg-slate-950 {
  background-color: #020617;
}

.bg-slate-900 {
  background-color: #0f172a;
}

.bg-primary\/10 {
  background-color: rgba(139, 92, 246, 0.1);
}

.bg-white {
  background-color: #ffffff;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-purple-600\/20 {
  --tw-gradient-from: rgba(147, 51, 234, 0.2);
  --tw-gradient-to: rgba(147, 51, 234, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-slate-900 {
  --tw-gradient-to: #0f172a;
  --tw-gradient-stops: var(--tw-gradient-from), #0f172a, var(--tw-gradient-to);
}

.to-cyan-600\/20 {
  --tw-gradient-to: rgba(6, 182, 212, 0.2);
}

.from-purple-600 {
  --tw-gradient-from: #7c3aed;
  --tw-gradient-to: rgba(124, 58, 237, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-blue-600 {
  --tw-gradient-to: #2563eb;
  --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to);
}

.to-cyan-500 {
  --tw-gradient-to: #06b6d4;
}

.from-purple-500 {
  --tw-gradient-from: #8b5cf6;
  --tw-gradient-to: rgba(139, 92, 246, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-blue-500 {
  --tw-gradient-to: #3b82f6;
}

.from-blue-500 {
  --tw-gradient-from: #3b82f6;
  --tw-gradient-to: rgba(59, 130, 246, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-cyan-500 {
  --tw-gradient-to: #06b6d4;
}

.from-cyan-500 {
  --tw-gradient-from: #06b6d4;
  --tw-gradient-to: rgba(6, 182, 212, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

/* Text Colors */
.text-gray-400 {
  color: #9ca3af;
}

.text-white {
  color: #ffffff;
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-slate-900 {
  color: #0f172a;
}

.text-purple-400 {
  color: #c084fc;
}

.text-blue-400 {
  color: #60a5fa;
}

.text-cyan-400 {
  color: #22d3ee;
}

/* Border Colors */
.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-slate-800 {
  border-color: #1e293b;
}

.border-white {
  border-color: #ffffff;
}

.hover\:border-purple-500\/30:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.hover\:border-blue-500\/30:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.hover\:border-cyan-500\/30:hover {
  border-color: rgba(6, 182, 212, 0.3);
}

/* Border Radius */
.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-md {
  border-radius: 0.375rem;
}

/* Width and Height */
.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}
.bottom-30 {
    bottom: 7rem;
}
/* Opacity */
.opacity-10 {
  opacity: 0.1;
}

/* Transition */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.group:hover .group-hover\:bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.group:hover .group-hover\:gap-3 {
  gap: 0.75rem;
}

/* Hover States */
.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:opacity-90:hover {
  opacity: 0.9;
}
.bottom-45 {
    bottom: 12rem;
}
/* Max Width */
.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Space Between */
.space-y-3 > * + * {
  margin-top: 0.75rem;
}

/* Inline Block */
.inline-block {
  display: inline-block;
}

/* SVG Background Pattern (for CTA section) */
/* You can use this or replace with your own pattern */
.cta-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Responsive Utilities */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-flag img {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
}

.language-selector select {
  padding: 6px 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* Hide Google Translate UI */
.goog-te-banner-frame.skiptranslate { display: none !important; }
.goog-te-menu-frame.skiptranslate { display: none !important; }
.goog-logo-link { display: none !important; }
.goog-te-gadget { height: 0; overflow: hidden; }
.skiptranslate { display: none !important; }
body { top: 0px !important; }