:root {
  --primary-color: #2196F3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #051525;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.bg {
  background: linear-gradient(#B9E2FF, #ffffff);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#open {
  display: none;
}

.logo img {
  width: 35px;
  height: 35px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.788);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.logo .span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
}

.nav-links .active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  margin-top: 1px;
}

.auth-buttons .btn {
  margin-left: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
}

.sign-in {
  border: none;
  color: black;
  background-color: #fff;
  box-shadow: rgb(190, 188, 188) 1px 1px 1px;
}

.sign-up {
  background: var(--primary-color);
  color: #fff;
  box-shadow: #007bff 1px 1px 1px;
}

@media (max-width: 900px) {
  .responsive-head {
    display: flex;
    justify-content: space-between;
  }

  .auth-buttons {
    display: flex;
  }

  #open {
    display: flex;
  }

  .navbar #big {
    display: none;
  }

  #open {
    display: block;
    background: white;
    padding: 6px;
    border: 1px solid #CFDCE6;
    border-radius: 6px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.04);
    outline: none;
    font-size: 20px;
    cursor: pointer;
    color: #4F5D69;
  }

  .responsive {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 16px 20px;
    animation: slideDown 0.3s;
    overflow-y: hidden;
  }

  .responsive .links1 .active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    margin-top: 1px;
  }

  .responsive .links1 li {
    width: 100%;
    text-align: center;
  }

  .responsive.show {
    display: flex;
  }

  .responsive-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .auth-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .auth-buttons .btn {
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
  }

  .sign-in {
    color: #000;
    background-color: #fff;
    box-shadow: rgb(190, 188, 188) 1px 1px 1px;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }

  .sign-up {
    background: var(--primary-color);
    color: #fff;
    box-shadow: #007bff 1px 1px 1px;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }

  .logo a span {
    font-size: 20px;
  }

  .responsive ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .responsive ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
  }

  .responsive #close {
    background: none;
    padding: 5px;
    border-radius: 5px;
    font-size: 25px;
    cursor: pointer;
    color: #524f4f;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 50px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 span {
  color: var(--primary-color);
}

.hero-text h1 {
  font-size: 46px;
  line-height: 60px;
  padding-top: 20px;
  font-weight: bold;
}

.overline {
  background-color: #e9f5fe;
  border-radius: 30px;
  color: var(--primary-color);
  padding: 10px 20px 10px 20px;
  width: 193px;
  font-size: 12px;
  height: 16px;
  box-shadow: 0 0.5px;
}

.overline-dot {
  font-size: 50px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: inline-block;
  margin-right: 5px;
}

.hero-buttons {
  display: inline-block;
  margin-top: 20px;
}

.hero-buttons .btn {
  margin-right: 15px;
}

.mouse1 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  bottom: 10px;
  right: 30px;
}

.mouse-text {
  text-align: center;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}

.btn.primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: #007bff 1px 1px 1px;
}

.explorebtn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 7px;
}

.btn.secondary {
  background: #fff;
  border: none;
  color: black;
  box-shadow: rgb(185, 183, 183) 1px 1px 1px;
}

.btn.details {
  display: inline-block;
  margin-top: 10px;
  background: var(--primary-color);
  color: #fff;
}

.explore {
  padding: 50px;
  background: #f6fafd;
}

.explore-head h2 {
  text-align: center;
}

.explore-head p {
  text-align: center;
}

