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

:root {
  --primary-color: #5D33F6;
  --secondary-color: #2DA7FA;
  --accent-color: #FF6B35;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --bg-color: #050017;
  --bg-secondary: #0A0024;
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient-primary: linear-gradient(135deg, #5D33F6, #2DA7FA);
  --gradient-secondary: linear-gradient(135deg, #FF6B35, #F7931E);
  --shadow-primary: 0 10px 30px rgba(93, 51, 246, 0.2);
  --shadow-secondary: 0 20px 40px rgba(45, 167, 250, 0.15);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 100px; /* Space for floating nav */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Floating Bottom Navigation */
.floating-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  border-radius: 50px 50px 0 0;
  opacity: 0.6;
}

.floating-nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  position: relative;
}

.floating-nav__left,
.floating-nav__right {
  flex: 1;
}

.floating-nav__center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.floating-nav__link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
}

.floating-nav__link:hover {
  color: var(--primary-color);
  background: rgba(93, 51, 246, 0.1);
}

.floating-nav__cta {
  position: relative;
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
  animation: buttonGlow 2s ease-in-out infinite;
}

.floating-nav__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  animation: shineEffect 3s ease-in-out infinite;
}

.floating-nav__cta:hover::before {
  transform: translateX(100%);
}

/* Enhanced Animated Border Effect */
.floating-nav__cta::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #5D33F6, #2DA7FA, #FF6B35, #22c55e, #5D33F6);
  background-size: 400% 400%;
  border-radius: 27px;
  z-index: -1;
  animation: borderShine 2s ease-in-out infinite, pulseGlow 1.5s ease-in-out infinite;
}

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

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

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(93, 51, 246, 0.3), 0 0 40px rgba(45, 167, 250, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(93, 51, 246, 0.6), 0 0 60px rgba(45, 167, 250, 0.4), 0 0 80px rgba(255, 107, 53, 0.2);
  }
}

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

.floating-nav__cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(93, 51, 246, 0.6), 0 12px 40px rgba(45, 167, 250, 0.4);
  animation: buttonGlow 0.5s ease-in-out infinite;
}

.floating-nav__cta i {
  font-size: 1rem;
  animation: iconBounce 2s ease-in-out infinite;
}

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

/* Hero Section */
.hero {
  min-height: calc(100vh - 100px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}

/* Video Background */
.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Spline Interactive Design */
.hero__spline-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__spline-iframe {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  mix-blend-mode: screen;
}

/* Hero Logo at Top */
.hero__logo {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.hero-logo-img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

/* Hero Container */
.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
  text-align: center;
  transform: translateY(60px);
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-stars i {
  color: #FFD700;
  font-size: 1.3rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.rating-text {
  font-weight: 600;
  color: white;
  font-size: 1.2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero__title {
  margin-bottom: 2.5rem;
  text-align: center;
}

.hero__subtitle {
  display: block;
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero__main-title {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 0.3rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.hero__highlight {
  display: block;
  font-size: 4.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.95;
  text-shadow: none;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.hero__highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 2px;
}

.hero__description {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  line-height: 1.6;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20rem;
}

.hero__buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.hero__secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero__secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  position: relative;
  max-width: 500px;
}

.hero__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-secondary);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Industry Wins Section */
.industry-wins {
  padding: 2rem 0 6rem 0;
  background: #ffffff;
  color: #1a1a1a;
}

.industry-wins .section-title {
  background: linear-gradient(135deg, #5D33F6, #2DA7FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1a1a1a;
}

.industry-wins .section-subtitle {
  color: #1a1a1a;
}

.industry-wins .section-description {
  color: #666666;
}

/* Work Showcase */
.work-showcase {
  margin-top: 0rem;
}

.work-showcase + .work-showcase {
  margin-top: 0rem;
  padding-top: 0rem;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
}

.work-showcase + .work-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.showcase-header {
  text-align: center;
  margin-bottom: 0rem;
}

.showcase-title {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(0, 6%, 13%);
  margin-bottom: 1rem;
}

.showcase-description {
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* AI Agent Showcase Special Styling */
#aiagent-showcase {
  margin-top: 8rem;
  padding-top: 4rem;
  position: relative;
}

#aiagent-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.5), transparent);
  border-radius: 2px;
}

#aiagent-showcase .showcase-title {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

#aiagent-showcase .showcase-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border-radius: 2px;
}

#aiagent-showcase .parallax-card {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

#aiagent-showcase .gallery-container {
  min-height: 800px;
  padding: 2rem 0;
}

#aiagent-showcase .parallax-card:hover {
  border-left-color: #ff6b6b;
  transform: translateY(-10px) scale(1.02);
}

#aiagent-showcase .card-title {
  color: #ff6b6b;
  font-weight: 600;
}

