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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #667eea;
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      #667eea33 0%,
      transparent 50%
    ),
    radial-gradient(circle at 75% 75%, #764ba233 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, #06b6d433 0%, transparent 30%);
  animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

/* Network Visualization */
.network-visualization {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.network-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
  animation: networkPulse 3s ease-in-out infinite;
}

.node-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.node-2 {
  top: 40%;
  right: 20%;
  animation-delay: 0.6s;
}
.node-3 {
  bottom: 30%;
  left: 25%;
  animation-delay: 1.2s;
}
.node-4 {
  top: 60%;
  left: 60%;
  animation-delay: 1.8s;
}
.node-5 {
  bottom: 20%;
  right: 15%;
  animation-delay: 2.4s;
}

@keyframes networkPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
  }
  50% {
    transform: scale(1.5);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
  }
}

.network-connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
  opacity: 0.7;
  animation: dataFlow 4s linear infinite;
}

.conn-1 {
  top: 20%;
  left: 15%;
  width: 200px;
  transform: rotate(25deg);
}

.conn-2 {
  top: 40%;
  right: 20%;
  width: 150px;
  transform: rotate(-45deg);
}

.conn-3 {
  bottom: 30%;
  left: 25%;
  width: 180px;
  transform: rotate(45deg);
}

.conn-4 {
  top: 60%;
  left: 60%;
  width: 120px;
  transform: rotate(-30deg);
}

@keyframes dataFlow {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

.data-packet {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #06b6d4;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
  animation: packetMove 5s linear infinite;
}

.packet-1 {
  top: 25%;
  left: 10%;
  animation-delay: 0s;
}

.packet-2 {
  top: 45%;
  right: 15%;
  animation-delay: 1.5s;
}

.packet-3 {
  bottom: 25%;
  left: 30%;
  animation-delay: 3s;
}

@keyframes packetMove {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(300px) translateY(-50px);
    opacity: 0;
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-circle,
.floating-square {
  position: absolute;
  background: linear-gradient(135deg, #667eea44, #764ba244);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-square {
  border-radius: 10px;
  animation: floatReverse 8s ease-in-out infinite;
}

.circle-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

.square-1 {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 10%;
  animation-delay: 1s;
}

.square-2 {
  width: 50px;
  height: 50px;
  bottom: 40%;
  left: 20%;
  animation-delay: 3s;
}

/* AI Brain Visual */
.ai-brain-visual {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 100px;
  height: 100px;
  opacity: 0.4;
}

.brain-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #06b6d4;
  border-radius: 50%;
  animation: brainPulse 2s ease-in-out infinite;
}

.brain-node:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}
.brain-node:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 0.5s;
}
.brain-node:nth-child(3) {
  top: 40%;
  right: 10%;
  animation-delay: 1s;
}

.brain-connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
  animation: brainSync 3s ease-in-out infinite;
}

.brain-connection:nth-child(4) {
  top: 35%;
  left: 25%;
  width: 40px;
  transform: rotate(45deg);
}

.brain-connection:nth-child(5) {
  top: 50%;
  left: 35%;
  width: 35px;
  transform: rotate(-30deg);
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes floatReverse {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(-180deg);
  }
}

/* Company Introduction Styling */
.company-intro {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.typewriter {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: #94a3b8;
  margin-top: 0.5rem;
  overflow: hidden;
  border-right: 3px solid #667eea;
  white-space: nowrap;
  animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #667eea;
  }
}

.startup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.2),
    rgba(118, 75, 162, 0.2)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: #667eea;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(102, 126, 234, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
  }
}

.startup-badge i {
  animation: rocketMove 2s ease-in-out infinite;
}

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

/* Hero Description */
.hero-description {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.description-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.description-text strong {
  color: #667eea;
  font-weight: 700;
}

.tech-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  animation: slideInLeft 1s ease calc(1.5s + var(--index) * 0.2s) forwards;
  opacity: 0;
}

