/* ApplauseLab Modern CSS - Dark Gradient Design with JetBrains Mono */

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

:root {
  /* Primary Colors */
  --al-primary: #00ff4e;
  --al-primary-dark: #00cc3e;
  --al-primary-light: #33ff6e;
  --al-primary-ultra-light: #E6FFE6;
  
  /* Neutral Colors */
  --al-black: #000000;
  --al-dark: #0a0a0a;
  --al-gray-900: #1a1a1a;
  --al-gray-800: #2a2a2a;
  --al-gray-700: #3a3a3a;
  --al-gray-600: #4a4a4a;
  --al-gray-500: #6a6a6a;
  --al-gray-400: #8a8a8a;
  --al-gray-300: #aaaaaa;
  --al-gray-200: #cacaca;
  --al-gray-100: #eaeaea;
  --al-gray-50: #f5f5f5;
  --al-white: #FFFFFF;
  
  /* Typography */
  --al-font-primary: 'JetBrains Mono', monospace;
  --al-font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing */
  --al-space-xs: 0.25rem;
  --al-space-sm: 0.5rem;
  --al-space-md: 1rem;
  --al-space-lg: 1.5rem;
  --al-space-xl: 2rem;
  --al-space-2xl: 3rem;
  --al-space-3xl: 4rem;
  --al-space-4xl: 6rem;
  
  /* Border Radius */
  --al-radius-sm: 4px;
  --al-radius-md: 8px;
  --al-radius-lg: 12px;
  --al-radius-xl: 20px;
  --al-radius-full: 9999px;
  
  /* Shadows */
  --al-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --al-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
  --al-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
  --al-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);
  --al-shadow-glow: 0 0 30px rgba(0, 255, 78, 0.4);
  
  /* Transitions */
  --al-transition-fast: 150ms ease;
  --al-transition-base: 250ms ease;
  --al-transition-slow: 350ms ease;
}

/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: var(--al-font-primary);
  color: var(--al-dark);
  background-color: var(--al-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Scroll Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--al-font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--al-space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--al-space-md);
}

/* Container */
.al-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--al-space-xl);
}

/* Navigation */
.al-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--al-transition-base);
  border-bottom: 1px solid rgba(0, 255, 78, 0.1);
}

.al-nav.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.al-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--al-space-md) 0;
  min-height: 60px;
}

.al-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.al-logo img {
  height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
}

.al-nav-menu {
  display: flex;
  list-style: none;
  gap: var(--al-space-xl);
  align-items: center;
}

.al-nav-link {
  color: var(--al-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--al-transition-fast);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.al-nav-link:hover {
  color: var(--al-primary);
}

.al-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--al-primary);
  transform: scaleX(0);
  transition: transform var(--al-transition-fast);
}

.al-nav-link:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--al-space-sm) var(--al-space-xl);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--al-radius-sm);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--al-transition-base);
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--al-font-primary);
}

.al-btn-primary {
  background: var(--al-primary);
  color: var(--al-black);
  box-shadow:
    0 2px 8px rgba(0, 255, 78, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.al-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.al-btn-primary:hover {
  background: var(--al-primary-light);
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(0, 255, 78, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.al-btn-primary:hover::after {
  left: 100%;
}

.al-btn-secondary {
  background: transparent;
  color: var(--al-white);
  border: 2px solid var(--al-primary);
}

.al-btn-secondary:hover {
  background: var(--al-primary);
  color: var(--al-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 255, 78, 0.4);
}

.al-btn-large {
  padding: var(--al-space-md) var(--al-space-2xl);
  font-size: 1rem;
}

/* Hero Section */
.al-hero {
  padding: calc(var(--al-space-4xl) + 60px) 0 var(--al-space-4xl);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    #000000 0%, 
    #0a0a0a 20%, 
    #001a0a 40%, 
    #002614 60%, 
    #003d1f 80%, 
    #00260f 100%
  );
}

.al-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 78, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(0, 255, 78, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 78, 0.05) 0%, transparent 60%);
  z-index: 1;
  animation: gradientShift 15s ease infinite;
  background-size: 200% 200%;
}

/* Noise texture overlay */
.al-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  z-index: 2;
  background-image: 
    repeating-linear-gradient(45deg, #000 0px, transparent 1px, transparent 2px, #000 3px);
  pointer-events: none;
}

.al-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  z-index: 2;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, var(--al-primary) 35px, var(--al-primary) 36px);
}

.al-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--al-space-3xl);
  align-items: center;
  position: relative;
  z-index: 3;
}

.al-hero-text {
  animation: fadeInUp 0.8s ease;
}

.al-hero-title {
  margin-bottom: var(--al-space-xl);
  color: var(--al-white);
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.al-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--al-space-2xl);
  line-height: 1.6;
  max-width: 600px;
}

.al-hero-buttons {
  display: flex;
  gap: var(--al-space-lg);
  flex-wrap: wrap;
}

.al-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease;
}

.al-hero-logo {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 255, 78, 0.3));
  animation: float 3s ease-in-out infinite;
}

/* Features Section */
.al-features {
  padding: var(--al-space-4xl) 0;
  background: linear-gradient(135deg,
    rgba(20, 20, 20, 1) 0%,
    rgba(35, 35, 35, 1) 25%,
    rgba(45, 45, 45, 1) 50%,
    rgba(30, 30, 30, 1) 75%,
    rgba(15, 15, 15, 1) 100%);
  position: relative;
  overflow: hidden;
}

.al-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 78, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(0, 255, 78, 0.015) 0%, transparent 50%);
  pointer-events: none;
}


.al-section-header {
  text-align: center;
  margin-bottom: var(--al-space-3xl);
}



.al-section-title {
  color: var(--al-white);
  margin-bottom: var(--al-space-md);
}

.al-section-subtitle {
  color: var(--al-gray-400);
  font-size: 1.125rem;
}

.al-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--al-space-xl);
}

/* Portfolio carousel styling */
#portfolio {
  padding: var(--al-space-4xl) 0;
  position: relative;
  z-index: 1;
  min-height: 80vh;
}

#portfolio .al-container {
  position: relative;
  z-index: 2;
  max-width: 80%;
  margin: 0 auto;
  padding: 0 var(--al-space-xl);
}

#portfolio .al-section-header {
  margin-bottom: var(--al-space-3xl);
  text-align: center;
}

.al-portfolio-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 0;
  padding: 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-behavior: smooth;
  width: 100%;
  background: inherit;
}

.al-portfolio-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.al-portfolio-item {
  min-width: 100%;
  max-width: 100%;
  min-height: auto;
  height: auto;
  scroll-snap-align: start;
  flex-shrink: 0;
  padding: var(--al-space-2xl) var(--al-space-xl);
  margin: 0;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: var(--al-space-4xl);
  background: inherit;
  overflow: hidden;
  position: relative;
}

