/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rajdhani', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

body::-webkit-scrollbar {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url("../img/repair-bg.jpg") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  animation: fadeInDown 1s ease;
}

.hero-content p {
  margin: 15px 0;
  animation: fadeInUp 1s ease;
}

.search-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.search-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.search-form button,
.search-form-button {
  padding: 10px 20px;
  border: none;
  background: #1abc9c;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-form button:hover,
.search-form-button:hover {
  background: #16a085;
}

/* Services Section */ 
.services {
  padding: 80px 20px;
  text-align: center;
  background: #f4f4f4;
}

.service-cards {
  display: grid;
  margin-top: 20px;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #1abc9c;
  color: #fff;
}

.stat {
  margin: 15px;
  text-align: center;
}

.stat h3 {
  font-size: 2rem;
}

.about, .contact {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #0084ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-btn:hover {
  background: #006aff;
  transform: scale(1.1);
}

.floating-btn svg {
  fill: #fff;
}

/* QR Scanner */
.qr-section {
  display: none;
  padding: 24px 16px;
  background: rgba(0,0,0,0.75);
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.qr-inner {
  width: 100%;
  max-width: 520px;
  background: #0f1624;
  padding: 18px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.qr-result {
  margin-top: 12px;
  color: #a0f0b8;
  font-weight: 600;
  word-break: break-word;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-primary {
  background: #00a8ff;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Button group for scrollable buttons */
.button-group {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  white-space: nowrap;
  overflow-x: auto;
  padding: 5px;
}

.button-group::-webkit-scrollbar {
  display: none;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

[data-animate] {
  opacity: 0;
}

[data-animate].animated {
  opacity: 1;
}

/* REMOVE sticky effect for Our Services */
.services,
.services-header {
  position: static !important;
  top: auto !important;;
}

h1 {
  margin: 0;
  color: #00aaff;
  font-size: 1.8rem;
  font-weight: 600;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.category {
  margin-bottom: 35px;
}

.category h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #50C878;
  border-left: 4px solid #00aaff;
  padding-left: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 170, 255, 0.4);
  border-radius: 16px;
  text-align: center;
  padding: 25px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 170, 255, 0.4);
  border-color: #00aaff;
}

.material-icons {
  font-size: 42px;
  margin-bottom: 10px;
}

.label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.4rem;
  }
  .material-icons {
    font-size: 36px;
  }
}