.highlight-item:nth-child(1) {
  --index: 0;
}
.highlight-item:nth-child(2) {
  --index: 1;
}
.highlight-item:nth-child(3) {
  --index: 2;
}

.highlight-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.08);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  color: white;
  font-size: 1rem;
}

.highlight-item span {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.95rem;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards;
}

.btn {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #764ba2, #667eea);
  transition: left 0.3s ease;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn * {
  position: relative;
  z-index: 1;
}

.hero-visual {
  opacity: 0;
  animation: fadeInRight 1s ease 2s forwards;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Telco Dashboard */
.telco-dashboard {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 1.1rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.metric-chart {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 30px;
}

.chart-bar {
  width: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
  height: var(--height);
  animation: chartGrow 2s ease calc(var(--index, 0) * 0.2s) forwards;
  transform: scaleY(0);
  transform-origin: bottom;
}

@keyframes chartGrow {
  to {
    transform: scaleY(1);
  }
}

.metric-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 3px;
  width: 75%;
  animation: progressFill 3s ease forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes progressFill {
  to {
    transform: scaleX(1);
  }
}

.device-indicators {
  display: flex;
  gap: 6px;
}

.device-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: devicePulse 3s ease-in-out infinite;
}

.device-dot.active {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.device-dot:nth-child(1) {
  animation-delay: 0s;
}
.device-dot:nth-child(2) {
  animation-delay: 0.5s;
}
.device-dot:nth-child(3) {
  animation-delay: 1s;
}
.device-dot:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes devicePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* AI Visualization */
.ai-visualization {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.ai-core {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-ring {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  animation: coreRotate 10s linear infinite;
}

.ring-1 {
  width: 60px;
  height: 60px;
  border-color: #667eea transparent #667eea transparent;
  animation-duration: 8s;
}

.ring-2 {
  width: 90px;
  height: 90px;
  border-color: transparent #764ba2 transparent #764ba2;
  animation-duration: 12s;
  animation-direction: reverse;
}

.ring-3 {
  width: 120px;
  height: 120px;
  border-color: #06b6d4 transparent #06b6d4 transparent;
  animation-duration: 15s;
}

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

.ai-center {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
  animation: centerPulse 3s ease-in-out infinite;
}

.ai-center i {
  color: white;
  font-size: 1.2rem;
}

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

.ai-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ai-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #06b6d4;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
  animation: nodeOrbit 6s linear infinite;
}

.ai-node.node-1 {
  top: 10%;
  left: 50%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.ai-node.node-2 {
  top: 50%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.ai-node.node-3 {
  bottom: 10%;
  left: 50%;
  animation-delay: 4s;
  animation-duration: 12s;
}

.ai-node.node-4 {
  top: 50%;
  left: 10%;
  animation-delay: 6s;
  animation-duration: 9s;
}

@keyframes nodeOrbit {
  0% {
    transform: rotate(0deg) translateX(60px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

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

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease calc(2s + var(--delay)) forwards;
  opacity: 0;
}

.tech-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.tech-item i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.tech-item span {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease 3s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid #667eea;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(-10px);
  }
  60% {
    transform: rotate(45deg) translateY(-5px);
  }
}

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

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  color: #5680db;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  margin: 0 auto;
  border-radius: 2px;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  pointer-events: none;
}

.tech-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 60% 20%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 40%
    );
  animation: patternShift 20s ease-in-out infinite;
}

@keyframes patternShift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(2deg);
  }
}

.floating-tech-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tech-icon {
  position: absolute;
  font-size: 3rem;
  color: rgba(102, 126, 234, 0.2);
  animation: techIconFloat 15s ease-in-out infinite;
}

.icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.icon-2 {
  top: 25%;
  right: 15%;
  animation-delay: 3s;
}
.icon-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 6s;
}
.icon-4 {
  top: 60%;
  left: 70%;
  animation-delay: 9s;
}
.icon-5 {
  bottom: 20%;
  right: 25%;
  animation-delay: 12s;
}

@keyframes techIconFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.4;
  }
}