.al-portfolio-content {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.al-portfolio-preview {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.al-portfolio-preview img {
  max-width: 400px;
  max-height: 50vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.al-portfolio-logo {
  margin-bottom: var(--al-space-lg);
  display: flex;
  justify-content: flex-start;
}

.al-portfolio-title {
  color: var(--al-white);
  margin-bottom: var(--al-space-md);
  font-size: 1.5rem;
  font-weight: 600;
}

.al-portfolio-description {
  color: var(--al-gray-400);
  line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .al-portfolio-item {
    flex-direction: column;
    text-align: center;
    padding: var(--al-space-2xl) var(--al-space-md);
    min-height: 100vh;
    justify-content: flex-start;
    align-items: center;
    gap: var(--al-space-xl);
  }

  .al-portfolio-content {
    max-width: 100%;
    overflow: visible;
    flex: 0 0 auto;
  }

  .al-portfolio-logo {
    justify-content: center;
  }

  .al-portfolio-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .al-portfolio-preview {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: var(--al-space-xl);
  }

  .al-portfolio-preview img {
    max-width: 280px !important;
    max-height: 300px !important;
    width: auto !important;
    height: auto !important;
  }

}


/* Carousel controls container */
.al-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--al-space-lg);
  padding: var(--al-space-2xl) 0;
  background: inherit;
}

/* Carousel buttons */
.al-carousel-btn {
  background: rgba(0, 255, 78, 0.2);
  border: 1px solid var(--al-primary);
  color: var(--al-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.al-carousel-btn:hover {
  background: var(--al-primary);
  color: var(--al-black);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 255, 78, 0.4);
}

/* Carousel dots */
.al-carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--al-space-sm);
}

.al-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 255, 78, 0.3);
  border: 2px solid var(--al-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.al-dot.active {
  background: var(--al-primary);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 255, 78, 0.5);
}

.al-dot:hover {
  background: var(--al-primary);
  transform: scale(1.1);
}

.al-feature-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(13, 13, 13, 0.8));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 78, 0.2);
  border-radius: var(--al-radius-lg);
  padding: var(--al-space-2xl);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.al-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(0, 255, 78, 0.1) 90deg, transparent 180deg);
  animation: rotate 10s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.al-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--al-primary);
  box-shadow: 
    0 15px 40px rgba(0, 255, 78, 0.3),
    0 0 80px rgba(0, 255, 78, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(0, 255, 78, 0.05));
}

.al-feature-card:hover::before {
  opacity: 1;
}

.al-feature-icon {
  font-size: 3rem;
  margin-bottom: var(--al-space-lg);
  display: flex;
  justify-content: center;
}

.al-feature-title {
  color: var(--al-white);
  margin-bottom: var(--al-space-md);
  font-size: 1.25rem;
}

.al-feature-description {
  color: var(--al-gray-400);
  line-height: 1.6;
}


/* Services Section */
.al-services {
  padding: var(--al-space-4xl) 0;
  background: var(--al-black);
}

.al-services .al-container {
  max-width: 1400px;
  width: 95%;
}

/* Desktop Vertical Accordion */
.services-tabs-container {
  margin-top: var(--al-space-3xl);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--al-space-4xl);
  align-items: start;
}

.services-tabs {
  display: flex;
  flex-direction: column;
  border: none;
  margin-bottom: 0;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: var(--al-space-md);
  padding: var(--al-space-xl) var(--al-space-lg);
  background: transparent;
  border: none;
  color: var(--al-gray-400);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid transparent;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

.service-tab:hover {
  color: var(--al-white);
  background: rgba(255, 255, 255, 0.02);
  border-left-color: rgba(255, 255, 255, 0.3);
}

.service-tab.active {
  color: var(--al-white);
  background: rgba(0, 255, 78, 0.05);
  border-left-color: var(--al-primary);
}

.service-tab.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--al-primary);
}

.tab-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.services-content {
  position: relative;
  min-height: 500px;
  padding-top: var(--al-space-lg);
}

.service-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-content.active {
  display: block;
  opacity: 1;
}

.service-content-inner {
  display: block;
}

.service-info h3.service-main-title {
  font-size: 3rem;
  color: var(--al-white);
  margin-bottom: var(--al-space-xl);
  line-height: 1.1;
  font-weight: 300;
}

.service-icp {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--al-primary);
  background: rgba(0, 255, 78, 0.1);
  padding: var(--al-space-xs) var(--al-space-sm);
  border-radius: var(--al-radius-full);
  margin-bottom: var(--al-space-xl);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-description {
  color: var(--al-gray-300);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: var(--al-space-3xl);
}

.service-description h4 {
  color: var(--al-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: var(--al-space-2xl) 0 var(--al-space-md) 0;
}

.service-description p {
  margin-bottom: var(--al-space-lg);
}

.service-features-section {
  margin-top: var(--al-space-3xl);
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--al-space-md);
}

.service-features-list li {
  color: var(--al-gray-200);
  padding: var(--al-space-md) 0;
  padding-left: var(--al-space-lg);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--al-radius-md);
  padding: var(--al-space-md) var(--al-space-lg);
  border-left: 3px solid var(--al-primary);
}

.service-features-list li::before {
  content: '▸';
  color: var(--al-primary);
  position: absolute;
  left: var(--al-space-sm);
  font-weight: bold;
  top: var(--al-space-md);
}

/* Mobile Accordion */
.services-accordion {
  display: none;
  margin-top: var(--al-space-3xl);
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--al-space-md);
  padding: var(--al-space-xl) 0;
  background: transparent;
  border: none;
  color: var(--al-white);
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  color: var(--al-primary);
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
}

.accordion-title {
  flex: 1;
}

.accordion-arrow {
  width: 20px;
  height: 20px;
  color: var(--al-gray-400);
  transition: transform 0.3s ease;
}

.accordion-arrow svg {
  width: 100%;
  height: 100%;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-content-inner {
  padding: 0 var(--al-space-lg) var(--al-space-xl) var(--al-space-4xl);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-tabs-container {
    grid-template-columns: 300px 1fr;
    gap: var(--al-space-2xl);
  }

  .service-info h3.service-main-title {
    font-size: 2.5rem;
  }

  .service-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-tabs-container {
    display: none;
  }

  .services-accordion {
    display: block;
  }

  .service-info h3.service-main-title {
    font-size: 2rem;
  }

  .service-features-list {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.al-cta {
  padding: var(--al-space-4xl) 0;
  background: linear-gradient(135deg, var(--al-primary) 0%, var(--al-primary-dark) 100%);
  text-align: center;
}

.al-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.al-cta-title {
  color: var(--al-black);
  margin-bottom: var(--al-space-lg);
}

.al-cta-description {
  color: var(--al-black);
  font-size: 1.25rem;
  margin-bottom: var(--al-space-2xl);
  opacity: 0.9;
}

/* Footer */
.al-footer {
  background: var(--al-black);
  color: var(--al-gray-400);
  padding: var(--al-space-3xl) 0 var(--al-space-xl);
  border-top: 1px solid rgba(0, 255, 78, 0.1);
  position: relative;
  z-index: 100;
}

.al-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--al-space-3xl);
  margin-bottom: var(--al-space-2xl);
}

.al-footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--al-space-md);
}

.al-footer-logo {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: var(--al-space-md);
}

.al-footer-tagline {
  color: var(--al-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--al-space-sm);
}