/* Stack Cards Effect */
.stack-cards {
  position: relative;
  height: 600px;
  margin: 4rem 0;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.stack-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 500px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stack-card:hover {
  transform: translate(-50%, -50%) scale(1.05) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.stack-card[data-index="1"] {
  transform: translate(-50%, -50%) translateY(0px) rotateY(0deg);
  z-index: 5;
}

.stack-card[data-index="2"] {
  transform: translate(-50%, -50%) translateY(-20px) rotateY(2deg);
  z-index: 4;
}

.stack-card[data-index="3"] {
  transform: translate(-50%, -50%) translateY(-40px) rotateY(4deg);
  z-index: 3;
}

.stack-card[data-index="4"] {
  transform: translate(-50%, -50%) translateY(-60px) rotateY(6deg);
  z-index: 2;
}

.stack-card[data-index="5"] {
  transform: translate(-50%, -50%) translateY(-80px) rotateY(8deg);
  z-index: 1;
}

.stack-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.stack-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.stack-card:hover .stack-card__image img {
  transform: scale(1.1);
}

.stack-card__content {
  padding: 1.5rem;
}

.stack-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

.stack-card__description {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.stack-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: linear-gradient(135deg, #5D33F6, #2DA7FA);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Showcase CTA */
.showcase-cta {
  text-align: center;
  margin-top: 3rem;
}

.showcase-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #5D33F6, #2DA7FA);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(93, 51, 246, 0.3);
}

.showcase-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(93, 51, 246, 0.4);
  color: white;
}

.showcase-button i {
  transition: transform 0.3s ease;
}

.showcase-button:hover i {
  transform: translateX(5px);
}

/* Stack Cards Animation */
@keyframes stackFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0px) rotateY(0deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px) rotateY(2deg);
  }
}

.stack-card[data-index="1"] {
  animation: stackFloat 4s ease-in-out infinite;
}

.stack-card[data-index="2"] {
  animation: stackFloat 4s ease-in-out infinite 0.5s;
}

.stack-card[data-index="3"] {
  animation: stackFloat 4s ease-in-out infinite 1s;
}

.stack-card[data-index="4"] {
  animation: stackFloat 4s ease-in-out infinite 1.5s;
}

.stack-card[data-index="5"] {
  animation: stackFloat 4s ease-in-out infinite 2s;
}

/* Responsive Design for Stack Cards */
@media (max-width: 768px) {
  .stack-cards {
    height: 500px;
    margin: 2rem 0;
  }
  
  .stack-card {
    width: 320px;
    height: 400px;
  }
  
  .stack-card__image {
    height: 200px;
  }
  
  .stack-card__content {
    padding: 1rem;
  }
  
  .stack-card__title {
    font-size: 1.1rem;
  }
  
  .stack-card__description {
    font-size: 0.9rem;
  }
  
  .showcase-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stack-cards {
    height: 450px;
  }
  
  .stack-card {
    width: 280px;
    height: 350px;
  }
  
  .stack-card__image {
    height: 180px;
  }
  
  .stack-card__content {
    padding: 0.8rem;
  }
  
  .stack-card__title {
    font-size: 1rem;
  }
  
  .stack-card__description {
    font-size: 0.85rem;
  }
  
  .tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
}

