body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 22px 20px;
    border-radius: 40px;
    position: relative;
    width: 90%;
    margin: 40px auto;
  }
.active{
  color:#02D1D9;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.logo img {
  height: 24px;
  margin-right: 15px;
}

.logo .highlight {
  color: #00cfff;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #878787;
  font-weight: 500;
  font-size: 18px;
}
.navbar .active{
  color: #02D1D9;
}
.right-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.right-icons img {
  height: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.login {
  background-color: black;
  color: white;
}

.signup {
  background-color: transparent;
  border: 1px solid black;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.mobile-menu{
    display: none;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }
.mobile-right-icons img{
  width: 18px;
    height: 24px;
}
  .right-icons {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    display: block;
    top: 0;
    right: -350px;
    width: 250px;
    height: 100%;
    background-color: white;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav li {
    margin-bottom: 15px;
  }

  .mobile-nav a {
    text-decoration: none;
    color: #00cfff;
    font-size: 18px;
  }

  .mobile-right-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
mobile-right-icons img{
  width: 30px;
  height: 30px;
}
  .mobile-menu.open {
    right: 0px !important;
  }

  .close-btn {
    font-size: 30px;
    cursor: pointer;
  }
  .testimonial .boximg{
    left: 16px !important;
    bottom: 64px !important;
  }
  .testimonial .iconimg {
    position: relative;
    bottom: 24px;
    left: -65px;
}
.trusted-badge {
margin-top: 0px !important;
}
.testimonial {
        font-size: 16px;
        padding: 26px 10px;
    }
}
@media (max-width: 600px) {
.trusted-logos-section h2{
  font-size: 21px !important;
  margin-bottom: 15px !important;
}
.section-title{
  font-size: 32px !important;
}
.card{
  width: 80% !important;
}
.promo-content{
width: 80% !important;
}
.uhq-text h2{
  font-size: 32px !important;
}

.uhq-stats div h3 {
  font-size: 28px !important;
}
.uhq-stats{
  flex-direction: row !important;
  gap: 10;
}
.category-header .category-badge{
margin-bottom: -5px;
}
.platforms-header .platforms-badge{
  margin-bottom: -1px;
}
.platforms-grid{
  margin-top: -128px !important;
}
.platforms-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
  .platform-main {
   display: flex;
    width: 100% !important;
    flex-wrap: wrap;
    height: 227px;
    justify-content: space-between;
    margin: 292px 0px !important;
}
.newsletter-section{
      padding: 0px 20px !important;
}
.newsletter-text {
    flex: 1 1 168px !important;
}
.footer-bottom{
  padding: 10px 35px !important; 
}
.newsletter-container{
  flex-direction: row !important;
  padding-bottom: 12px !important;
}
.newsletter-form button{
  top: 215px !important;
  right: 32px !important;
}
.faq-section{
      padding: 16px 20px !important;
}
}