.al-footer-section h4 {
  color: var(--al-white);
  margin-bottom: var(--al-space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.al-footer-links {
  list-style: none;
  padding: 0;
}

.al-footer-links li {
  margin-bottom: var(--al-space-sm);
}

.al-footer-links a {
  color: var(--al-gray-400);
  text-decoration: none;
  transition: color var(--al-transition-fast);
  font-size: 0.9rem;
}

.al-footer-links a:hover {
  color: var(--al-primary);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .al-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .al-hero-visual {
    margin-top: var(--al-space-2xl);
  }

  .al-footer-content {
    grid-template-columns: 1fr;
    gap: var(--al-space-2xl);
  }

  .al-nav-menu {
    gap: var(--al-space-lg);
  }

  .al-services-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   CLIENT LOGOS SECTION
   ===================================================================== */
.al-clients {
  padding: var(--al-space-4xl) 0 var(--al-space-2xl);
  background: transparent;
}

.al-clients-scroll-container {
  overflow: hidden;
  margin-top: var(--al-space-xl);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.al-clients-scroll {
  display: flex;
  align-items: center;
  gap: var(--al-space-3xl);
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.al-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--al-space-lg) var(--al-space-xl);
  background: transparent;
  border: none;
  flex-shrink: 0;
  min-width: 200px;
}

.al-client-logo img {
  max-width: 160px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.al-client-logo img[alt="IRE"] {
  max-width: 200px;
  max-height: 65px;
}

@media (max-width: 768px) {
  .al-clients-scroll {
    gap: var(--al-space-xl);
    animation-duration: 25s;
  }

  .al-client-logo {
    min-width: 150px;
    padding: var(--al-space-md) var(--al-space-lg);
  }

  .al-client-logo img {
    max-width: 120px;
    max-height: 35px;
  }
}

@media (max-width: 480px) {
  .al-clients-scroll {
    gap: var(--al-space-lg);
    animation-duration: 20s;
  }

  .al-client-logo {
    min-width: 120px;
    padding: var(--al-space-sm) var(--al-space-md);
  }

  .al-client-logo img {
    max-width: 100px;
    max-height: 30px;
  }
}

/* =====================================================================
   BLOG LIST STYLES
   ===================================================================== */

.blog-list-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.blog-list-title a {
  color: var(--al-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-list-title a:hover {
  color: var(--al-primary-dark);
}

.blog-list-item {
  padding: 0;
  margin: 0;
  text-align: center;
}

.blog-list-meta {
  text-align: center;
  margin: 0;
  padding: 0;
  color: white;
}

.blog-list-excerpt {
  text-align: center;
  margin: 0;
  padding: 0;
  color: white;
}

.blog-list {
  text-align: center;
  max-width: none;
  margin: 0 auto;
}

.blog-list-item {
  padding: 0;
  margin: 0 auto var(--al-space-xl) auto;
  text-align: center;
  width: 80%;
  display: block;
}

.blog-list-meta {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  color: white;
  width: 100%;
}

.blog-list-meta span {
  display: inline-block;
}

.blog-list-excerpt {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  color: white;
  width: 100%;
}

.page-content {
  text-align: center;
}

.page-content .container {
  text-align: center;
}

/* =====================================================================
   SOCIAL ICONS
   ===================================================================== */

.al-footer-social a {
  color: var(--al-primary);
}

.al-footer-social a:hover {
  color: var(--al-primary-light);
}

/* =====================================================================
   HERO PARTNERS
   ===================================================================== */

.al-hero-partners {
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: right;
}

.al-hero-partners-text {
  color: var(--al-gray-400);
  font-size: 0.75rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.al-hero-partners-logos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.al-hero-partner-logo {
  max-height: 24px;
  width: auto;
  opacity: 0.8;
  display: block;
}

.anthropic-logo {
  max-height: 14px !important;
  filter: brightness(0) invert(1);
}

.azure-logo {
  filter: brightness(0) invert(1);
}

.google-cloud-logo {
  filter: brightness(0) invert(1);
}

.al-hero-visual {
  position: relative;
}

/* =====================================================================
   RESPONSIVE MOBILE NAVIGATION
   ===================================================================== */

.al-mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--al-space-xs);
  z-index: 1001;
}

.al-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--al-white);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.al-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.al-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.al-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .al-nav-container {
    position: relative;
  }
  
  .al-mobile-toggle {
    display: flex;
  }
  
  .al-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--al-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .al-nav-menu.active {
    right: 0;
  }
  
  .al-nav-menu li {
    margin: var(--al-space-sm) 0;
    width: 100%;
  }
  
  .al-nav-link {
    display: block;
    padding: var(--al-space-sm) 0;
    color: var(--al-white);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--al-gray-800);
    width: 100%;
  }
  
  .al-nav-link:hover {
    color: var(--al-primary);
  }
  
  .al-nav-menu .al-btn {
    margin-top: var(--al-space-lg);
    display: inline-block;
    text-align: center;
    width: auto;
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .al-nav-menu {
    width: 100%;
    right: -100%;
  }
  
  .al-nav-menu.active {
    right: 0;
  }
}

/* =====================================================================
   BLOG SINGLE PAGE STYLES
   ===================================================================== */

.blog-single {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--al-space-4xl) var(--al-space-lg);
  color: var(--al-white);
  text-align: center;
}

.blog-single-header {
  margin-bottom: var(--al-space-4xl);
}

.blog-single-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--al-white);
  margin-bottom: var(--al-space-lg);
  line-height: 1.2;
}

.blog-single-meta {
  color: var(--al-gray-300);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: var(--al-space-lg);
  flex-wrap: wrap;
}

