* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  background: #000000;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(-45deg, #000000, #0a0a0a, #1a1a2e, #16213e);
  background-size: 400% 400%;
  animation: gradientShift 25s ease infinite;
}

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(7.5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
  display: grid;
  place-content: center;
}

.logo img {
  width: auto;
  height: 40px;
}

.logo:hover {
  transform: scale(1.05);
  color: #a78bfa;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: -0.01em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8b5cf6;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #8b5cf6;
}

.nav-links a:hover::after {
  width: 100%;
}

.highlighted-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(176, 144, 251, 0.1);
  border: 1px solid rgba(139, 92, 246, 1);
  border-radius: 8px;
  color: #8b5cf6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.highlighted-btn:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
  animation: heroFadeIn 1.2s ease;
  z-index: 2;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideUp 1s ease 0.3s both;
}

.hero .subtitle {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-weight: 500;
  color: #d1d5db;
  letter-spacing: -0.02em;
  animation: subtitleSlideUp 1s ease 0.5s both;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #9ca3af;
  font-weight: 400;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: descriptionFadeIn 1s ease 0.7s both;
}

.cta-button {
  display: inline-block;
  padding: 18px 36px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  border: 1px solid rgba(139, 92, 246, 0.3);
  animation: ctaSlideUp 1s ease 0.9s both;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

/* Floating Orbs */
.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.05));
  backdrop-filter: blur(10px);
  animation: floatOrb 20s ease-in-out infinite;
}

.orb:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.orb:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 70%;
  right: -5%;
  animation-delay: 7s;
}

.orb:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 20%;
  animation-delay: 14s;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Section Styles */
section {
  padding: 120px 0;
  position: relative;
}

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

.section-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #9ca3af;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.section-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 1.5rem;
  padding: 30px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #8b5cf6;
  transform: scale(1.2);
}

/* Services Section */
.services {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-width: 280px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
  color: #a78bfa;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.service-card p {
  color: #d1d5db;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Projects Section */
.projects {
  background: rgba(0, 0, 0, 0.2);
}

.project-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  min-width: 320px;
  max-width: 360px;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.project-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.12);
}

.project-image {
  height: 180px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

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

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

.project-content {
  padding: 1.8rem;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.project-description {
  color: #d1d5db;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  font-size: 0.9rem;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tech-tag {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 16px;
  font-size: 0.8rem;
  color: #a78bfa;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tech-tag:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  transform: translateY(-2px);
}

/* Products Section */
.products {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 280px;
  max-width: 320px;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.product-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.product-card:hover::before {
  opacity: 1;
  top: -60%;
  left: -60%;
}

.product-card:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15);
}

.product-icon {
  font-size: 3rem;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.2) rotate(10deg);
  color: #a78bfa;
}

.product-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.product-card p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  font-size: 0.95rem;
}

.product-card ul {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.7;
}

.product-card ul li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1rem;
}

.product-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: bold;
}

/* Team Section Styles */
.team {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Leadership Section */
.leadership-section {
  margin-bottom: 6rem;
}

.leadership-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.leadership-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.leader-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.leader-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

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

.leader-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

.ceo-card {
  animation-delay: 0.2s;
}

.cto-card {
  animation-delay: 0.4s;
}

.leader-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(139, 92, 246, 0.3);
  transition: all 0.4s ease;
}

.leader-card:hover .leader-image {
  border-color: rgba(139, 92, 246, 0.6);
  transform: scale(1.05);
}

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

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

.leader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 92, 246, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.leader-image:hover .leader-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.leader-overlay:hover .social-link {
  transform: translateY(0);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.leader-info {
  text-align: center;
}

.leader-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.leader-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(-45deg, #ffffff, #8b5cf6, #a78bfa, #ffffff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s ease infinite;
}

.leader-title-text {
  font-size: 1.1rem;
  color: #8b5cf6;
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-description {
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.leader-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Team Members Section */
.team-section {
  margin-top: 4rem;
}

.team-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.team-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.team-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-carousel-container {
  position: relative;
  overflow: hidden;
}

.team-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 1.5rem;
  padding: 30px;
}

.team-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.8rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-width: 260px;
  max-width: 280px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
}

.team-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.team-card:hover {
  transform: translateY(-12px) scale(1.03);
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
  animation: teamFloat 2s ease-in-out infinite;
}

.team-image {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(139, 92, 246, 0.3);
  transition: all 0.4s ease;
}

.team-card:hover .team-image {
  border-color: rgba(139, 92, 246, 0.6);
  transform: scale(1.05);
}

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

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 92, 246, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-image:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 0.8rem;
}

.team-social-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(8px);
  font-size: 0.9rem;
}

.team-overlay:hover .team-social-link {
  transform: translateY(0);
}

.team-social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.team-info {
  position: relative;
  z-index: 2;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.team-role {
  font-size: 0.95rem;
  color: #8b5cf6;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.skill-tag {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  color: #a78bfa;
  transition: all 0.3s ease;
  font-weight: 500;
}

.skill-tag:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  transform: translateY(-2px);
}

/* Team Carousel Controls */
.team-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.team-carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  font-size: 1.1rem;
}

.team-carousel-btn:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.team-carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(1);
}

.team-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.team-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-dot.active {
  background: #8b5cf6;
  transform: scale(1.3);
}

.team-dot:hover {
  background: rgba(139, 92, 246, 0.6);
  transform: scale(1.2);
}

/* Contact Section */
.contact {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.contact p {
  color: #d1d5db;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.7;
}

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

.contact-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.contact-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.12);
}

.contact-icon {
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  color: #a78bfa;
}

.contact-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.contact-item p {
  color: #d1d5db;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  text-align: center;
  padding: 3rem 0;
}

footer p {
  margin-bottom: 0.5rem;
  font-weight: 400;
}

footer p:last-child {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Footer socials (small icons centered) */
footer .footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;              /* tight gap for small icons */
  margin-bottom: 30px;    /* space above the disclaimer text */
}

footer .footer-socials .social-link {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #c7c9d1;         /* subtle neutral */
  text-decoration: none;
  font-size: 25px;        /* small icon size */
  transition: all 0.25s ease;
}

/* Hover brand accents */
footer .footer-socials .social-link.linkedin:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.5);
  background: rgba(10, 102, 194, 0.12);
}

footer .footer-socials .social-link.github:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

footer .footer-socials .social-link.twitter:hover {
  color: #1da1f2;
  border-color: rgba(29, 161, 242, 0.5);
  background: rgba(29, 161, 242, 0.12);
}

/* Respect your dark footer spacing on small screens */
@media (max-width: 480px) {
  footer .footer-socials {
    gap: 8px;
    margin-bottom: 12px;
  }
}

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

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

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

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

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

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .carousel-track,
  .team-carousel-track {
    gap: 1rem;
  }
  
  .service-card,
  .project-card,
  .product-card {
    min-width: 260px;
    max-width: 280px;
  }
  
  .team-card {
    min-width: 240px;
    max-width: 260px;
    padding: 1.5rem;
  }

  .team-image {
    width: 80px;
    height: 80px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .leader-card {
    padding: 2rem;
  }
  
  .leader-stats {
    gap: 1.5rem;
  }

  .leadership-title,
  .team-title {
    font-size: 1.8rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  z-index: 1001;
  transition: width 0.1s ease;
}