/* ============================================
   MARSSAM TECH PVT LTD - Main Stylesheet
   ============================================ */

:root {
  --primary: #00f5ff;
  --secondary: #0066ff;
  --accent: #ff6b35;
  --bg: #030310;
  --bg-2: #070720;
  --bg-3: #0d0d2b;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(0, 245, 255, 0.12);
  --text: #e8eaf6;
  --text-muted: #8892b0;
  --glow: rgba(0, 245, 255, 0.15);
  --glow-strong: rgba(0, 245, 255, 0.4);
  --font-display: "Exo 2", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-mono: "Share Tech Mono", monospace;
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light theme overrides: add class `light-theme` to <html> or <body> to apply */
.light-theme {
  --primary: #0066ff;
  --secondary: #00b4ff;
  --accent: #ff6b35;
  --bg: #ffffff;
  --bg-2: #f7f9fc;
  --bg-3: #eef4ff;
  --card-bg: rgba(11, 18, 32, 0.04);
  --card-border: rgba(6, 86, 255, 0.08);
  --text: #0b1220;
  --text-muted: #5b6b7a;
  --glow: rgba(0, 118, 255, 0.06);
  --glow-strong: rgba(0, 118, 255, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* CURSOR */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  mix-blend-mode: screen;
}
#cursor-trail {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 245, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.12s ease;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.pre-logo {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
}
.pre-m {
  color: var(--primary);
}
.pre-t {
  color: var(--secondary);
}
.pre-bar {
  width: 300px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0%;
  transition: width 2s ease;
  border-radius: 3px;
  box-shadow: 0 0 10px var(--primary);
}
.pre-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

/* CONTAINER */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(3, 3, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.logo-icon svg {
  width: 100%;
  height: 100%;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
  text-transform: uppercase;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition);
  border-radius: 1px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 14px;
  right: 14px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-nav {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-nav:hover {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 0 20px var(--glow-strong);
}
.btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--primary);
  cursor: pointer;
  margin-left: 8px;
  transition: all 200ms ease;
}
.btn-theme:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Improve navbar spacing on large screens */
.nav-container {
  padding: 10px 40px;
}

/* Page headers */
main h1 {
  font-family: var(--font-display);
  font-size: 40px;
  margin: 8px 0 6px;
  color: var(--text);
}
.section-sub {
  margin-bottom: 28px;
}

/* Card-like info elements used on contact and pricing pages */
.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 22px;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.info-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  color: var(--text);
}

/* Portfolio tweaks */
.portfolio-grid .port-card {
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}
.portfolio-grid .port-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

/* Service card improvements */
.services-grid .service-card {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card h3 {
  margin-top: 8px;
}

/* Video plans grid */
.video-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.video-plans-grid .service-card {
  padding: 22px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}
.video-plans-grid .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 245, 255, 0.06);
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 245, 255, 0.08);
}
.video-plans-grid .price {
  margin-top: 8px;
  font-weight: 700;
  color: var(--primary);
}

/* plan meta: storage and bandwidth stacked with icon */
.plan-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}
.meta-line i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 245, 255, 0.06);
  color: var(--primary);
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid rgba(0, 245, 255, 0.06);
}
.uptime {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* small file-type icons under plan title */
.file-icons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.file-icons i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 245, 255, 0.04);
  color: var(--primary);
  border-radius: 6px;
  font-size: 13px;
  border: 1px solid rgba(0, 245, 255, 0.06);
}

/* top-right badge inside each plan card (shown as box in screenshot)
   Using a fixed placeholder value ₹789 per request; can be made dynamic later */
.corner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 245, 255, 0.12);
  color: var(--primary);
  padding: 6px 10px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid rgba(0, 245, 255, 0.14);
}

@media (max-width: 1100px) {
  .video-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .video-plans-grid {
    grid-template-columns: 1fr;
  }
}