.blog-single-content {
  color: var(--al-white);
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-single-content h1,
.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4,
.blog-single-content h5,
.blog-single-content h6 {
  color: var(--al-white);
  text-align: center;
  margin: var(--al-space-3xl) 0 var(--al-space-lg) 0;
}

.blog-single-content p {
  color: var(--al-white);
  margin-bottom: var(--al-space-lg);
  text-align: center;
}

.blog-single-content ul,
.blog-single-content ol {
  color: var(--al-white);
  text-align: left;
  max-width: 600px;
  margin: var(--al-space-lg) auto;
}

.blog-single-content li {
  color: var(--al-white);
  margin-bottom: var(--al-space-sm);
}

.blog-single-content a {
  color: var(--al-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.blog-single-content a:hover {
  color: var(--al-primary-light);
}

.blog-single-content code {
  background: var(--al-gray-800);
  color: var(--al-primary);
  padding: var(--al-space-xs) var(--al-space-sm);
  border-radius: var(--al-radius-sm);
  font-family: var(--al-font-mono);
}

.blog-single-content pre {
  background: var(--al-gray-900);
  border: 1px solid var(--al-gray-700);
  border-radius: var(--al-radius-md);
  padding: var(--al-space-lg);
  overflow-x: auto;
  margin: var(--al-space-lg) 0;
}

.blog-single-content pre code {
  background: none;
  padding: 0;
  color: var(--al-white);
}

.blog-tags {
  text-align: center;
  margin-top: var(--al-space-4xl);
  padding-top: var(--al-space-2xl);
  border-top: 1px solid var(--al-gray-700);
}

.blog-tags .tag {
  display: inline-block;
  background: var(--al-gray-800);
  color: var(--al-primary);
  padding: var(--al-space-xs) var(--al-space-md);
  border-radius: var(--al-radius-full);
  font-size: 0.9rem;
  margin: var(--al-space-xs);
  transition: all 0.2s ease;
}

.blog-tags .tag:hover {
  background: var(--al-primary);
  color: var(--al-black);
}

/* Related Posts Section */
.related-posts {
  margin-top: var(--al-space-4xl);
  padding-top: var(--al-space-4xl);
  border-top: 1px solid var(--al-gray-700);
}

.related-posts .section-title {
  color: var(--al-white);
  text-align: center;
  margin-bottom: var(--al-space-3xl);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-single {
    padding: var(--al-space-2xl) var(--al-space-md);
  }

  .blog-single-title {
    font-size: 2rem;
  }

  .blog-single-meta {
    flex-direction: column;
    gap: var(--al-space-sm);
  }

  .blog-single-content {
    font-size: 1rem;
  }
}

/* =====================================================================
   CONTACT FORM STYLES
   ===================================================================== */

.page-header {
  text-align: center;
  padding: var(--al-space-4xl) 0 var(--al-space-2xl) 0;
}

.page-title {
  color: var(--al-white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--al-space-lg);
}

.page-description {
  color: var(--al-gray-300);
  font-size: 1.2rem;
}

.page-content {
  padding: 0 var(--al-space-lg) var(--al-space-4xl) var(--al-space-lg);
}

/* Reduced spacing for contact page */
.contact-content .page-content {
  padding-top: 0;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Content page styling */
.about-content {
  color: var(--al-white);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6 {
  color: var(--al-white);
  margin-top: var(--al-space-2xl);
  margin-bottom: var(--al-space-lg);
}

.about-content h1 {
  margin-top: 0;
}

.about-content p {
  color: var(--al-gray-200);
  margin-bottom: var(--al-space-lg);
}

.about-content ul,
.about-content ol {
  color: var(--al-gray-200);
  margin-bottom: var(--al-space-lg);
  padding-left: var(--al-space-xl);
}

.about-content li {
  margin-bottom: var(--al-space-sm);
}

.about-content strong {
  color: var(--al-primary);
  font-weight: 600;
}

.contact-content {
  color: var(--al-white);
}

.contact-content h1,
.contact-content h2,
.contact-content h3 {
  color: var(--al-white);
  text-align: center;
  margin-bottom: var(--al-space-lg);
}

.contact-content p {
  color: var(--al-gray-300);
  text-align: center;
  margin-bottom: var(--al-space-lg);
}

.contact-content a {
  color: var(--al-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-content a:hover {
  color: var(--al-primary-light);
}

/* Contact Form */
.contact-form {
  max-width: 800px;
  margin: var(--al-space-lg) auto 0 auto;
  padding: var(--al-space-4xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--al-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form-title {
  color: var(--al-white);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--al-space-4xl);
  line-height: 1.2;
}

.form-group {
  margin-bottom: var(--al-space-2xl);
  position: relative;
}

.form-row {
  display: flex;
  gap: var(--al-space-lg);
  margin-bottom: var(--al-space-2xl);
}

.form-half {
  flex: 1;
  margin-bottom: 0;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--al-space-lg);
  background: transparent;
  border: 2px solid var(--al-gray-600);
  border-radius: var(--al-radius-md);
  color: var(--al-white);
  font-family: var(--al-font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
}

.form-group::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 78, 0.08), transparent);
  border-radius: var(--al-radius-md);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.form-group:hover::before {
  opacity: 1;
  animation: formGlowPulse 0.6s ease-out;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--al-gray-400);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--al-primary);
  box-shadow: 0 0 15px rgba(0, 255, 78, 0.3);
  transform: translateY(-1px);
}

.form-group:has(.form-input:focus)::before,
.form-group:has(.form-textarea:focus)::before {
  opacity: 1;
  animation: formFocusGlow 0.8s ease-out;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Phone Input */
.phone-group {
  position: relative;
}

.phone-input-wrapper {
  display: flex;
  border: 2px solid var(--al-gray-600);
  border-radius: var(--al-radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
  position: relative;
}

.phone-input-wrapper:focus-within {
  border-color: var(--al-primary);
}

.country-select {
  background: transparent;
  border: none;
  color: var(--al-white);
  padding: var(--al-space-lg);
  padding-right: calc(var(--al-space-2xl) + 12px);
  font-family: var(--al-font-primary);
  cursor: pointer;
  outline: none;
  min-width: 160px;
  border-right: none; /* remove inner divider so it looks like a single dropdown */
  line-height: 1.2;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Hide legacy arrow in old Edge */
.country-select::-ms-expand {
  display: none;
}

/* Custom dropdown arrow */
.phone-input-wrapper::after { content: none; }

/* Draw chevron on the select itself so clicks open the native menu */
.country-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23A0A0A0' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 12px;
}

.phone-input {
  border: none;
  border-radius: 0;
  flex: 1;
}

.phone-input:focus {
  box-shadow: none;
  border: none;
}

/* Section Titles */
.form-section-title {
  color: var(--al-white);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--al-space-lg);
  line-height: 1.4;
}

/* Checkbox and Radio Groups */
.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--al-space-lg);
}

.checkbox-label,
.radio-label {
  display: flex;
  align-items: center;
  color: var(--al-white);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s ease;
  user-select: none;
}

.checkbox-label:hover,
.radio-label:hover {
  color: var(--al-primary-light);
}

.checkbox-label input,
.radio-label input {
  display: none;
}

.checkbox-custom,
.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--al-gray-600);
  margin-right: var(--al-space-md);
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.checkbox-custom {
  border-radius: var(--al-radius-sm);
}

.radio-custom {
  border-radius: 50%;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--al-primary);
  border-color: var(--al-primary);
}

.radio-label input:checked + .radio-custom {
  border-color: var(--al-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--al-black);
  font-weight: bold;
  font-size: 12px;
}

.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--al-primary);
  border-radius: 50%;
}

/* Submit Section */
.form-submit-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: var(--al-space-4xl);
  padding-top: var(--al-space-2xl);
  border-top: 1px solid var(--al-gray-700);
}

.form-alternative {
  flex: 1;
}

.form-alternative p {
  color: var(--al-gray-400);
  margin-bottom: var(--al-space-sm);
  font-size: 0.9rem;
}

.form-email-link {
  color: var(--al-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.form-email-link:hover {
  color: var(--al-primary-light);
}

.form-submit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--al-space-lg);
}

.captcha-wrapper {
  display: flex;
  align-items: center;
}

.captcha-label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.btn-submit {
  background: var(--al-primary);
  color: var(--al-black);
  border: none;
  padding: var(--al-space-lg) var(--al-space-3xl);
  border-radius: var(--al-radius-full);
  font-family: var(--al-font-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--al-space-xl);
  justify-content: center;
  align-items: center;
  margin-top: var(--al-space-xl);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--al-gray-400);
  transition: all 0.3s ease;
  border-radius: var(--al-radius-md);
  border: 1px solid transparent;
}

.social-links a:hover {
  color: var(--al-primary);
  transform: translateY(-2px);
  border-color: var(--al-primary);
  box-shadow: 0 4px 12px rgba(0, 255, 78, 0.2);
}

.social-links svg {
  width: 24px;
  height: 24px;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-submit:hover {
  background: var(--al-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 78, 0.4);
}

.btn-submit:hover::before {
  left: 100%;
  animation: buttonShine 0.8s ease-out;
}

.btn-submit:active {
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }

  /* Fix providers section on mobile */
  .al-hero-partners {
    position: static;
    text-align: center;
    margin-top: var(--al-space-xl);
    bottom: auto;
    right: auto;
  }

  .al-hero-partners-logos {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--al-space-lg);
  }

  .al-hero-partner-logo {
    max-height: 20px;
  }

  /* About section statistics responsive */
  #about .al-container > div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  #about .al-container > div[style*="grid-template-columns: repeat(4, 1fr)"] h3 {
    font-size: 2rem !important;
  }

  .contact-form {
    padding: var(--al-space-2xl) var(--al-space-lg);
  }

  .form-row {
    flex-direction: column;
    gap: var(--al-space-lg);
  }

  .form-half {
    width: 100%;
  }

  .checkbox-group,
  .radio-group {
    flex-direction: column;
    gap: var(--al-space-md);
  }

  .form-submit-section {
    flex-direction: column;
    align-items: stretch;
    gap: var(--al-space-lg);
  }

  .form-alternative {
    text-align: center;
  }

  .form-submit-wrapper {
    align-items: center;
  }

  .form-section-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .contact-form {
    margin-top: var(--al-space-2xl);
    padding: var(--al-space-lg);
  }

  .form-input,
  .form-textarea {
    padding: var(--al-space-md);
  }

  .country-select {
    padding: var(--al-space-md);
    min-width: 100px;
  }

  .btn-submit {
    padding: var(--al-space-md) var(--al-space-2xl);
    width: 100%;
  }
}

