/* Custom styles for Techzio Media */
:root {
  --primary: #0A2540;
  --accent: #00D4FF;
  --orange: #FF6B00;
  --light: #F8FAFC;
}

body {
  font-family: 'Inter', 'Noto Sans Telugu', system-ui, sans-serif;
}

.telugu {
  font-family: 'Noto Sans Telugu', 'Inter', sans-serif;
}

/* Floating action buttons */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.fab-whatsapp {
  background: #25D366;
  color: white;
}

.fab-call {
  background: #0A2540;
  color: white;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, #0A2540 0%, #0F3A5F 50%, #1A5276 100%);
}

/* Service cards hover */
.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(10,37,64,0.15);
}

/* Price badge */
.price-badge {
  background: linear-gradient(90deg, #FF6B00, #FF8C00);
}

/* Nav active */
.nav-link.active {
  color: #00D4FF;
  border-bottom: 2px solid #00D4FF;
}

/* Mobile menu */
#mobile-menu {
  transition: max-height 0.3s ease-out;
}

/* Section bilingual block */
.bilingual-block {
  border-left: 4px solid #00D4FF;
  padding-left: 1rem;
}

/* Footer */
footer a:hover {
  color: #00D4FF;
}