/* Make visuals adapt on smaller screens */
@media (max-width: 900px) {
  .nav-container {
    padding: 10px 20px;
  }
  .logo-text {
    display: none;
  }
  #hero {
    padding: 80px 16px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* VPS table styles */
.vps-table thead th {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--card-border);
}
.vps-table tbody tr td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.vps-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

/* Trust / deployment note */
.trust-note {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.25));
  border: 1px solid var(--card-border);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 18px auto;
  max-width: 1100px;
  color: var(--text-muted);
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 1px;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 32px 80px;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-left: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease forwards;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-title .line-1 {
  display: block;
  font-size: clamp(52px, 7vw, 96px);
  color: var(--text);
  letter-spacing: -2px;
  animation: fadeInUp 0.8s 0.2s ease forwards;
  opacity: 0;
}
.hero-title .line-2 {
  display: block;
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: -2px;
  animation: fadeInUp 0.8s 0.35s ease forwards;
  opacity: 0;
}
.hero-title .line-3 {
  display: block;
  font-size: clamp(52px, 7vw, 96px);
  color: var(--text-muted);
  letter-spacing: -2px;
  animation: fadeInUp 0.8s 0.5s ease forwards;
  opacity: 0;
}
.highlight-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  position: relative;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.65s ease forwards;
  opacity: 0;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s 0.8s ease forwards;
  opacity: 0;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s 0.95s ease forwards;
  opacity: 0;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}
.hero-visual {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.orbit-container {
  position: relative;
  width: 420px;
  height: 420px;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
}
.orbit-1 {
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  animation: orbit1 6s linear infinite;
}
.orbit-2 {
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  animation: orbit2 10s linear infinite;
}
.orbit-3 {
  width: 380px;
  height: 380px;
  margin: -190px 0 0 -190px;
  animation: orbit3 15s linear infinite;
}
.orbit-dot {
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -16px;
  width: 32px;
  height: 32px;
  background: var(--bg-3);
  border: 1px solid var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
.center-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0, 245, 255, 0.4);
  border-radius: 50%;
  animation: pulse-ring 2s ease infinite;
}
.center-ring.r2 {
  inset: -15px;
  border-color: rgba(0, 102, 255, 0.3);
  animation-delay: 0.5s;
}
.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: var(--primary);
  filter: drop-shadow(0 0 10px var(--primary));
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  animation: fadeIn 1s 2s forwards;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--primary), transparent);
  animation: scrollLine 2s ease infinite;
}

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
  background: rgba(0, 245, 255, 0.05);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ticker span {
  color: var(--text-muted);
}
.ticker .sep {
  color: var(--primary);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--bg-2);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 14px;
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(0, 245, 255, 0.05);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.accent {
  color: var(--primary);
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Contact form — force vertical layout and full-width fields */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 22px;
  border-radius: 12px;
}
.contact-form label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  display: block;
  margin-top: 8px;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text);
  resize: vertical;
}
.contact-form .btn-primary {
  margin-top: 14px;
  display: inline-block;
  padding: 10px 20px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 245, 255, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 245, 255, 0.08);
}
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(0, 245, 255, 0.06),
    transparent 60%
  );
  pointer-events: none;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.service-tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(0, 245, 255, 0.07);
  border: 1px solid rgba(0, 245, 255, 0.15);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.card-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card-link:hover {
  gap: 12px;
}

/* ============================================
   WHY US
   ============================================ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left .section-title {
  text-align: left;
}
.why-left .section-tag {
  display: inline-block;
}
.why-left > p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 20px 0 40px;
  line-height: 1.8;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.feature-item:hover .feat-icon {
  background: var(--primary);
  color: var(--bg);
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.feature-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* HEXAGON GRID */
.hexagon-grid {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
}
.hex {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 24px;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: default;
}
.hex span {
  font-size: 11px;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}
.hex:hover,
.center-hex {
  background: rgba(0, 245, 255, 0.1);
  border-color: rgba(0, 245, 255, 0.4);
  color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.15);
}
.center-hex {
  font-size: 28px;
  width: 110px;
  height: 110px;
}
.h1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.h2 {
  top: 80px;
  right: 0;
}
.h3 {
  bottom: 80px;
  right: 0;
}
.h4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.h5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.h6 {
  top: 80px;
  left: 0;
}
.h7 {
  bottom: 80px;
  left: 0;
}