/* =====================================================================
   TEAM BIO PAGES
   ===================================================================== */


/* =====================================================================
   FUTURISTIC BIO STYLING - CUTTING EDGE DESIGN
   ===================================================================== */

/* Futuristic Bio Container */
.futuristic-bio {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 255, 78, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(0, 255, 78, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--al-black) 0%, #0a0f0a 50%, var(--al-black) 100%);
  position: relative;
  overflow-x: hidden;
  z-index: 0;
}

/* Multi-layer Animated Backgrounds */
.bio-bg-layer-1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      rgba(0, 255, 78, 0.02) 90deg,
      transparent 180deg,
      rgba(0, 255, 78, 0.03) 270deg,
      transparent 360deg);
  animation: rotate 60s linear infinite;
  z-index: 1;
}

.bio-bg-layer-2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 78, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 78, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(0, 255, 78, 0.04) 0%, transparent 35%);
  animation: gradientShift 30s ease infinite;
  background-size: 400% 400%;
  z-index: 2;
}

.bio-bg-layer-3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, transparent 0%, rgba(0, 255, 78, 0.01) 25%, transparent 50%, rgba(0, 255, 78, 0.02) 75%, transparent 100%);
  animation: slideGradient 40s ease infinite;
  background-size: 200% 200%;
  z-index: 3;
}

@keyframes slideGradient {
  0%, 100% { transform: translateX(-50%) translateY(-50%); }
  50% { transform: translateX(50%) translateY(50%); }
}

/* Floating Particles System */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--al-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 15s linear infinite;
  box-shadow: 0 0 10px var(--al-primary);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 22s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(5) { left: 60%; animation-delay: 8s; animation-duration: 24s; }
.particle:nth-child(6) { left: 70%; animation-delay: 10s; animation-duration: 19s; }
.particle:nth-child(7) { left: 80%; animation-delay: 12s; animation-duration: 21s; }
.particle:nth-child(8) { left: 90%; animation-delay: 14s; animation-duration: 17s; }

@keyframes particleFloat {
  0% {
    bottom: -10px;
    opacity: 0;
    transform: translateX(0) scale(0.5);
  }
  10% {
    opacity: 1;
    transform: translateX(10px) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-20px) scale(0.8);
  }
  90% {
    opacity: 0.3;
    transform: translateX(15px) scale(0.6);
  }
  100% {
    top: -10px;
    opacity: 0;
    transform: translateX(-10px) scale(0.3);
  }
}

/* Bio Hero Section */
.bio-hero {
  padding: var(--al-space-4xl) 0;
  position: relative;
  z-index: 10;
}

.bio-hero-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--al-space-4xl);
  align-items: start;
  animation: heroReveal 1.2s ease-out;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Profile Card */
.profile-card {
  background: linear-gradient(135deg, rgba(0, 255, 78, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
  border: 1px solid rgba(0, 255, 78, 0.3);
  border-radius: var(--al-radius-xl);
  padding: var(--al-space-xl) var(--al-space-2xl) var(--al-space-2xl) var(--al-space-2xl);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: visible;
  animation: cardFloat 8s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  min-height: 600px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  z-index: 15;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-10px) rotateX(2deg); }
}

.profile-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--al-primary), transparent, var(--al-primary));
  border-radius: var(--al-radius-xl);
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Profile Image Container */
.profile-image-container {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto var(--al-space-md) auto;
}

/* Large Expanding Circle Animation */
.profile-image-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(0, 255, 78, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: expandingCircle 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes expandingCircle {
  0% {
    width: 300px;
    height: 300px;
    opacity: 0.8;
    border-width: 2px;
  }
  50% {
    width: 800px;
    height: 800px;
    opacity: 0.1;
    border-width: 1px;
  }
  100% {
    width: 1200px;
    height: 1200px;
    opacity: 0;
    border-width: 0.5px;
  }
}

.image-glow-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--al-primary);
  border-radius: 50%;
  animation: ringRotate 10s linear infinite;
  opacity: 0.6;
}

/* Secondary Expanding Circle */
.image-glow-ring::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(0, 255, 78, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: expandingCircle2 12s ease-in-out infinite 4s;
  pointer-events: none;
  z-index: -2;
}

@keyframes expandingCircle2 {
  0% {
    width: 280px;
    height: 280px;
    opacity: 0.6;
    border-width: 1.5px;
  }
  60% {
    width: 900px;
    height: 900px;
    opacity: 0.05;
    border-width: 0.8px;
  }
  100% {
    width: 1400px;
    height: 1400px;
    opacity: 0;
    border-width: 0.3px;
  }
}

/* Small expanding circle animations for social network */
@keyframes smallExpandingCircle1 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0.1;
  }
}

@keyframes smallExpandingCircle2 {
  0%, 100% {
    transform: translate(50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(50%, -50%) scale(2.2);
    opacity: 0.08;
  }
}

/* Floating applause icon for social network */
.social-applause-icon {
  position: absolute;
  top: -30px;
  right: -20px;
  z-index: 5;
  pointer-events: none;
}

.applause-clap {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  animation: socialApplauseFloat 4s ease-in-out infinite;
  filter: brightness(1.2);
}

@keyframes socialApplauseFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-8px) rotate(5deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-8px) rotate(-5deg);
    opacity: 0.8;
  }
}

.image-glow-ring::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid rgba(0, 255, 78, 0.3);
  border-radius: 50%;
  animation: ringRotate 15s linear infinite reverse;
}

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

.image-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--al-primary), transparent);
  animation: scanLine 4s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes scanLine {
  0%, 100% {
    top: 0;
    opacity: 0;
  }
  50% {
    top: 100%;
    opacity: 1;
  }
}

.profile-image, .profile-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--al-primary);
  position: relative;
  z-index: 2;
  animation: imageFloat 6s ease-in-out infinite;
}

.profile-image {
  object-fit: cover;
  filter: brightness(1.1) contrast(1.1);
}

.profile-placeholder {
  background: linear-gradient(135deg, var(--al-primary) 0%, var(--al-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  font-weight: 800;
  color: var(--al-black);
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.02); }
}

.image-hologram {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(0deg, transparent 48%, rgba(0, 255, 78, 0.1) 49%, rgba(0, 255, 78, 0.1) 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(0, 255, 78, 0.05) 49%, rgba(0, 255, 78, 0.05) 51%, transparent 52%);
  border-radius: 50%;
  animation: hologramEffect 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hologramEffect {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.3; }
}

