/* Global font and reset */
* {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}
#testimonial-slider {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.slider-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.review-card {
  display: none;
  transition: opacity 0.5s ease;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.review-card.active {
  display: block;
}

.slider-controls {
  margin-top: 20px;
}

.slider-controls button {
  padding: 10px 20px;
  margin: 0 10px;
  font-weight: bold;
  cursor: pointer;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  /* background-color: #007bff; */
  background-color: #25D366;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;

}

#myBtn:hover {
  background-color: #fff;
}

#myBtn img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
}

/* Toggle Menu Icon */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #111;
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo Section */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 0px;
}

.navbar-left img {
  width: 35%;
  height: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}


/* Nav Menu */
.navbar-menu {
  display: flex;
  gap: 2em;
  align-items: center;
}

.navbar-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 450;
  transition: 0.3s;
  font-size: 14px;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: #1a72b2;
}

/* Right Section */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.2em;
  font-size: 14px;
}

.phone {
  font-weight: 450;
  color: #444;
  font-size: 14px;
}

.mobile-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;

  gap: 0.5em;
}

.get-started-btn {
  padding: 0.5em 1em;
  background-color: #1a72b2;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 550;
  cursor: pointer;
  transition: 0.3s;
  width: 120px;
}

.get-started-btn a {
  color: #fff;
  text-decoration: none;
}

.learn-more a {
  color: #000000;
  text-decoration: none;
}

.learn-more a:hover {
  color: #ffffff;
  text-decoration: none;
}


.get-started-btn:hover {
  background-color: #073278;
  color: #fff;
}

.get-started-btn a:hover {
  color: #fff;
  text-decoration: none;
}

/* Hamburger Icon */
.menu-icon {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}


.hero {
  background-color: #1a72b2;
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px;
  height: 250px;
  text-align: center;
  justify-content: center;
}

.hero h1 {
  margin-bottom: 10px;
  font-size: 52px;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}

.hero p {
  font-size: 22px;
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
}

/* Review Form Section */
#review-form-section {
  padding: 40px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

#review-form-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

#reviewForm {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#reviewForm input,
#reviewForm select,
#reviewForm textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.3s;
}

#reviewForm input:focus,
#reviewForm select:focus,
#reviewForm textarea:focus {
  border-color: #4caf50;
  outline: none;
}

#reviewForm textarea {
  min-height: 100px;
  resize: vertical;
}

#reviewForm button {
  padding: 12px;
  background-color: #4caf50;
  color: white;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#reviewForm button:hover {
  background-color: #43a047;
}

#reviewResponse {
  margin-top: 15px;
  font-size: 1rem;
  color: #2e7d32;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 20px;
  }

  .navbar-menu {
    gap: 1em;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  #reviewForm {
    padding: 20px;
  }
}

@media (max-width: 768px) {

  .menu-toggle,
  .menu-icon {
    display: block;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-container {
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .navbar-right {
    display: none;
  }

  .hero {
    padding: 40px 20px;
    height: auto;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  #reviewForm {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .navbar-left img {
    height: 50px;
  }

  .get-started-btn {
    font-size: 13px;
    padding: 0.4em 0.8em;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  #reviewForm {
    padding: 15px;
    gap: 10px;
  }

  #reviewForm input,
  #reviewForm select,
  #reviewForm textarea {
    font-size: 0.95rem;
  }

  #reviewForm button {
    font-size: 0.95rem;
  }
}