/* Professional ISP Custom Effects */

:root {
  --corporate-blue: #0b1120;
  --corporate-accent: #3b82f6;
  --corporate-teal: #14b8a6;
  --corporate-text: #f8fafc;
}

body {
  background-color: var(--corporate-blue);
  color: var(--corporate-text);
  overflow-x: hidden;
  font-feature-settings: "cv11", "ss01";
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Subtle Gradient Background */
.bg-gradient-corporate {
  background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0b1120 70%);
}

/* Frosted Glass Header */
.glass-header {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Professional Card */
.pro-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pro-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Global Connectivity Map Background (Abstract) */
.globe-dots {
  background-image: radial-gradient(#334155 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* Animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

/* Status Indicators */
.status-indicator {
  position: relative;
  display: inline-flex;
}

.status-indicator::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-indicator::after {
  content: '';
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: currentColor;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* 3D Wireframe Globe Tech Visual */
.tech-globe-container {
  perspective: 1200px;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-globe {
  position: relative;
  width: 400px;
  height: 400px;
  transform-style: preserve-3d;
  animation: rotate-globe 30s linear infinite;
}

.globe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.globe-ring:nth-child(1) {
  transform: translate(-50%, -50%) rotateY(0deg);
}

.globe-ring:nth-child(2) {
  transform: translate(-50%, -50%) rotateY(30deg);
}

.globe-ring:nth-child(3) {
  transform: translate(-50%, -50%) rotateY(60deg);
}

.globe-ring:nth-child(4) {
  transform: translate(-50%, -50%) rotateY(90deg);
}

.globe-ring:nth-child(5) {
  transform: translate(-50%, -50%) rotateY(120deg);
}

.globe-ring:nth-child(6) {
  transform: translate(-50%, -50%) rotateY(150deg);
}

.globe-outer-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  border: 1px dashed rgba(20, 184, 166, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  animation: rotate-ring 20s linear infinite reverse;
}

.globe-holo-base {
  position: absolute;
  bottom: -20%;
  left: 50%;
  width: 80%;
  height: 20%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  transform: translateX(-50%) rotateX(60deg);
  filter: blur(20px);
}

@keyframes rotate-ring {
  0% {
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg);
  }
}

.globe-ring:nth-child(4) {
  transform: translate(-50%, -50%) rotateY(90deg);
}

.globe-ring:nth-child(5) {
  transform: translate(-50%, -50%) rotateY(120deg);
}

.globe-ring:nth-child(6) {
  transform: translate(-50%, -50%) rotateY(150deg);
}

.globe-ring::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #14b8a6;
  border-radius: 50%;
  box-shadow: 0 0 10px #14b8a6;
  transform: translateX(-50%);
}

.globe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

@keyframes rotate-globe {
  0% {
    transform: rotateY(0deg) rotateX(20deg);
  }

  100% {
    transform: rotateY(360deg) rotateX(20deg);
  }
}

.floating-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  animation: float-node 4s ease-in-out infinite;
}

@keyframes float-node {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}