/* Profile Stats */
.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--al-space-sm);
  margin-top: var(--al-space-md);
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.stat-item {
  text-align: center;
  padding: var(--al-space-sm);
  background: rgba(0, 255, 78, 0.1);
  border: 1px solid rgba(0, 255, 78, 0.4);
  border-radius: var(--al-radius-lg);
  transition: all var(--al-transition-base);
  animation: statReveal 0.8s ease-out calc(1s + var(--stat-index, 0) * 0.2s) both;
  backdrop-filter: blur(10px);
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@keyframes statReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--al-primary);
  box-shadow: 0 10px 30px rgba(0, 255, 78, 0.2);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--al-primary);
  margin-bottom: var(--al-space-xs);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--al-gray-100);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Bio Info Section */
.bio-info {
  animation: infoSlideIn 1s ease-out 0.3s both;
}

@keyframes infoSlideIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.name-section {
  margin-bottom: var(--al-space-3xl);
}

.bio-name {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: var(--al-space-lg);
  background: linear-gradient(135deg, var(--al-primary) 0%, var(--al-white) 50%, var(--al-primary) 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: nameShimmer 4s ease-in-out infinite;
}

@keyframes nameShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.bio-name .char {
  display: inline-block;
  animation: charFloat 2s ease-in-out infinite calc(var(--char-index) * 0.1s);
}

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

.role-container {
  position: relative;
  margin-bottom: var(--al-space-xl);
}

.role-text {
  font-size: 1.8rem;
  color: var(--al-gray-300);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.role-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--al-primary), transparent);
  animation: underlineExpand 2s ease-out 1s both;
}

@keyframes underlineExpand {
  0% { width: 0; }
  100% { width: 100%; }
}

.bio-summary {
  margin-bottom: var(--al-space-3xl);
}

.summary-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--al-gray-200);
  animation: textReveal 1s ease-out 1.5s both;
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Social Network */
.social-network {
  display: flex;
  gap: var(--al-space-lg);
  animation: socialReveal 1s ease-out 2s both;
  position: relative;
}

/* Small expanding circles for social network */
.social-expanding-circle-1 {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--al-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: smallExpandingCircle1 6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}

.social-expanding-circle-2 {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 25px;
  height: 25px;
  border: 2px solid var(--al-primary);
  border-radius: 50%;
  transform: translate(50%, -50%);
  animation: smallExpandingCircle2 8s ease-in-out infinite 3s;
  pointer-events: none;
  z-index: -2;
  opacity: 0.3;
}

@keyframes socialReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-node {
  position: relative;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(0, 255, 78, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--al-gray-300);
  text-decoration: none;
  transition: all var(--al-transition-base);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.node-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 255, 78, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}

.social-node:hover {
  border-color: var(--al-primary);
  color: var(--al-primary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 255, 78, 0.3);
}

.social-node:hover .node-ripple {
  animation: ripple 0.6s ease-out;
}

/* Section Titles */
.section-title {
  position: relative;
  font-size: 3rem;
  font-weight: 800;
  color: var(--al-primary);
  margin-bottom: var(--al-space-3xl);
  text-align: center;
  animation: titleSlideIn 1s ease-out;
}

.title-text {
  position: relative;
  z-index: 2;
}

.title-circuit {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--al-primary), transparent);
  transform: translateY(-50%);
  z-index: 1;
}

.title-circuit::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 20%;
  width: 6px;
  height: 6px;
  background: var(--al-primary);
  border-radius: 50%;
  animation: circuitPulse 2s ease-in-out infinite;
}

.title-circuit::after {
  content: '';
  position: absolute;
  top: -2px;
  right: 20%;
  width: 6px;
  height: 6px;
  background: var(--al-primary);
  border-radius: 50%;
  animation: circuitPulse 2s ease-in-out infinite 1s;
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Skills Matrix */
.skills-matrix {
  padding: var(--al-space-4xl) 0;
  position: relative;
  z-index: 10;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--al-space-xl);
  margin-top: var(--al-space-3xl);
}

.skill-node {
  position: relative;
  background: radial-gradient(circle, rgba(0, 255, 78, 0.1) 0%, rgba(0, 0, 0, 0.3) 70%);
  border: 1px solid rgba(0, 255, 78, 0.2);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  transition: all var(--al-transition-base);
  animation: skillNodeReveal 0.8s ease-out calc(var(--skill-index) * 0.2s) both;
}

@keyframes skillNodeReveal {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.skill-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid transparent;
  border-top-color: var(--al-primary);
  border-radius: 50%;
  animation: skillRingRotate 8s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skill-node.animated .skill-ring {
  opacity: 1;
}

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

.skill-progress {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: conic-gradient(
    var(--al-primary) calc(var(--progress, 85) * 1%),
    rgba(0, 255, 78, 0.1) calc(var(--progress, 85) * 1%)
  );
  mask: radial-gradient(circle, transparent 65%, black 66%);
  -webkit-mask: radial-gradient(circle, transparent 65%, black 66%);
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}

.skill-node.animated .skill-progress {
  opacity: 1;
}

.skill-label {
  font-weight: 600;
  color: var(--al-white);
  font-size: 1rem;
  z-index: 2;
  position: relative;
}

.skill-node:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--al-primary);
  box-shadow: 0 20px 40px rgba(0, 255, 78, 0.2);
}

/* Experience Timeline */
.experience-timeline {
  padding: var(--al-space-4xl) 0;
  position: relative;
  z-index: 10;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--al-primary), rgba(0, 255, 78, 0.3), var(--al-primary));
  animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
  0% { box-shadow: 0 0 5px var(--al-primary); }
  100% { box-shadow: 0 0 20px var(--al-primary); }
}

.experience-content {
  margin-left: 100px;
  animation: contentSlideIn 1s ease-out 0.5s both;
  color: var(--al-gray-200);
}

.experience-content h2 {
  color: var(--al-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--al-space-xl);
}

.experience-content h3 {
  color: var(--al-gray-100);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: var(--al-space-xl);
  margin-bottom: var(--al-space-md);
}

.experience-content p {
  color: var(--al-gray-300);
  line-height: 1.7;
  margin-bottom: var(--al-space-lg);
}

.experience-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--al-space-lg);
}

.experience-content ul li {
  position: relative;
  padding-left: var(--al-space-xl);
  margin-bottom: var(--al-space-sm);
  color: var(--al-gray-300);
  line-height: 1.6;
}

.experience-content ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--al-primary);
  font-size: 0.8em;
}

.experience-content strong,
.experience-content **strong** {
  color: var(--al-gray-100);
  font-weight: 600;
}

@keyframes contentSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Achievement Dashboard */
.achievement-dashboard {
  padding: var(--al-space-4xl) 0;
  position: relative;
  z-index: 10;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--al-space-xl);
  margin-top: var(--al-space-3xl);
}

.achievement-card {
  background: linear-gradient(135deg, rgba(0, 255, 78, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 1px solid rgba(0, 255, 78, 0.2);
  border-radius: var(--al-radius-lg);
  padding: var(--al-space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--al-transition-base);
  animation: achievementReveal 0.8s ease-out calc(var(--card-index) * 0.2s) both;
}

@keyframes achievementReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) rotateY(-15deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateY(0deg);
  }
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 78, 0.1), transparent);
  transition: left 0.8s ease;
}

.achievement-card:hover::before {
  left: 100%;
}

.achievement-card:hover {
  transform: translateY(-5px);
  border-color: var(--al-primary);
  box-shadow: 0 15px 40px rgba(0, 255, 78, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--al-space-lg);
}

.achievement-icon {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--al-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--al-space-lg);
}

