/* ===== VersaHelp Mobile Styles ===== */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  overflow-x: hidden;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #007BFF;
  padding: 10px 15px;
}

nav .logo {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

nav ul {
  display: none; /* hide desktop nav */
}

/* Switch Button */
.switch-btn {
  position: fixed;
  bottom: 20px;   /* initial distance from bottom */
  right: 20px;
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1000;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .switch-btn {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 12px;
  }
}


/* Sections */
section {
  padding: 20px 15px;
  text-align: center;
}

/* Headings */
h1, h2, h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* Paragraphs */
p {
  font-size: 14px;
  line-height: 1.5;
}

/* Booking Form */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input,
form select,
form textarea,
form button {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background: #007BFF;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* Service Cards */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.services .card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Team Profiles */
.team {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team .profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 13px;
}