/* What Sets Us Apart Section */
.what-sets-us-apart {
  padding: 6rem 0;
  background: var(--bg-color);
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: #d7ecf3;
}

.services .section-title {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #2c3e50;
}

.services .section-subtitle {
  color: #34495e;
}

.services .section-description {
  color: #5a6c7d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
    font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-card__description {
  color: #34495e;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-card__link {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-card__link:hover {
  color: #2980b9;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: var(--bg-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.feature-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.feature-card__description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.about__mission h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.about__mission p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--bg-color);
  text-align: center;
}

.contact__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact__description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact__cta {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 28px;
  margin-right: 0.5rem;
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.8rem;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__list a:hover {
  color: #3498db;
}

.footer__newsletter-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer__form {
  display: flex;
  gap: 1rem;
}

.footer__input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  font-size: 0.9rem;
}

.footer__input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.footer__button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer__copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--primary-color);
}

/* Consultation Popup */
.consultation-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.consultation-popup.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.consultation-popup__content {
  background: var(--bg-color);
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  border: 1px solid var(--border-color);
}

.consultation-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
  padding: 0.5rem;
}

.consultation-popup h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.consultation-popup__submit {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consultation-popup__submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .floating-nav {
    width: 95%;
    bottom: 15px;
  }

  .floating-nav__container {
    padding: 10px 16px;
  }

  .floating-nav__link {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .floating-nav__cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .floating-nav__cta span {
    display: none;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  text-align: center;
  }

    .hero__main-title {
    font-size: 2.4rem;
  }
  
  .hero__highlight {
    font-size: 2.8rem;
  }
  
  .hero__highlight::after {
    width: 80px;
    height: 3px;
    bottom: -8px;
  }
  
  /* Mobile Hero Logo */
  .hero-logo-img {
    height: 60px;
  }
  
  .hero__logo {
    top: 1.5rem;
  }
  
  /* Mobile Video and Spline */
  .hero__video-bg video {
    opacity: 0.2;
  }
  
  .hero__spline-iframe {
    opacity: 0.6;
  }
  
  /* Mobile Hero Content */
  .hero__content {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero__description {
    font-size: 1.1rem;
  }
  
    .hero__description {
    font-size: 1.3rem;
    max-width: 100%;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
  }
  
  .hero__rating {
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
  }

  .hero__buttons {
  justify-content: center;
  }

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__form {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .section-subtitle {
  font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .floating-nav {
    width: 98%;
    bottom: 10px;
  }

  .floating-nav__container {
    padding: 8px 12px;
  }

  .floating-nav__link {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .floating-nav__cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .hero__main-title {
    font-size: 2rem;
  }

  .hero__highlight {
    font-size: 2.5rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .win-card {
    padding: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .consultation-popup__content {
    padding: 2rem;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero__content,
.win-card,
.service-card,
.feature-card {
  animation: fadeInUp 0.6s ease forwards;
}

.win-card:nth-child(1) { animation-delay: 0.1s; }
.win-card:nth-child(2) { animation-delay: 0.2s; }
.win-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }

/* Modern Card Gallery with Sticky Scroll */
.parallax-gallery {
  position: relative;
  margin: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 30px;
  padding: 3rem;
  min-height: 100vh;
    display: flex;
    align-items: center;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.parallax-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 600px;
  width: 100%;
  display: flex;
    flex-direction: column;
}

.parallax-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5D33F6, #2DA7FA, #FF6B35, #22c55e);
  background-size: 300% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
    flex-direction: column;
}

.card-front {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
    display: flex;
    flex-direction: column;
}

.card-image {
  width: 100%;
  height: 75%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(93, 51, 246, 0.1), rgba(45, 167, 250, 0.1));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.95) contrast(1.1);
}

.card-content {
  padding: 1.5rem;
  background: #ffffff;
  flex: 1;
    display: flex;
    flex-direction: column;
  justify-content: center;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #5D33F6, #2DA7FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.card-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Sticky Scroll Effect */
.parallax-card[data-index="1"] {
  position: sticky;
  top: 2rem;
  animation: slideInUp 0.8s ease-out;
}

.parallax-card[data-index="2"] {
  position: sticky;
  top: 2rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.parallax-card[data-index="3"] {
  position: sticky;
  top: 2rem;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.parallax-card[data-index="4"] {
  position: sticky;
  top: 2rem;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.parallax-card[data-index="5"] {
  position: sticky;
  top: 2rem;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

.parallax-card[data-index="6"] {
  position: sticky;
  top: 2rem;
  animation: slideInUp 0.8s ease-out 1s both;
}

/* Enhanced sticky scroll effects */
.parallax-card {
  --scroll-progress: 0;
  transition: all 0.3s ease, transform 0.1s ease;
}

.parallax-card[data-index="5"],
.parallax-card[data-index="6"] {
  position: sticky;
  top: 2rem;
  transform-origin: center center;
}

/* Progress indicator for AI Agent cards */
.parallax-card[data-index="5"]::after,
.parallax-card[data-index="6"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ee5a24);
  border-radius: 0 0 2px 0;
  transition: width 0.1s ease;
  z-index: 2;
}

/* AI Content Showcase Styles */
#aicontent-showcase {
  margin-top: 8rem;
  padding-top: 4rem;
  position: relative;
}

#aicontent-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.5), transparent);
  border-radius: 2px;
}

#aicontent-showcase .showcase-title {
  background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

#aicontent-showcase .showcase-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
  border-radius: 2px;
}

/* AI Content Gallery */
.aicontent-gallery {
  margin-top: 3rem;
}

.content-category {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.content-category:nth-child(1) { animation-delay: 0.2s; }
.content-category:nth-child(2) { animation-delay: 0.4s; }
.content-category:nth-child(3) { animation-delay: 0.6s; }
.content-category:nth-child(4) { animation-delay: 0.8s; }

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
    text-align: center;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #8a2be2, #9370db);
  border-radius: 1px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  height: 200px;
  background: #fff;
}

.content-image:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-image:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(147, 112, 219, 0.8));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.content-image:hover .image-overlay {
  transform: translateY(0);
}

.image-tag {
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
    text-align: center;
}

/* AI Content Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Add floating animation to images */
.content-image {
  animation: imageFloat 4s ease-in-out infinite;
}

.content-image:nth-child(even) {
  animation-delay: 2s;
}

.content-image:nth-child(3n) {
  animation-delay: 1s;
}

.content-image:nth-child(4n) {
  animation-delay: 3s;
}

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

/* Hover Effects */
.parallax-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.parallax-card:hover .card-image img {
  transform: scale(1.1);
}

.parallax-card:hover .card-image::before {
  opacity: 1;
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  backdrop-filter: blur(10px);
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.image-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.image-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.image-modal__image-container {
  max-height: 70vh;
  overflow: hidden;
}

.image-modal__image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.image-modal__info {
  padding: 2rem;
  background: #ffffff;
}

.image-modal__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #5D33F6, #2DA7FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.image-modal__description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-container {
    max-width: 1300px;
    gap: 2.5rem;
  }
  
  .parallax-card {
    height: 550px;
  }
}

@media (max-width: 768px) {
  .parallax-gallery {
    padding: 2rem;
    margin: 2rem 0;
    min-height: auto;
  }
  
  .gallery-container {
    max-width: 100%;
    gap: 2rem;
  }
  
  .parallax-card {
    height: 500px;
    position: relative !important;
    top: auto !important;
    /* Mobile-friendly effects */
    transform: none !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: mobileCardFloat 3s ease-in-out infinite;
  }
  
  /* Disable sticky scroll on mobile for all cards */
  .parallax-card[data-index="5"],
  .parallax-card[data-index="6"] {
    position: relative !important;
    top: auto !important;
    animation: slideInFromRight 0.8s ease-out forwards;
  }
  
  .parallax-card:nth-child(even) {
    animation-delay: 1.5s;
  }
  
  .parallax-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .card-image {
    height: 70%;
    transition: all 0.4s ease;
  }
  
  .parallax-card:hover .card-image {
    transform: scale(1.05);
  }
  
  .card-content {
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
  }
  
  .card-title {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .card-description {
    font-size: 0.95rem;
    color: #555;
  }
  
  /* Mobile-specific animations */
  @keyframes mobileCardFloat {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  
  /* Touch feedback */
  .parallax-card:active {
    transform: scale(0.98) !important;
    transition: all 0.1s ease;
  }
  
  /* Swipe hint animation */
  .gallery-container::before {
    content: "← Swipe to explore →";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    animation: swipeHint 2s ease-in-out infinite;
  }
  
  @keyframes swipeHint {
    0%, 100% {
      opacity: 0.7;
      transform: translateX(-50%) translateY(0);
    }
    50% {
      opacity: 1;
      transform: translateX(-50%) translateY(-3px);
    }
  }
  
  .image-modal__content {
    max-width: 95%;
    max-height: 95%;
  }
  
  .image-modal__info {
    padding: 1.5rem;
  }
  
  .image-modal__title {
    font-size: 1.5rem;
  }
  
  .image-modal__description {
  font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .parallax-gallery {
    padding: 1.5rem;
  }
  
  .gallery-container {
    gap: 1.5rem;
  }
  
  .parallax-card {
    height: 450px;
  }
  
  .card-image {
    height: 65%;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-description {
    font-size: 0.9rem;
  }
  
  .image-modal__content {
    max-width: 98%;
    max-height: 98%;
  }
  
  .image-modal__info {
    padding: 1rem;
  }
  
  .image-modal__title {
    font-size: 1.3rem;
  }
  
  .image-modal__description {
  font-size: 0.9rem;
}

  /* AI Agent section mobile enhancements */
  #aiagent-showcase .showcase-title {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
  }
  
  #aiagent-showcase .parallax-card {
    border-left: 4px solid #ff6b6b;
  }
  
  #aiagent-showcase .parallax-card:hover {
    border-left-color: #ee5a24;
    transform: translateY(-8px) scale(1.02) !important;
  }
  
  /* Enhanced mobile spacing between sections */
  .work-showcase + .work-showcase {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
  }
  
  /* Mobile AI Agent section special effects */
  #aiagent-showcase .parallax-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border: 2px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.1);
  }
  
  #aiagent-showcase .parallax-card:hover {
    border-color: rgba(255, 107, 107, 0.6);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
  }
  
  /* Mobile card entrance animations */
  .parallax-card[data-index="5"],
  .parallax-card[data-index="6"] {
    animation: slideInFromRight 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
  }
  
  .parallax-card[data-index="6"] {
    animation-delay: 0.2s;
  }
  
  @keyframes slideInFromRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Mobile AI Content section styles */
  #aicontent-showcase .aicontent-gallery {
    padding: 1rem;
  }
  
  #aicontent-showcase .content-category {
    margin-bottom: 2rem;
  }
  
  #aicontent-showcase .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  #aicontent-showcase .content-image {
    height: 120px;
  }
  
  #aicontent-showcase .category-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  /* Mobile AI Content optimizations */
  #aicontent-showcase .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  #aicontent-showcase .content-image {
    height: 100px;
  }
  
  #aicontent-showcase .image-overlay {
    padding: 0.5rem;
  }
  
  #aicontent-showcase .image-tag {
    font-size: 0.8rem;
  }
  
  /* Disable floating animation on mobile for performance */
  #aicontent-showcase .content-image {
    animation: none;
  }
}