/* Base Styles */
:root {
  --primary: #FF5E00;
  --primary-dark: #E65100;
  --secondary: #1A1A1A;
  --dark: #111111;
  --light: #F5F5F5;
  --gray: #777777;
  --dark-gray: #333333;
  --light-gray: #EEEEEE;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

.highlight {
  color: var(--primary);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 94, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-outline:hover {
  background-color: var(--light);
  color: var(--dark);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 50px;
  text-align: center;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
}

.logo-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.data-cube {
  position: relative;
  transform-style: preserve-3d;
}

.data-cube.small {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  animation: rotateCube 12s infinite linear;
}

.data-cube.medium {
  width: 120px;
  height: 120px;
  animation: rotateCube 8s infinite linear;
}

.data-cube.large {
  width: 200px;
  height: 200px;
  margin-right: 15px;
  animation: rotateCube 6s infinite linear;
}
.data-cube.x-large {
  width: 300px;
  height: 300px;
  margin-right: 15px;
  animation: rotateCube 4s infinite linear;
}

.data-cube .face {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 94, 0, 0.5);
  background: rgba(255, 94, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--primary);
  box-shadow: inset 0 0 20px rgba(255, 94, 0, 0.2);
}

.lightning {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* animation: pulse 1.5s infinite alternate; */
}

.lightning i {
  color: var(--primary);
}

.data-cube.small .front  { transform: rotateY(0deg) translateZ(20px);  }
.data-cube.small .back   { transform: rotateY(180deg) translateZ(20px);  }
.data-cube.small .right  { transform: rotateY(90deg) translateZ(20px);  }
.data-cube.small .left   { transform: rotateY(-90deg) translateZ(20px);  }
.data-cube.small .top    { transform: rotateX(90deg) translateZ(20px);  }
.data-cube.small .bottom { transform: rotateX(-90deg) translateZ(20px);  }
.data-cube.small .lightning i {font-size: 16px;}

.data-cube.medium .front  { transform: rotateY(0deg) translateZ(60px); border: 1px solid rgba(255, 94, 0, 0.7); }
.data-cube.medium .back   { transform: rotateY(180deg) translateZ(60px); border: 1px solid rgba(255, 94, 0, 0.7); }
.data-cube.medium .right  { transform: rotateY(90deg) translateZ(60px); border: 1px solid rgba(255, 94, 0, 0.7); }
.data-cube.medium .left   { transform: rotateY(-90deg) translateZ(60px); border: 1px solid rgba(255, 94, 0, 0.7); }
.data-cube.medium .top    { transform: rotateX(90deg) translateZ(60px); border: 1px solid rgba(255, 94, 0, 0.7); }
.data-cube.medium .bottom { transform: rotateX(-90deg) translateZ(60px); border: 1px solid rgba(255, 94, 0, 0.7); }
.data-cube.medium .lightning i {font-size: 44px;}

.data-cube.large .front  { transform: rotateY(0deg) translateZ(100px); border: 2px solid rgba(255, 94, 0, 0.7); }
.data-cube.large .back   { transform: rotateY(180deg) translateZ(100px); border: 2px solid rgba(255, 94, 0, 0.7); }
.data-cube.large .right  { transform: rotateY(90deg) translateZ(100px); border: 2px solid rgba(255, 94, 0, 0.7); }
.data-cube.large .left   { transform: rotateY(-90deg) translateZ(100px); border: 2px solid rgba(255, 94, 0, 0.7); }
.data-cube.large .top    { transform: rotateX(90deg) translateZ(100px); border: 2px solid rgba(255, 94, 0, 0.7); }
.data-cube.large .bottom { transform: rotateX(-90deg) translateZ(100px); border: 2px solid rgba(255, 94, 0, 0.7); }
.data-cube.large .lightning i {font-size: 80px;}

.data-cube.x-large .front  { transform: rotateY(0deg) translateZ(150px); border: 3px solid rgba(255, 94, 0, 0.7); }
.data-cube.x-large .back   { transform: rotateY(180deg) translateZ(150px); border: 3px solid rgba(255, 94, 0, 0.7); }
.data-cube.x-large .right  { transform: rotateY(90deg) translateZ(150px); border: 3px solid rgba(255, 94, 0, 0.7); }
.data-cube.x-large .left   { transform: rotateY(-90deg) translateZ(150px); border: 3px solid rgba(255, 94, 0, 0.7); }
.data-cube.x-large .top    { transform: rotateX(90deg) translateZ(150px); border: 3px solid rgba(255, 94, 0, 0.7); }
.data-cube.x-large .bottom { transform: rotateX(-90deg) translateZ(150px); border: 3px solid rgba(255, 94, 0, 0.7); }
.data-cube.x-large .lightning i {font-size: 130px;}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--light);
  text-align: center;
}