.search-box {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.search-box input {
  padding: 10px 40px 10px 35px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.search-box .lens {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  flex-shrink: 0;
}

.search-box .sliders {
  position: absolute;
  top: 50%;
  right: 77%;
  transform: translateY(-50%);
  cursor: pointer;
}

.search-box button {
  padding: 10px 15px;
  background: #ffff;
  color: #007bff;
  border: 1px solid #007bff;
  margin-left: 5px;
  border-radius: 5px;
}

.explore-below {
  display: none;
}

.explore-after button {
  padding: 10px 15px;
  color: #007bff;
  background: #f6fafd;
  border: 1px solid #007bff;
  margin-left: 5px;
  border-radius: 5px;
}

.business-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 100%;
}

.card .blue-tick {
  width: 24px;
  height: 24px;
  padding-top: 4px;
  margin-left: 5px;
}

.verify-text-img {
  display: flex;
  align-items: center;
  gap: 1px;
}

.card h3 {
  padding-left: 10px;
}

.card img {
  max-width: 100%;
  border-radius: 10px;
}

.card p {
  padding-left: 10px;
}

.card img {
  width: 400px;
  border-radius: 10px;
}

.rate-box {
  display: flex;
  justify-content: space-between;
}

.rate-box a {
  margin-right: 10px;
  text-align: center;
  margin-bottom: 10px;
  background: #007bff;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  text-decoration: none;
}

.rating {
  margin-left: 10px;
  margin-top: 10px;
}

.testimonials {
  background: #f6fafd;
  padding: 50px;
  text-align: center;
}

.testimonials h2 {
  margin-top: 15px;
  margin-bottom: 30px;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.t-card {
  flex: 0 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  font-size: 14px;
  display: flex;
  gap: 20px;
  text-align: left;
}

.names {
  display: flex;
  flex-direction: column;
}

.names .bold {
  font-weight: bold;
  margin-top: 6%;
}

.names .light {
  font-weight: lighter;
  font-size: 14px;
  color: #4F5D69;
}

@media (max-width: 1024px) {
  .t-card {
    width: 300px;
  }
}

.t-img img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.review p {
  font-weight: bold;
}

.review span {
  margin-top: 20px;
  display: inline-block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.how-it-works {
  padding-top: 40px;
  background: #ffff;
  text-align: center;
}

.how-it-works h2 {
  margin-top: 20px;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 30px;
}

.step-box {
  text-align: left;
}

.step-box-text {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step-box-text p {
  font-size: 15px;
  font-weight: 600;
}

.step-box-text img {
  width: 20px;
  height: 20px;
}

.step-box .flex {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

button {
  outline: none;
  border: none;
}

.btn-blue {
  background: #2196F3;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  width: 40%;
  text-align: center;
}

.btn-blue-second {
  background: #2196F3;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  width: 60%;
  text-align: center;
}

.btn-white-first {
  background: #fff;
  border: 0.5px solid #051525B2;
  color: black;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  width: 40%;
  text-align: center;
}

.btn-white-second {
  background: #fff;
  border: 0.5px solid #051525B2;
  color: black;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  text-decoration: none;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  width: 40%;
  text-align: center;
}

.num {
  display: inline-block;
  background: #dff0ff;
  color: var(--primary-color);
  padding: 5px 8px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: bold;
}

.step-buttons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer {
  background: #f3f4f6;
  padding: 40px 80px;
  margin-top: 3rem;
  text-align: start;
}

.footer-logo img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

footer .hubb {
  font-size: 19px;
}

.footer-logo .hub {
  color: #2196F3;
}

.footer-logo a {
  color: #000;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center !important;
  text-align: start;
  gap: 2rem;
}

.footer-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.links a {
  text-decoration: none;
  color: gray;
  font-size: 0.9rem;
}

.newsletter {
  max-width: 390px;
  text-align: start;
}

.newsletter p {
  color: gray;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.newsletter form {
  display: flex;
  gap: 0.5rem;
}

.newsletter input {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #d1d5db;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  font-size: 0.9rem;
  outline: none;
}

.newsletter button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

hr {
  font-weight: 500;
  margin-top: 50px;
  border: 1px solid #d1d5db;
}

.footer-icons {
  margin: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 1.2rem;
  color: gray;
}

.social-icons a:hover {
  color: #2196f3;
}

.social-icons a {
  color: gray;
}

.copyright {
  font-size: 0.85rem;
  color: gray;
}

@media (max-width: 992px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    margin: 15px 0;
  }

  .auth-buttons {
    margin-top: 10px;
  }

  .hero {
    flex-direction: column;
    text-align: left;
    padding: 10px 10px;
  }

  .hero-text {
    max-width: 80%;
    text-align: left;
    margin-bottom: 20px;
    align-items: left;
    justify-content: left;
    padding-left: 10px;
  }

  .hero-buttons {
    display: flex;
  }

  .hero-image img {
    margin-top: 20px;
    width: 80%;
  }

  .explore {
    padding: 30px 10px;
  }

  .explore-head h2 {
    width: 80%;
  }

  .explore-head p {
    width: 80%;
  }

  .search input {
    width: 80%;
  }

  .search-box .lens {
    position: absolute;
    top: 24%;
    left: 55px;
    transform: translateY(-50%);
    cursor: pointer;
    flex-shrink: 0;
  }

  .search-box .sliders {
    position: absolute;
    top: 24%;
    right: 65px;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .search-box button {
    display: none;
  }

  .search-box button {
    width: 50%;
    padding: 8px 3px;
  }

  .explorebtn {
    display: none;
  }

  .explore-below {
    display: block;
  }

  .explore-below a {
    padding: 7px 15px;
    display: block;
    width: fit-content;
    margin: auto;
    text-wrap: nowrap;
    font-size: 12px;
  }

  .business-cards {
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
  }

  .card {
    width: 80%;
    padding-left: 3px;
  }

  .card img {
    width: 80%;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
  }

  .step-box {
    width: 100%;
  }

  .flex p {
    font-size: 15px;
    line-height: 20px;
    width: 100%;
  }

  .links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .fa-star {
    color: #fbbf24;
    font-size: 12px;
  }

  .fa-star-half-stroke {
    color: #fbbf24;
    font-size: 12px;
  }

  .fa-xmark {
    color: #4F5D69;
    font-size: 20px;
  }

  .btn-blue {
    background: var(--primary-color);
    color: #fff;
    box-shadow: #007bff 1px 1px 1px;
    text-decoration: none;
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
  }

  .btn-white-first {
    background: #fff;
    border: 0.5px solid #051525B2;
    color: black;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    text-decoration: none;
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
  }

  .btn-blue-second {
    background: var(--primary-color);
    color: #fff;
    box-shadow: #007bff 1px 1px 1px;
    text-decoration: none;
    font-size: 12px;
    padding: 10px 8px;
    border-radius: 8px;
    width: 500px;
    text-align: center;
  }

  .btn-white-second {
    background: #fff;
    border: 0.5px solid #051525B2;
    color: black;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    text-decoration: none;
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
  }

  footer {
    flex-direction: column;
    max-width: 100%;
    background: #f3f4f6;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 2rem;
    text-align: start;
  }

  .newsletter p {
    color: gray;
    font-size: 14px;
    margin-bottom: 1.5rem;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-container .footer-main {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
  }

  .footer-container .footer-main .footer-logo a {
    margin: 0 0 10px;
  }

  footer form {
    flex-direction: column;
  }

  .newsletter input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .newsletter button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
  }

  .testimonials {
    padding: 40px 20px;
  }

  #big {
    display: none;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 10px 15px;
  }

  .nav-links {
    gap: 10px;
  }

  .hero-text h1 {
    font-size: 30px;
    line-height: 40px;
    width: 100%;
  }

  .hero-text p {
    font-size: 15px;
    margin-top: 10px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }

  #open {
    display: block;
  }

  #big {
    display: none;
  }

  .search-box {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .search-box input {
    width: 100%;
    max-width: 300px;
  }

  .search-box button {
    width: 100%;
    max-width: 300px;
  }

  .business-cards {
    gap: 15px;
  }

  .btn.details {
    font-size: 12px;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }

  .testimonial-cards {
    gap: 10px;
  }

  .testimonial .overline {
    margin-bottom: 20px;
  }

  .t-card {
    width: 250px;
    font-size: 12px;
    padding: 15px;
  }

  .t-img img {
    height: 40px;
    width: 40px;
  }

  .step-box h3 {
    font-size: 20px;
  }

  .subscribe input,
  .subscribe button {
    width: 100%;
    margin: 5px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 10px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-top: 20px;
  }

  .explore {
    padding: 30px 20px;
  }

  .explore-head h2 {
    margin: 0 auto;
    font-weight: 700;
  }

  .explore-head p {
    font-size: 15px;
    text-align: center;
    width: 100%;
  }

  .search-box {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
  }

  .search-box input,
  .search-box button {
    width: 100%;
    max-width: 350px;
  }

  .business-cards {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 15px;
  }

  .card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding-left: 0;
  }

  .card h3 {
    font-size: 15px;
  }

  .card p {
    font-size: 12px;
  }

  .card img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .step-box {
    width: 100%;
    padding: 10px;
  }

  .footer-top {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .subscribe input,
  .subscribe button {
    width: 100%;
    margin: 5px 0;
  }

  .bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer {
    padding: 40px 20px;
  }

  .how-it-works {
    padding: 40px 20px;
  }

  .testimonials {
    padding: 40px 20px;
  }
}

@media (max-width: 400px) {
  .btn {
    font-size: 14px;
    padding: 8px 10px;
  }

  .card {
    max-width: 95vw;
  }

  .search-box input,
  .search-box button {
    max-width: 95vw;
  }
}

.search {
  position: relative;
  width: 100%;
  max-width: 350px;
}

.search input {
  padding-left: 38px;
  padding-right: 38px;
  width: 100%;
  box-sizing: border-box;
}

.search .lens {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.search .sliders {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

@media (max-width: 600px) {
  .search {
    width: 100%;
    max-width: 100%;
  }

  .search input {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .search .lens,
  .search .sliders {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 400px) {
  .search input {
    font-size: 13px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .search .lens,
  .search .sliders {
    width: 14px;
    height: 14px;
  }
}