/* =========================================================
   WorldWideNet - Professional & Modern Glassmorphic CSS
   ========================================================= */

:root {
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-bg-hover: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.9);
  --primary-blue: #0066ff;
  --primary-purple: #7000ff;
  --accent-pink: #ff007f;
  --text-main: #0f172a;
  --text-muted: #070707;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 1. ISP, Server & Broadband Theme Background */
body {
  /* Soft overlay blended with high-tech Server & ISP Network background image */
  background: linear-gradient(135deg, rgb(210, 213, 214), rgba(0, 110, 255, 0.55)),
              url('https://kommodo.ai/i/oBt2YvZRvgicUZIw11sy') center/cover no-repeat fixed;
  color: var(--text-main);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

img, iframe {
  max-width: 100%;
  height: auto;
}

/* 2. Glassmorphism Panel & Cards */
.glass-panel, .card {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px -5px rgba(0, 102, 255, 0.08), 
              0 4px 6px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, box-shadow;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(0, 102, 255, 0.4);
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.15),
              0 10px 20px -5px rgba(112, 0, 255, 0.1);
}

/* 3. Sticky Glass Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main) !important;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue) !important;
}

/* 4. Professional Shimmer Button Animation */
.btn-neon {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  background-size: 200% auto;
  color: #ffffff !important;
  border: none;
  font-weight: 600;
  border-radius: 50rem;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-neon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(30deg);
  transition: 0.8s ease;
}

.btn-neon:hover::before {
  left: 100%;
}

.btn-neon:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(112, 0, 255, 0.35);
}

.btn-neon:active {
  transform: translateY(-1px);
}

/* 5. Live TV Pulse Animation */
.pulse-badge {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: var(--accent-pink);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255, 0, 127, 0.4);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 0, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0); }
}

/* 6. Floating Action Buttons (WhatsApp & Phone) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: floatBounce 3s ease-in-out infinite;
}

.floating-btn:hover {
  transform: scale(1.18) rotate(12deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.phone {
  background: var(--primary-blue);
  animation-delay: 1.5s;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* 7. Tables & Responsive Fixes */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  color: var(--text-main) !important;
  white-space: nowrap;
}

/* 8. Mobile Menu Glass Styling */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    padding: 20px;
    border-radius: 16px;
    margin-top: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 767px) {
  .glass-panel, .card {
    padding: 18px !important;
  }
}

.sidebar, 
#sidebar, 
aside {
    display: none !important;
}

main, 
.content-wrapper, 
.main-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    flex: 0 0 100% !important;
}