.logo-text span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
  margin-top: 5px;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  margin-top: 60px;
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  animation: loading .8s ease-in-out forwards;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.navbar.scrolled {
  padding: 15px 0;
  background-color: rgba(17, 17, 17, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo .logo-text {
  font-size: 18px;
  margin-top: 0;
  animation: none;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 2px;
  background-color: var(--light);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(26, 26, 26, 0.9));
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
  position: relative;
  z-index: 3;
}

.tagline {
  display: inline-block;
  padding: 8px 15px;
  background: rgba(255, 94, 0, 0.2);
  color: #FF5E00;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-radius: 30px;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.0;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.title-word-1 { animation-delay: 0.1s; }
.title-word-2 { animation-delay: 0.3s; }
.title-word-3 { animation-delay: 0.5s; }
.title-word-4 { animation-delay: 0.7s; }
.title-word-5 { animation-delay: 0.9s; }

.hero-subtitle {
  font-size: 1.3rem;
  color: #aaa;
  margin-bottom: 30px;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.typing-animation::after {
  content: '|';
  animation: blink 1s infinite;
  margin-left: 5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hover-float:hover i {
  transform: translateX(5px);
}

.hero-features {
  display: flex;
  gap: 20px;
}

.feature-card {
  padding: 15px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.feature-card i {
  color: #FF5E00;
  font-size: 16px;
}

.feature-card.delay-1 { animation-delay: 1.1s; }
.feature-card.delay-2 { animation-delay: 1.3s; }

/* Data Flow Animation */
.hero-image {
  flex: 1;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.data-flow-animation {
  position: relative;
  width: 500px;
  height: 500px;
}

.data-node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--primary);
  animation: pulse 2s infinite alternate;
}

.data-node.main {
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse_translate 1.5s infinite alternate;
}

.data-node:nth-child(2) {
  top: 20%;
  left: 20%;
  animation-delay: 0.3s;
}

.data-node:nth-child(3) {
  top: 20%;
  right: 20%;
  animation-delay: 0.6s;
}

.data-node:nth-child(4) {
  bottom: 20%;
  left: 20%;
  animation-delay: 0.9s;
}

.data-node:nth-child(5) {
  bottom: 20%;
  right: 20%;
  animation-delay: 1.2s;
}

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  top: 50%;
  left: 50%;
  transform-origin: left center;
  animation: connectionLine 4s infinite;
}

.connection-line:nth-child(6) {
  animation-delay: 0s;
  transform: translate(0, 0) rotate(45deg);
}

.connection-line:nth-child(7) {
  animation-delay: 0.5s;
  transform: translate(0, 0) rotate(135deg);
}

.connection-line:nth-child(8) {
  animation-delay: 1s;
  transform: translate(0, 0) rotate(225deg);
}

.connection-line:nth-child(9) {
  animation-delay: 1.5s;
  transform: translate(0, 0) rotate(315deg);
}

.binary-code {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-family: monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.1);
  animation: scrollBinary 20s linear infinite;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 1s 2s forwards;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.wheel {
  width: 5px;
  height: 10px;
  background: var(--primary);
  border-radius: 3px;
  animation: scrollWheel 2s infinite;
}

.arrows {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  margin: -3px;
  animation: arrowBounce 2s infinite;
}

.arrow:nth-child(1) { animation-delay: 0.1s; }
.arrow:nth-child(2) { animation-delay: 0.2s; }
.arrow:nth-child(3) { animation-delay: 0.3s; }

/* Stats Section */
.stats {
  background-color: var(--secondary);
  padding: 70px 0;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background-color: var(--dark-gray);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 94, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.stat-icon i {
  font-size: 24px;
  color: var(--primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-title {
  font-size: 1.2rem;
  color: var(--light-gray);
}

/* Services Section */
.services {
  background-color: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--dark-gray);
  border-radius: 10px;
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 94, 0, 0.1), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 94, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 32px;
  color: var(--primary);
}

.service-icon .fa-code {
  color: var(--primary);
}

.service-icon .fa-mobile-alt {
  color: var(--primary);
}

.service-icon .fa-robot {
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--light);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
}

.service-features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  color: var(--light-gray);
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Pricing Section */
.pricing {
  background-color: var(--secondary);
}

.pricing-tabs {
  margin-top: 50px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 25px;
  background-color: var(--dark-gray);
  border: none;
  border-radius: 50px;
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background-color: rgba(255, 94, 0, 0.2);
  color: var(--primary);
}

.tab-btn.active {
  background-color: var(--primary);
  color: white;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: var(--dark-gray);
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--light);
}

.pricing-header .price {
  font-size: 2.5rem;
  color: var(--light);
  margin-bottom: 5px;
}

.pricing-header .price span {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--light-gray);
}

.pricing-features li i {
  position: absolute;
  left: 0;
  color: var(--primary);
}

.pricing-footer {
  text-align: center;
}

.enterprise-content {
  display: flex;
  gap: 50px;
  background-color: var(--dark-gray);
  border-radius: 10px;
  padding: 50px;
  align-items: center;
}

.enterprise-info {
  flex: 1;
}

.enterprise-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--light);
}

