@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --radius: 0.625rem;
  --background: #ffffff;
  --foreground: #020817;
  --card: #ffffff;
  --card-foreground: #020817;
  --popover: #ffffff;
  --popover-foreground: #020817;
  --primary: #0f172a;
  --primary-foreground: #f8fafc;
  --secondary: #f1f5f9;
  --secondary-foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #f1f5f9;
  --accent-foreground: #0f172a;
  --destructive: #ef4444;
  --destructive-foreground: #f8fafc;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #94a3b8;
  --radius: 0.5rem;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

/* Base styles for shadcn-like components */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  /* Reduced padding for mobile */
  padding-left: 1.5rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

/* Touch Friendly Targets */
button,
a.button-link,
input[type="submit"],
input[type="button"] {
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
}

/* Image & Video Safety */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  /* Removes bottom space */
}

/* Toast Styles */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 90vw;
  /* Safe for mobile */
}

.toast {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: auto;
  width: 100%;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile Menu Animations */
.mobile-menu-enter {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu-enter-active {
  transform: translateX(0);
}

.mobile-menu-exit {
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu-exit-active {
  transform: translateX(100%);
}

/* Utility to ensure text doesn't overflow */
.break-words {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

/* Custom Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes gradientX {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-gradient-x {
  background-size: 200% 200%;
  animation: gradientX 5s ease infinite;
}

.spin-slow {
  animation: spinSlow 12s linear infinite;
}

/* Page Transitions */
#main-content>div {
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }
}

.animate-wiggle {
  animation: wiggle 1s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.animate-shimmer {
  animation: shimmer 2s infinite;
}

/* Carousel Indicators Fix */
.carousel-dot {
  min-width: 10px !important;
  min-height: 10px !important;
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
}

.carousel-dot.active {
  width: 24px !important;
  border-radius: 10px;
}

/* ------------------------------------- */
/* Landing Page Custom Styles */
/* ------------------------------------- */

:root {
  /* Match main website theme */
  --radius: 0.625rem;
  --background: #ffffff;
  --foreground: #020817;
  --primary: #0f172a;
  --primary-foreground: #f8fafc;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Ultimate Scrollbar matching main site */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #38bdf8, #818cf8, #c084fc);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #0284c7, #4f46e5, #9333ea);
}

/* Hero Text Styles with Dynamic Gradient */
.hero-title-gradient {
  background: linear-gradient(45deg, #0ea5e9, #6366f1, #d946ef, #0ea5e9);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Premium Colorful Buttons */
.btn-primary {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #0ea5e9, #6366f1, #d946ef);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.4);
  color: white;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background-color: transparent;
  color: #0f172a;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(45deg, #0ea5e9, #6366f1, #d946ef);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.btn-outline:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.2);
}

/* Background Pattern for Hero */
.hero-pattern {
  background-color: #ffffff;
  background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  /* Fade pattern out at the bottom */
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  opacity: 0.5;
}

/* Premium Application / Industry Cards with Images */
.industry-card {
  border-radius: 1rem;
  overflow: hidden;
  background: white;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  height: 400px;
  /* Fixed height for consistency */
}

.industry-card .img-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark overlay to make text readable with colorful hover gradient */
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 50%, rgba(15, 23, 42, 0) 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

.industry-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 40px -10px rgba(14, 165, 233, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card:hover::after {
  background: linear-gradient(to top, rgba(15, 23, 42, 1) 0%, rgba(99, 102, 241, 0.6) 40%, rgba(217, 70, 239, 0.2) 100%);
}

.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 3;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.industry-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-content p {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 0;
}

.industry-card:hover .industry-content h4 {
  transform: translateY(0);
}

.industry-card:hover .industry-content p {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
  margin-top: 1rem;
}

/* Extra Dynamic Hover Effects for Process Steps */
.glass-step {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy transition */
  transform-style: preserve-3d;
  perspective: 1200px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glass-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.1), rgba(192, 132, 252, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Shimmer effect inside the card */
.glass-step::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-20deg);
  z-index: 0;
  transition: all 0.8s ease;
}

.glass-step:hover {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 60px -15px rgba(14, 165, 233, 0.2), 0 0 40px rgba(14, 165, 233, 0.1);
  transform: translateY(-20px) rotateX(15deg) rotateY(-5deg) scale(1.05);
  /* Massive 3D tilt effect */
  z-index: 10;
}

.glass-step:hover::before {
  opacity: 1;
}

.glass-step:hover::after {
  left: 200%;
}

.glass-step .icon-box {
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.glass-step:hover .icon-box {
  transform: scale(1.2) translateZ(40px) rotate(-10deg);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

.glass-step .step-number {
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-step:hover .step-number {
  transform: scale(1.3) translateZ(60px) translateX(-10px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(14, 165, 233, 0.3);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.trust-badge:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.2);
  border-color: rgba(14, 165, 233, 0.3);
  color: #0ea5e9;
}

.trust-badge:hover::before {
  left: 150%;
}

/* Subtle Hero Animation */
.fade-up-element {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

/* Animated Gradient Border for Hero Image/Box */
.animated-border-box {
  position: relative;
  border-radius: 1rem;
  background: white;
  z-index: 1;
  transition: transform 0.4s ease;
}

.animated-border-box::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 1.1rem;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc, #38bdf8);
  background-size: 300% 300%;
  animation: gradient-flow 4s ease infinite;
  z-index: -1;
  filter: blur(12px);
  opacity: 0.5;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.animated-border-box:hover {
  transform: translateY(-5px);
}

.animated-border-box:hover::before {
  opacity: 1;
  filter: blur(16px);
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Subtle floating animation for icons */
@keyframes float-subtle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: float-subtle 4s ease-in-out infinite;
}

/* High-Impact Dynamic CSS */
.color-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
  animation: float-orb 15s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes float-orb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.text-gradient-dynamic {
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Modern Marquee / Trust Bar */
.trust-banner {
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  background-color: #f8fafc;
  padding: 2rem 0;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}

.trust-banner-content {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-item-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 2rem;
  font-weight: 500;
  color: #64748b;
}






/* Idle Floating Animations */
@keyframes float-reel {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.portfolio-float-1 {
  animation: float-reel 6s ease-in-out infinite;
}

.portfolio-float-2 {
  animation: float-reel 7s ease-in-out infinite 1s;
}

.portfolio-float-3 {
  animation: float-reel 6.5s ease-in-out infinite 2s;
}

/* ======================================= */
/* Premium Applications Section V2 Styles  */
/* ======================================= */

.app-section-v2 {
  font-family: 'Outfit', sans-serif;
}

.app-card-v2 {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.6), rgba(99, 102, 241, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.app-card-v2:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(14, 165, 233, 0.06);
}

.app-card-v2:hover::before {
  opacity: 1;
}

.app-card-img-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.app-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.85) saturate(1.1);
}

.app-card-v2:hover .app-card-img-wrapper img {
  transform: scale(1.08);
  filter: brightness(0.7) saturate(1.2);
}

.app-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top,
      rgba(2, 6, 23, 0.95) 0%,
      rgba(2, 6, 23, 0.6) 35%,
      rgba(2, 6, 23, 0.1) 60%,
      transparent 100%);
  transition: background 0.5s ease;
}

.app-card-v2:hover .app-card-overlay {
  background: linear-gradient(to top,
      rgba(2, 6, 23, 0.98) 0%,
      rgba(2, 6, 23, 0.7) 40%,
      rgba(2, 6, 23, 0.2) 70%,
      transparent 100%);
}

.app-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--badge-color, #38bdf8);
  background: color-mix(in srgb, var(--badge-color, #38bdf8) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--badge-color, #38bdf8) 20%, transparent);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
}

.app-card-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--badge-color, #38bdf8);
  flex-shrink: 0;
}

.app-card-v2:hover .app-card-badge {
  background: color-mix(in srgb, var(--badge-color, #38bdf8) 20%, transparent);
}

.app-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  transition: color 0.4s ease;
  margin: 0;
}

.app-card-v2:hover .app-card-title {
  color: #f0f9ff;
}

.app-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
}

.app-card-v2:hover .app-card-desc {
  max-height: 100px;
  opacity: 1;
  margin-top: 0.25rem;
}

.app-card-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: white;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .app-card-v2 {
    height: 320px;
  }

  .app-card-content {
    padding: 1.5rem;
  }

  .app-card-title {
    font-size: 1.25rem;
  }

  .app-card-arrow {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}






@keyframes pulse-move {
  0% {
    left: -150px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.data-particle {
  position: absolute;
  width: 6px;
  height: 2px;
  background: rgba(56, 189, 248, 0.4);
  filter: blur(1px);
  border-radius: 2px;
  z-index: 1;
  animation: particle-float 10s infinite linear;
}









/* Tech Corners */
.tech-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: #38bdf8;
  border-style: solid;
  z-index: 10;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.top-left {
  top: -5px;
  left: -5px;
  border-width: 3px 0 0 3px;
}

.top-right {
  top: -5px;
  right: -5px;
  border-width: 3px 3px 0 0;
}

.bottom-left {
  bottom: -5px;
  left: -5px;
  border-width: 0 0 3px 3px;
}

.bottom-right {
  bottom: -5px;
  right: -5px;
  border-width: 0 3px 3px 0;
}

.team-photo-container:hover .tech-corner {
  opacity: 1;
  width: 45px;
  height: 45px;
}

/* Tech Tag */
.tech-tag {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 15;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 10px #38bdf8;
  animation: dot-pulse 2s infinite alternate;
}

@keyframes dot-pulse {
  from {
    opacity: 0.5;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

.tag-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.1rem;
}