/* ============================================
   TECH STACK
   ============================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-size: 28px;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: default;
}
.tech-item span {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}
.tech-item:hover {
  color: var(--primary);
  border-color: rgba(0, 245, 255, 0.3);
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 16px rgba(0, 245, 255, 0.1);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.port-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: all var(--transition);
  cursor: default;
}
.port-card.featured {
  grid-row: span 2;
}
.port-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.port-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.port-card.featured .port-img {
  height: 300px;
}
.port-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity var(--transition);
}
.port-card:hover .port-overlay {
  opacity: 0.8;
}
.port-icon {
  font-size: 48px;
  color: var(--primary);
  filter: drop-shadow(0 0 20px var(--primary));
}
.port-info {
  padding: 20px;
  background: var(--card-bg);
}
.port-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.port-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.port-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--card-border);
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0;
  color: var(--text);
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  margin-top: 6px;
}
.price-card ul {
  margin: 8px 0 0 18px;
  color: var(--text-muted);
}
.price-card .card-link {
  margin-top: auto;
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--card-border);
  padding: 10px 14px;
  border-radius: 8px;
}
.price-card.featured {
  border: 1px solid rgba(0, 245, 255, 0.22);
  box-shadow: 0 18px 48px rgba(0, 245, 255, 0.06);
  transform: translateY(-6px);
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Services list: card layout */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}
.service-item h2 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}
.service-item p {
  color: var(--text-muted);
  line-height: 1.7;
}
.service-item ul {
  margin-left: 18px;
  margin-top: 10px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}

/* Blog list and cards */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card h2 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
}
.blog-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

/* Generic content block used on About / Solutions pages */
.content-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 26px;
  border-radius: 12px;
  color: var(--text);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}
.content-block h2 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-top: 8px;
  color: var(--text);
}
.content-block p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Solutions grid: make each solution a card */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.solution-card {
  background: transparent;
  padding: 0;
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-slider {
  position: relative;
  max-width: 680px;
  margin: 0 auto 32px;
}
.testi-card {
  display: none;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 120px;
  color: rgba(0, 245, 255, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.testi-stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.testi-card > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--bg);
  flex-shrink: 0;
}
.testi-author h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   CTA
   ============================================ */
.cta-box {
  position: relative;
  text-align: center;
  padding: 80px;
  background: linear-gradient(
    135deg,
    rgba(0, 245, 255, 0.06),
    rgba(0, 102, 255, 0.06)
  );
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(0, 245, 255, 0.08),
    transparent 70%
  );
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin: 16px 0 16px;
}
.cta-box p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--card-border);
}
.footer-top {
  padding: 72px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  box-shadow: 0 0 14px rgba(0, 245, 255, 0.3);
}
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.contact-item i {
  color: var(--primary);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-item span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.heart {
  color: #ff4466;
}

/* ============================================
   BACK TO TOP & WHATSAPP
   ============================================ */
#backToTop {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  transition: all var(--transition);
}
#backToTop:hover {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}
#backToTop.show {
  display: flex;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: bounce 2s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* UTILITIES */
.text-center {
  text-align: center;
}
.mt-60 {
  margin-top: 60px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .footer-contact {
    grid-column: span 2;
  }
  .hero-visual {
    right: 30px;
  }
  .orbit-container {
    width: 340px;
    height: 340px;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hexagon-grid {
    width: 300px;
    height: 300px;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    padding-left: 0;
    max-width: 100%;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    font-size: 20px;
    padding: 12px 24px;
  }
  .hamburger {
    display: flex;
    z-index: 1000;
  }
  .btn-nav {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .port-card.featured {
    grid-row: auto;
  }
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .cta-box {
    padding: 40px 24px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .why-left .section-title {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
}