.icon-pulse {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--al-primary);
  border-radius: 50%;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.achievement-number {
  font-weight: 800;
  color: var(--al-black);
  font-size: 1.2rem;
  z-index: 2;
}

.achievement-text {
  color: var(--al-gray-200);
  line-height: 1.6;
  margin-bottom: var(--al-space-lg);
}

.achievement-meter {
  height: 4px;
  background: rgba(0, 255, 78, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--al-primary), var(--al-primary-light));
  border-radius: 2px;
  width: 0;
  animation: meterFill 2s ease-out calc(var(--card-index) * 0.3s + 1s) both;
}

@keyframes meterFill {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Specializations Network */
.specializations-network {
  padding: var(--al-space-4xl) 0;
  position: relative;
  z-index: 10;
}

.network-visualization {
  position: relative;
  height: 400px;
  margin-top: var(--al-space-3xl);
}

.central-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--al-primary) 0%, var(--al-primary-dark) 100%);
  border: 3px solid var(--al-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--al-black);
  font-size: 1.1rem;
  z-index: 10;
  animation: centralPulse 4s ease-in-out infinite;
}

@keyframes centralPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 20px var(--al-primary);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px var(--al-primary);
  }
}

.spec-node {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(0, 255, 78, 0.1);
  border: 2px solid rgba(0, 255, 78, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--al-space-sm);
  animation: specNodeFloat 6s ease-in-out infinite calc(var(--node-index) * 0.5s);
}

.spec-node:nth-child(2) { top: 10%; left: 20%; }
.spec-node:nth-child(3) { top: 10%; right: 20%; }
.spec-node:nth-child(4) { bottom: 10%; left: 20%; }
.spec-node:nth-child(5) { bottom: 10%; right: 20%; }

@keyframes specNodeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

.node-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  background: linear-gradient(45deg, var(--al-primary), transparent);
  transform-origin: top;
  animation: connectorPulse 3s ease-in-out infinite;
}

.spec-node:nth-child(2) .node-connector {
  height: 150px;
  transform: translate(-50%, -50%) rotate(35deg);
}
.spec-node:nth-child(3) .node-connector {
  height: 150px;
  transform: translate(-50%, -50%) rotate(-35deg);
}
.spec-node:nth-child(4) .node-connector {
  height: 150px;
  transform: translate(-50%, -50%) rotate(-145deg);
}
.spec-node:nth-child(5) .node-connector {
  height: 150px;
  transform: translate(-50%, -50%) rotate(145deg);
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.spec-text {
  font-size: 0.9rem;
  color: var(--al-white);
  font-weight: 600;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bio-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--al-space-3xl);
    text-align: center;
  }

  .profile-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .skill-node {
    width: 150px;
    height: 150px;
  }

  .timeline-line {
    left: 20px;
  }

  .experience-content {
    margin-left: 50px;
  }
}

@media (max-width: 768px) {
  .bio-name {
    font-size: 3rem;
  }

  .role-text {
    font-size: 1.4rem;
  }

  .profile-image-container {
    width: 250px;
    height: 250px;
  }

  .profile-stats {
    grid-template-columns: 1fr;
    gap: var(--al-space-md);
    margin-top: var(--al-space-md);
  }

  .stat-item {
    padding: var(--al-space-sm);
    min-height: 70px;
  }

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

  .section-title {
    font-size: 2.5rem;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .network-visualization {
    height: 300px;
  }

  .spec-node {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
  }

  .central-node {
    width: 100px;
    height: 100px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .bio-hero {
    padding: var(--al-space-2xl) 0;
  }

  .profile-card {
    padding: var(--al-space-xl);
  }

  .profile-image-container {
    width: 200px;
    height: 200px;
  }

  .bio-name {
    font-size: 2.5rem;
  }

  .particles-container {
    display: none;
  }

  /* About section statistics for very small screens */
  #about .al-container > div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    text-align: center;
  }

  #about .al-container > div[style*="grid-template-columns: repeat(4, 1fr)"] h3 {
    font-size: 1.8rem !important;
  }
}

/* =====================================================================
   BIO PORTFOLIO SHOWCASE STYLES
   ===================================================================== */

.portfolio-showcase {
  padding: var(--al-space-5xl) 0 var(--al-space-6xl) 0;
  position: relative;
  background:
    radial-gradient(circle at 25% 25%, rgba(0, 255, 78, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 255, 78, 0.03) 0%, transparent 60%);
  margin-bottom: var(--al-space-4xl);
}

.bio-portfolio-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: var(--al-space-2xl);
  padding: var(--al-space-lg) 0 var(--al-space-2xl) 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bio-portfolio-slider::-webkit-scrollbar {
  display: none;
}

.bio-portfolio-item {
  min-width: 100%;
  scroll-snap-align: start;
  animation: portfolioItemReveal 0.8s ease-out calc(var(--item-index, 0) * 0.2s) both;
}

@keyframes portfolioItemReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Project Card Styling */
.project-card {
  background: linear-gradient(135deg,
    rgba(0, 255, 78, 0.06) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid rgba(0, 255, 78, 0.2);
  border-radius: var(--al-radius-2xl);
  padding: var(--al-space-2xl);
  position: relative;
  overflow: hidden;
  transition: all var(--al-transition-base);
  backdrop-filter: blur(15px);
  animation: cardGentleFloat 6s ease-in-out infinite;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--al-space-2xl);
  align-items: center;
}

@keyframes cardGentleFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: translateY(-5px) rotateX(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--al-primary);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 255, 78, 0.1);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 255, 78, 0.1),
    transparent);
  transition: left 1.5s ease;
  z-index: 1;
}

.project-card:hover::before {
  left: 100%;
}

/* Project Header */
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--al-space-xl);
  position: relative;
  z-index: 2;
}

.project-logo {
  position: relative;
}

.logo-img {
  width: 120px;
  height: auto;
  filter: brightness(1.1) saturate(1.2);
  transition: all var(--al-transition-base);
}

.project-card:hover .logo-img {
  filter: brightness(1.3) saturate(1.4);
  transform: scale(1.05);
}

.project-status {
  display: flex;
  align-items: center;
  gap: var(--al-space-xs);
  padding: var(--al-space-xs) var(--al-space-sm);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 78, 0.3);
  border-radius: var(--al-radius-lg);
  backdrop-filter: blur(10px);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.status-indicator.active {
  background: var(--al-primary);
  animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.beta {
  background: #ffa500;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 78, 0.8);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 255, 78, 0);
    opacity: 0.8;
  }
}

.status-text {
  font-size: 0.75rem;
  color: var(--al-gray-100);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Project Left Section */
.project-left {
  display: flex;
  flex-direction: column;
  gap: var(--al-space-lg);
}

/* Project Right Section */
.project-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Project Content */
.project-content {
  position: relative;
  z-index: 2;
}

.project-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--al-white);
  margin-bottom: var(--al-space-md);
  background: linear-gradient(135deg, var(--al-white) 0%, var(--al-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 3s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% {
    background-position: 0% 50%;
    background-size: 200% 200%;
  }
  50% {
    background-position: 100% 50%;
    background-size: 200% 200%;
  }
}

.project-description {
  color: var(--al-gray-300);
  line-height: 1.6;
  margin-bottom: var(--al-space-lg);
  font-size: 0.95rem;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: var(--al-space-xs);
  margin-bottom: var(--al-space-lg);
}

.tech-tag {
  padding: var(--al-space-xs) var(--al-space-sm);
  background: rgba(0, 255, 78, 0.15);
  border: 1px solid rgba(0, 255, 78, 0.3);
  border-radius: var(--al-radius-md);
  font-size: 0.75rem;
  color: var(--al-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--al-transition-base);
  animation: tagFloat 4s ease-in-out infinite calc(var(--tag-index, 0) * 0.3s);
}

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

.tech-tag:hover {
  background: rgba(0, 255, 78, 0.25);
  border-color: var(--al-primary);
  transform: translateY(-2px);
}

/* Project Preview */
.project-preview {
  position: relative;
  overflow: hidden;
  border-radius: var(--al-radius-xl);
  border: 1px solid rgba(0, 255, 78, 0.2);
  z-index: 2;
}

.project-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 78, 0.1), transparent);
  border-radius: var(--al-radius-xl);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.preview-img {
  width: 280px;
  height: 350px;
  object-fit: contain;
  object-position: center;
  transition: all var(--al-transition-base);
  filter: brightness(0.9) contrast(1.1);
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--al-radius-lg);
}