.enterprise-info p {
  color: var(--gray);
  margin-bottom: 30px;
}

.enterprise-info ul {
  list-style: none;
  margin-bottom: 30px;
}

.enterprise-info li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--light-gray);
}

.enterprise-info li i {
  position: absolute;
  left: 0;
  color: var(--primary);
}

.enterprise-image {
  flex: 1;
  position: relative;
  height: 400px;
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  border-radius: 10px;
}

.enterprise-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 94, 0, 0.3);
}

.badge-icon {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-icon i {
  color: var(--primary);
  font-size: 14px;
}

/* About Section */
.about .container {
  display: flex;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.timeline {
  position: relative;
  margin-bottom: 50px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  height: 100%;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.timeline-content {
  background-color: var(--dark-gray);
  padding: 20px;
  border-radius: 10px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--light);
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.9rem;
}

.achievements h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--light);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.achievement-card {
  background-color: var(--dark-gray);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-10px);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 94, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.achievement-icon i {
  font-size: 24px;
  color: var(--primary);
}

.achievement-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--light);
}

.achievement-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

.about-image {
  flex: 1;
}

.team-photo {
  width: 100%;
  height: 500px;
  background: url('https://images.unsplash.com/photo-1573164713988-8665fc963095?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80') no-repeat center center/cover;
  border-radius: 10px;
  position: relative;
}

.stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  justify-content: space-around;
  border-radius: 0 0 10px 10px;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat .label {
  font-size: 0.9rem;
  color: var(--light);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--dark);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  scroll-snap-align: start;
  background-color: var(--dark-gray);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  color: rgba(255, 94, 0, 0.1);
}

.rating {
  color: var(--primary);
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 30px;
  color: var(--light-gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--light);
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Contact Section */
.contact {
  background-color: var(--secondary);
}

.contact .container {
  display: flex;
  gap: 50px;
}

.contact-content {
  flex: 1;
}

.contact-info {
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background-color: var(--dark-gray);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 94, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.info-icon i {
  font-size: 20px;
  color: var(--primary);
}

.info-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--light);
}

.info-text p {
  color: var(--gray);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--dark-gray);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: var(--dark-gray);
  border: none;
  border-radius: 5px;
  color: var(--light);
  font-family: 'Poppins', sans-serif;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.footer {
  background-color: var(--dark);
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  grid-column: span 2;
}

.footer-logo .logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo p {
  color: var(--gray);
  max-width: 300px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--light);
}

.footer-newsletter p {
  color: var(--gray);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background-color: var(--dark-gray);
  border: none;
  border-radius: 50px 0 0 50px;
  color: var(--light);
}

.newsletter-form button {
  padding: 0 20px;
  background-color: var(--primary);
  border: none;
  border-radius: 0 50px 50px 0;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  color: var(--gray);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--primary);
}

/* Portfolio Section */
.portfolio {
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,94,0,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
  background-size: cover;
  z-index: 0;
}

.portfolio-filter {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--dark-gray);
  border: none;
  border-radius: 50px;
  color: var(--light);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: rgba(255, 94, 0, 0.2);
  color: var(--primary);
}