.section-subtitle {
  font-size: 1.3rem;
  color: #667eea;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

/* About Content Layout */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Intro Card */
.intro-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2, #06b6d4);
  animation: gradientShift 3s ease-in-out infinite;
}

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

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  animation: iconPulse 3s ease-in-out infinite;
}

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

.card-icon i {
  font-size: 2rem;
  color: white;
}

.card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-content p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: all 0.3s ease;
}

.pillar-1::before {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.pillar-2::before {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.pillar-3::before {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pillar-card:hover::before {
  height: 6px;
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-1 .pillar-icon {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.pillar-2 .pillar-icon {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.pillar-3 .pillar-icon {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.pillar-icon i {
  font-size: 1.5rem;
  color: white;
}

.pillar-header h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
}

.pillar-content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Pillar Visualizations */
.benchmark-visual {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 60px;
  margin-top: 1rem;
}

.benchmark-bar {
  flex: 1;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  border-radius: 4px;
  animation: barGrow 2s ease forwards;
  transform: scaleY(0);
  transform-origin: bottom;
}

.bar-1 {
  height: 70%;
  animation-delay: 0.2s;
}
.bar-2 {
  height: 85%;
  animation-delay: 0.4s;
}
.bar-3 {
  height: 60%;
  animation-delay: 0.6s;
}
.bar-4 {
  height: 95%;
  animation-delay: 0.8s;
}

@keyframes barGrow {
  to {
    transform: scaleY(1);
  }
}

.efficiency-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 60px;
  position: relative;
}

.gear {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.gear-1 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  animation: rotateClockwise 4s linear infinite;
}

.gear-2 {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  animation: rotateCounterClockwise 3s linear infinite;
}

.gear-3 {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  animation: rotateClockwise 5s linear infinite;
}

.gear i {
  color: white;
  font-size: 1rem;
}

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

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

.diagnostic-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  position: relative;
}

.pulse-ring {
  width: 50px;
  height: 50px;
  border: 3px solid #8b5cf6;
  border-radius: 50%;
  position: absolute;
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.diagnostic-center {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagnostic-center i {
  color: white;
  font-size: 1.2rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Technology Ecosystem */
.about-tech-ecosystem {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 25px;
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-tech-ecosystem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(102, 126, 234, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(6, 182, 212, 0.2) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.ecosystem-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.ecosystem-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.ecosystem-header p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.ecosystem-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  color: #06b6d4;
  font-size: 0.9rem;
  font-weight: 500;
  animation: noteGlow 3s ease-in-out infinite;
}

@keyframes noteGlow {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
  }
}

/* Unified Ecosystem Layout */
.unified-ecosystem {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.ecosystem-section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ecosystem-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #06b6d4, #10b981);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.ecosystem-section:hover::before {
  transform: scaleX(1);
}

.ecosystem-section:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.section-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title-bar h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.section-title-bar i {
  color: #06b6d4;
  font-size: 1.3rem;
}

.expandable-indicator {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.3),
    rgba(6, 182, 212, 0.3)
  );
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.4);
}

/* Technology Showcase */
.tech-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tag {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.tag-4g {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: white;
}

.tag-5g {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
}

.tag-6g {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
}

.tag-more {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  color: #cbd5e1;
  animation: pulseMore 2s ease-in-out infinite;
}

@keyframes pulseMore {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.tech-expansion {
  margin-top: 1rem;
  opacity: 0.8;
}

.expansion-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expansion-items span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Operator Showcase */
.operator-showcase .operator-regions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.region {
  padding: 0;
  border: none;
  background: none;
}

.region-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.north-america .region-header {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2),
    rgba(6, 182, 212, 0.2)
  );
  border-left: 4px solid #10b981;
}

.europe .region-header {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2),
    rgba(239, 68, 68, 0.2)
  );
  border-left: 4px solid #f59e0b;
}

.asia-pacific .region-header {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2),
    rgba(236, 72, 153, 0.2)
  );
  border-left: 4px solid #8b5cf6;
}

