/*
Theme Name: Hyderabad TV Repair Theme
Author: Avinash
Version: 1.0
*/

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #333;
}

header {
  background: #0f4c81;
  color: white;
  padding: 20px;
  text-align: center;
}

nav {
  background: #08345a;
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 50px 20px;
  text-align: center;
  background: white;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact {
  background: #0f4c81;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

footer {
  background: #08345a;
  color: #ccc;
  text-align: center;
  padding: 15px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* === WhatsApp Sticky Floating Button === */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  z-index: 9999999;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile: stretched considering safe-area */
@media (max-width: 768px) {
  .whatsapp-sticky {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    border-radius: 10px;
    font-size: 17px;
  }
}


