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

:root {
  --primary: #00f2fe;
  --secondary: #4facfe;
  --dark-bg: #090e17;
  --dark-card: rgba(18, 24, 38, 0.4);
  --dark-card-hover: rgba(28, 38, 58, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  scroll-behavior: smooth;
}

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

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

/* Background Blobs */
.blob-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.5;
  border-radius: 50%;
  animation: float 20s infinite alternate ease-in-out;
}
.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--secondary);
}
.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: #7f00ff;
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(10%, 10%) scale(1.1) rotate(10deg); }
  100% { transform: translate(-5%, -10%) scale(0.9) rotate(-10deg); }
}

/* Glassmorphism components */
.glass-panel {
  background: var(--dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.glass-panel:hover {
  background: var(--dark-card-hover);
  border-color: rgba(0, 242, 254, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.1);
}

.glass-navbar {
  background: rgba(9, 14, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #4facfe, #00f2fe);
}

.badge-glow {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: #00f2fe;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/tech_hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  mix-blend-mode: color-dodge;
  z-index: 1;
  animation: heroBgMove 25s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes heroBgMove {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 14, 23, 0.1) 0%, rgba(9, 14, 23, 1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 242, 254, 0.1);
  color: #00f2fe;
  font-size: 24px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 242, 254, 0.2);
  transition: all 0.3s ease;
}

.glass-panel:hover .feature-icon {
  background: #00f2fe;
  color: #090e17;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

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

.img-hover-zoom {
  overflow: hidden;
  border-radius: 8px;
}
.img-hover-zoom img {
  transition: transform 0.5s ease;
}
.glass-panel:hover .img-hover-zoom img {
  transform: scale(1.05);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 242, 254, 0.5);
}