.global-others .region-header {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.2),
    rgba(6, 182, 212, 0.2)
  );
  border-left: 4px solid #667eea;
}

.region-header:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.region-flag {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.region-info {
  flex: 1;
}

.region-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.operators {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.more-operators {
  color: #06b6d4;
  font-weight: 600;
}

/* Device Analytics Grid */
.device-analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.device-category {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.device-category:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #06b6d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon i {
  font-size: 1.5rem;
  color: white;
}

.category-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.device-examples {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.plus-more {
  font-size: 0.8rem;
  color: #06b6d4;
  font-weight: 600;
}

/* Cloud Section */
.cloud-section {
  background: rgba(255, 255, 255, 0.1) !important;
}

.cloud-architecture {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cloud-providers-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.cloud-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: all 0.3s ease;
  min-width: auto;
}

.cloud-item:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.cloud-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aws .cloud-logo {
  background: linear-gradient(135deg, #ff9900, #ff6600);
}

.azure .cloud-logo {
  background: linear-gradient(135deg, #0078d4, #005ba1);
}

.gcp .cloud-logo {
  background: linear-gradient(135deg, #4285f4, #1a73e8);
}

.hybrid .cloud-logo {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.cloud-logo i {
  font-size: 1.5rem;
  color: white;
}

.cloud-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cloud-name {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.cloud-services {
  font-size: 0.8rem;
  color: #94a3b8;
}

.cloud-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: rgba(6, 182, 212, 0.2);
  transform: scale(1.05);
}

.feature-highlight i {
  color: #06b6d4;
  font-size: 1.2rem;
}

.feature-highlight span {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Standards Compliance Section */
.standards-compliance-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.compliance-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.compliance-header p {
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.primary-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  animation: primaryBadgeGlow 3s ease-in-out infinite;
  flex-direction: column;
  text-align: center;
  padding: 1.5rem;
}

@keyframes primaryBadgeGlow {
  0%,
  100% {
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(102, 126, 234, 0.6);
  }
}

.primary-badge .badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.badge-title {
  font-size: 1rem;
  font-weight: 700;
}

.badge-subtitle {
  font-size: 0.8rem;
  opacity: 0.9;
}

.compliance-badge:not(.primary-badge) {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.compliance-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Ripple Animation */
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

/* Tech Tag Position Relative for Ripple */
.tech-tag {
  position: relative;
  overflow: hidden;
}

/* Feature Page General Styles */
.feature-page {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.feature-page .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.feature-page .section-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.feature-page .section-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.feature-page .feature-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.feature-page .feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-page .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.feature-page .item-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-page .item-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-page .item-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Performance Benchmarking Section */
#performance-benchmarking {
  background: linear-gradient(135deg, #1d2b64 0%, #f8cdda 100%);
}

#performance-benchmarking .section-subtitle {
  color: #f8cdda;
}
#performance-benchmarking .item-icon {
  background: linear-gradient(135deg, #f8cdda, #1d2b64);
}

.globe-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: url("https://www.transparenttextures.com/patterns/world-map.png");
  opacity: 0.1;
  border-radius: 50%;
  animation: rotateGlobe 60s linear infinite;
}

@keyframes rotateGlobe {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.data-arc-container,
.kpi-floaters {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Operational Efficiency Section */
#operational-efficiency {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

#operational-efficiency .section-subtitle {
  color: #4ecdc4;
}
#operational-efficiency .item-icon {
  background: linear-gradient(135deg, #4ecdc4, #2c5364);
}

.gears-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.gears-bg .fas {
  position: absolute;
  color: #ffffff;
  animation: spin 20s linear infinite;
}

.gear-large {
  font-size: 25rem;
  top: 10%;
  left: 5%;
}
.gear-medium {
  font-size: 15rem;
  top: 60%;
  right: 10%;
  animation-direction: reverse;
  animation-duration: 15s;
}
.gear-small {
  font-size: 8rem;
  top: 20%;
  right: 25%;
  animation-duration: 10s;
}

.automation-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Advanced Diagnostics Section */
#advanced-diagnostics {
  background: linear-gradient(135deg, #304352 0%, #d7d2cc 100%);
}

#advanced-diagnostics .section-subtitle {
  color: #d7d2cc;
}
#advanced-diagnostics .item-icon {
  background: linear-gradient(135deg, #d7d2cc, #304352);
}

.scan-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 100% 3px;
  animation: scan 5s linear infinite;
}

@keyframes scan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100%;
  }
}

.data-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Dashboard Section */
#dashboard-section {
  background: #0f172a;
  padding: 100px 0;
}

#dashboard-section .dashboard-intro h3 {
  color: #ffffff;
}
#dashboard-section .dashboard-intro p {
  color: #00ffff;
}

/* Key Features Section (Old - to be removed or repurposed) */
.key-features {
  display: none; /* Hiding the old section */
}

/* Features Section */
.features {
  background: #1e293b;
  color: white;
}

.features .section-title {
  color: white;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.feature-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-method i {
  color: #667eea;
  font-size: 1.2rem;
  width: 20px;
}

.contact-method span {
  font-weight: 500;
  color: #475569;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 1rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0rem;
}

.footer-logo p {
  color: #64748b;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #667eea;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

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

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

  .typewriter {
    font-size: 1.2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .tech-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    justify-content: center;
  }

  .telco-dashboard {
    padding: 1rem;
  }

  .ai-visualization {
    height: 150px;
  }

  .ai-core {
    width: 100px;
    height: 100px;
  }

  .ring-1 {
    width: 50px;
    height: 50px;
  }
  .ring-2 {
    width: 75px;
    height: 75px;
  }
  .ring-3 {
    width: 100px;
    height: 100px;
  }

  /* About section responsive */
  .intro-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .unified-ecosystem {
    gap: 2rem;
  }

  .device-analytics-grid {
    grid-template-columns: 1fr;
  }

  .cloud-providers-enhanced {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .compliance-badges {
    flex-direction: column;
    align-items: center;
  }

  .section-title-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .region-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .region-flag {
    font-size: 2rem;
  }

  .about-tech-ecosystem {
    padding: 2rem;
  }

  .ecosystem-header h3 {
    font-size: 1.8rem;
  }

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

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

  .stats-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .network-visualization {
    opacity: 0.1;
  }

  .floating-elements {
    opacity: 0.3;
  }
}

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

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

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .feature-card,
  .contact-form {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.flow-step {
  display: flex;
  gap: 1rem;
  justify-content: left;
  align-items: center;
}

.scenario-card {
  display: flex;
  gap: 1rem;
  justify-content: left;
  align-items: center;
}

.btn-default {
  outline: none;
  padding: 8px 16px;
  border-radius: 15px;
  background: none;
  color: #fff;
  box-shadow: none;
  border: 1px solid #ccc;
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.btn-default:hover {
  background-color: #fff;
  color: #000;
  transition: 0.3s ease-in-out;
}

.copyright-link {
  text-decoration: none;
  color: inherit;
}

.user-profile {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.user-icon {
  font-size: 2rem;
  color: #667eea;
  transition: color 0.2s;
}

.user-profile:hover .user-icon,
.user-profile.active .user-icon {
  color: #374151;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: 2.5rem;
  right: 0;
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
  min-width: 140px;
  z-index: 100;
  padding: 0.5rem 0;
  flex-direction: column;
  gap: 0.2rem;
}

.user-profile.active .user-dropdown {
  display: flex;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.2rem;
  color: #374151;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: #667eea;
}