.filter-btn.active {
  background-color: var(--primary);
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.portfolio-item {
  background-color: var(--dark-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.portfolio-overlay p {
  color: var(--light-gray);
  text-align: center;
  margin-bottom: 20px;
}

.portfolio-meta {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background-color: rgba(51, 51, 51, 0.7);
}

.portfolio-meta .category {
  color: var(--primary);
  font-weight: 600;
}

.portfolio-meta .date {
  color: var(--gray);
}

.portfolio-cta {
  text-align: center;
  margin-top: 50px;
}

/* Case Studies Section */
.case-studies {
  background-color: var(--secondary);
  padding: 100px 0;
}

.case-study-slider {
  display: flex;
  gap: 50px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-study-slider::-webkit-scrollbar {
  display: none;
}

.case-study-card {
  min-width: 80%;
  scroll-snap-align: start;
  background-color: var(--dark-gray);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-10px);
}

.case-study-image {
  flex: 1;
  min-height: 400px;
  position: relative;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-content .category {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.case-study-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--light);
}

.stats {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.stats .stat {
  text-align: center;
  flex: 1;
}

.stats .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stats .label {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.case-study-content p {
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Technology Stack Section */
.tech-stack {
  background-color: var(--dark);
  padding: 100px 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tech-card {
  background-color: var(--dark-gray);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 94, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon {
  transform: rotate(15deg) scale(1.1);
}

.tech-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--light);
}

.tech-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Animations */
@keyframes rotateCube {
  from { transform: rotateX(0) rotateY(0) }
  to { transform: rotateX(360deg) rotateY(360deg) }
}

@keyframes loading {
  to { width: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes pulse_translate {
  0%, 100% { opacity: 1; transform: scale(1) translate(-50%, -50%); }
  50% { opacity: 0.8; transform: scale(1.05) translate(-50%, -50%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes connectionLine {
  0% { 
      width: 0;
      opacity: 0;
  }
  10% {
      opacity: 1;
  }
  70% {
      opacity: 1;
  }
  100% { 
      width: 200px;
      opacity: 0;
  }
}

@keyframes scrollWheel {
  0% { 
      transform: translateY(0);
      opacity: 1;
  }
  100% { 
      transform: translateY(15px);
      opacity: 0;
  }
}

@keyframes arrowBounce {
  0% { 
      opacity: 0;
  }
  50% { 
      opacity: 1;
  }
  100% { 
      opacity: 0;
      /* transform: rotate(45deg) translateY(10px); */
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scrollBinary {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

/* Responsive Styles */
@media (max-width: 1200px) {
  .about .container,
  .contact .container {
      flex-direction: column;
  }
  
  .about-image {
      margin-top: 50px;
  }
}

@media (max-width: 992px) {
  .hero .container {
      flex-direction: column;
      text-align: center;
  }
  
  .hero-content {
      padding-right: 0;
      margin-bottom: 50px;
  }
  
  .hero-buttons {
      justify-content: center;
  }
  
  .hero-features {
      justify-content: center;
  }
  
  .hero-image {
      margin-top: 50px;
  }
  
  .footer-logo {
      grid-column: span 1;
  }
  .case-study-card {
    flex-direction: column;
  }

  .case-study-image {
      min-height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-links {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background-color: var(--dark);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: left 0.3s ease;
  }
  
  .nav-links.active {
      left: 0;
  }
  
  .nav-links li {
      margin: 15px 0;
  }
  
  .hamburger {
      display: block;
  }
  
  .hamburger.active .line:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .line:nth-child(2) {
      opacity: 0;
  }
  
  .hamburger.active .line:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-title {
      font-size: 2.2rem;
  }
  
  .hero-subtitle {
      font-size: 0.8rem;
  }
  
  .data-flow-animation {
      width: 300px;
      height: 300px;
  }
  
  .enterprise-content {
      flex-direction: column;
  }
  
  .enterprise-image {
      width: 100%;
      margin-top: 30px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .portfolio-filter {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .filter-btn {
      margin: 5px;
      padding: 8px 15px;
      font-size: 0.9rem;
  }

  .case-study-card {
      min-width: 90%;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
      flex-direction: column;
  }
  
  .hero-features {
      flex-direction: column;
  }
  
  .feature-card {
      justify-content: center;
  }
  
  .tab-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 15px;
  }
  
  .legal-links {
      gap: 10px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
      grid-template-columns: 1fr;
  }
}