.project-card:hover .preview-img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

.project-card:hover .project-preview {
  box-shadow: 0 8px 25px rgba(0, 255, 78, 0.3);
  border-color: rgba(0, 255, 78, 0.5);
}

.project-card:hover .project-preview::before {
  opacity: 1;
  animation: portfolioGlowPulse 0.8s ease-out;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
    rgba(0, 255, 78, 0.1) 0%,
    transparent 50%,
    rgba(0, 255, 78, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--al-transition-base);
}

.project-card:hover .preview-overlay {
  opacity: 1;
}

.scan-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--al-primary),
    transparent);
  animation: scanlineMove 3s ease-in-out infinite;
}

@keyframes scanlineMove {
  0% { left: -100%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Carousel Controls */
.bio-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--al-space-xl);
  margin-top: var(--al-space-2xl);
}

.bio-carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 255, 78, 0.3);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  color: var(--al-primary);
  cursor: pointer;
  transition: all var(--al-transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 78, 0.3);
    border-color: rgba(0, 255, 78, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 255, 78, 0);
    border-color: rgba(0, 255, 78, 0.6);
  }
}

.bio-carousel-btn:hover {
  background: rgba(0, 255, 78, 0.1);
  border-color: var(--al-primary);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 255, 78, 0.3);
}

.bio-carousel-dots {
  display: flex;
  gap: var(--al-space-sm);
}

.bio-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 255, 78, 0.3);
  cursor: pointer;
  transition: all var(--al-transition-base);
  position: relative;
}

.bio-dot.active {
  background: var(--al-primary);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.bio-dot:hover {
  background: var(--al-primary);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .portfolio-showcase {
    padding: var(--al-space-3xl) 0;
  }

  .project-card {
    padding: var(--al-space-xl);
    grid-template-columns: 1fr;
    gap: var(--al-space-xl);
  }

  .project-header {
    flex-direction: column;
    gap: var(--al-space-md);
    align-items: flex-start;
  }

  .logo-img {
    width: 100px;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .preview-img {
    width: 100%;
    height: 200px;
  }

  .bio-carousel-btn {
    width: 40px;
    height: 40px;
  }
}

/* Left-aligned section header */
.al-section-header-left {
  text-align: left !important;
}

/* Right-aligned section header */
.al-section-header-right {
  text-align: right !important;
}

/* Case Studies Section */
.al-case-studies {
  background: var(--al-dark);
  padding: var(--al-space-4xl) 0;
}

.al-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--al-space-2xl);
  margin-top: var(--al-space-3xl);
}

.al-case-study-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--al-border-radius-lg);
  padding: var(--al-space-2xl);
  transition: all var(--al-transition-base);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.al-case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--al-primary), var(--al-secondary));
  opacity: 0;
  transition: opacity var(--al-transition-base);
}

.al-case-study-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--al-primary-rgb), 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.al-case-study-card:hover::before {
  opacity: 1;
}

.al-case-study-header {
  display: flex;
  align-items: flex-start;
  gap: var(--al-space-lg);
  margin-bottom: var(--al-space-xl);
}

.al-case-study-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--al-primary), var(--al-secondary));
  border-radius: var(--al-border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--al-white);
}

.al-case-study-icon svg {
  width: 28px;
  height: 28px;
}

.al-case-study-meta {
  flex: 1;
}

.al-case-study-title {
  color: var(--al-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--al-space-sm);
  line-height: 1.3;
}

.al-case-study-client {
  color: var(--al-gray-400);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.al-case-study-content {
  display: flex;
  flex-direction: column;
  gap: var(--al-space-xl);
}

.al-case-study-section {
  border-left: 2px solid rgba(var(--al-primary-rgb), 0.2);
  padding-left: var(--al-space-lg);
  transition: border-color var(--al-transition-base);
}

.al-case-study-card:hover .al-case-study-section {
  border-color: rgba(var(--al-primary-rgb), 0.4);
}

/* Remove icons from case studies cards */
.al-case-study-icon {
  display: none !important;
}

.al-case-study-section-title {
  color: var(--al-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--al-space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.al-case-study-text {
  color: var(--al-gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.al-case-study-results {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--al-space-sm);
}

.al-case-study-results li {
  color: var(--al-gray-300);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: var(--al-space-lg);
}

.al-case-study-results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--al-primary);
  font-weight: bold;
  font-size: 1rem;
}

/* Responsive Design for Case Studies */
@media (max-width: 768px) {
  .al-case-studies-grid {
    grid-template-columns: 1fr;
    gap: var(--al-space-xl);
    margin-top: var(--al-space-2xl);
  }

  .al-case-study-card {
    padding: var(--al-space-xl);
  }

  .al-case-study-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--al-space-md);
  }

  .al-case-study-icon {
    width: 50px;
    height: 50px;
  }

  .al-case-study-icon svg {
    width: 24px;
    height: 24px;
  }

  .al-case-study-title {
    font-size: 1.3rem;
  }

  .al-case-study-content {
    gap: var(--al-space-lg);
  }

  .al-case-study-section {
    padding-left: var(--al-space-md);
  }
}

@media (max-width: 480px) {
  .al-case-studies-grid {
    grid-template-columns: 1fr;
    gap: var(--al-space-lg);
  }

  .al-case-study-card {
    padding: var(--al-space-lg);
  }

  .al-case-study-header {
    gap: var(--al-space-sm);
  }

  .al-case-study-title {
    font-size: 1.2rem;
  }

  .al-case-study-content {
    gap: var(--al-space-md);
  }
}
/* Clean Mobile Accordion Styling */
@media (max-width: 1199px) {
  .services-tabs-container {
    display: none !important;
  }
  .services-accordion {
    display: block !important;
  }

  /* Compact accordion styling like the example */
  .accordion-header {
    padding: var(--al-space-md) 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
  }

  .accordion-content-inner {
    padding: 0 0 var(--al-space-md) 0;
  }

  .service-info h3.service-main-title {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: var(--al-space-xs);
  }

  .service-icp {
    font-size: 0.8rem;
    margin-bottom: var(--al-space-xs);
    color: var(--al-primary);
    font-weight: 500;
  }

  .service-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: var(--al-space-sm);
    color: var(--al-gray-300);
  }

  /* Hide complex feature lists on mobile for cleaner look */
  .service-features-list {
    display: none;
  }

  .accordion-item {
    padding: 0;
    margin-bottom: 0;
  }

  .accordion-content {
    padding: 0;
  }
}

