html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  /* background-color: #fff; */
  color: #000;
  align-items: center;
  align-content: center;

}

.hero {
  height: auto;
  width: 100%;
  /* background: linear-gradient(180deg, #f1f1f1 0%, #f1f1f1 30%, rgba(255, 206, 0, 0.3) 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 30px;
  overflow: visible !important;
  z-index: 10000;

  /* background-color: #ffce00; */
}


.navbar {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* position: absolute; */
  top: 0;
  left: 0;
  z-index: 10000;
  /* ensure it's on top */
  align-self: center;
  overflow:visible;
  position: relative;

}




/* === Desktop Dropdown === */
.industries-nav {
  position: relative;
}

.industries-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  width: 300px;
    width: max-content;
  max-width: max-content;
  padding: 20px 30px;

  border-bottom: #ffce00 5px solid;
}

.industries-grid ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.industries-grid li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}


.industries-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industries-dropdown li {
  padding: 6px 0;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
    border: #fce792 1px solid;
  padding: 8px;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .industries-nav:hover .industries-dropdown {
    display: block;
  }
}

/* === Mobile Modal === */
.industries-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.industries-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  text-align: center;
}

.industries-modal-box ul {
  list-style: none;
  padding: 0;
}

.industries-modal-box li {  
  padding: 10px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
    border: #fce792 1px solid;
  padding: 8px;
  border-radius: 8px;
  
}

.industries-modal-box button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #ffce00;
  border: none;
  border-radius: 10px;
  font-weight: 600;
}



/* === Desktop Dropdown Grid === */
.features-nav {
  position: relative;
}

.features-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  width: max-content;
  max-width: 700px;
  padding: 20px 30px;
  border-bottom: #ffce00 5px solid;
}

.features-grid ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.features-grid li {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: normal;
  line-height: 1;
  border: #fce792 1px solid;
  padding: 8px;
  border-radius: 8px;
    /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1); */

}

.features-grid li span {
  font-weight: 400;
  color: #333;
}


.features-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.features-modal .industries-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  text-align: center;
}


@media (min-width: 992px) {
  .features-nav:hover .features-dropdown {
    display: block;
  }
}








.logo img {
  height: auto;
  width: 160px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-weight: 400;
  padding: 5px 0;
  transition: color 0.3s;

}


.nav-menu li a::before {
  content: '';
  position: absolute;
  top: -8px;
  /* shows line ABOVE the text */
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #ffce00;
  transition: width 0.3s ease-in-out;
}

.nav-menu li a:hover::before {
  width: 100%;
}

.nav-menu li a:hover {
  color: #000;
  /* keep text color black, or change if needed */
}




.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}










/* Group wrapper for Log In / Sign Up */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  
  /* 👈 creates gap between buttons */
}

.login-btn,
.signup-btn {
  padding: 8px 18px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;

}

.login-btn {
  display: inline-block;
  background-color: #e0e0df;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s ease;

}



.signup-btn {
  display: inline-block;
  background-color: #f9c700;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s ease;
}

.signup-btn:hover {
  background: #f9c700;
  color: #000;
}


@keyframes borderAnim {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.auth-buttons .signup-btn:hover {
  transform: scale(1.05);
}







@keyframes scroll-loop {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}





















































/*== responsive  Mobile==*/
/* === RESPONSIVE FOR TABLET & MOBILE === */
@media (max-width: 991px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  

  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
  }

  .nav-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 10px;
  }

  .auth-buttons {
    flex-direction: column;
    width: 100%;
  }

  .auth-buttons .login-btn,
  .auth-buttons .signup-btn,
  .btn.free-btn {
    width: 100%;
    text-align: center;
    border-radius: 30px;
  }
}




/* 🔽 Hamburger styles */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #000;
}

/* Show hamburger on small screens */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
    border-radius: 12px;
  }

  .nav-menu.show {
    display: flex;
  }
}


/* === MOBILE NAV MODAL === */
.mobile-nav-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-nav-content {
  background: #fff;
  width: 90%;
  max-width: 350px;
  margin: 60px auto;
  padding: 30px 20px;
  border-radius: 5px;
  position: relative;
  top: 10px;
}

.mobile-nav-content ul.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-content .nav-menu li a {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-nav-content .nav-menu li a:hover {
  background-color: #f9f9f9;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
}



/* Make Logo Left + Hamburger Right on mobile only */
@media (max-width: 991px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo {
    order: 1;
  }

  .hamburger {
    order: 2;
  }
}


@media (max-width: 991px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    height: 60px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #fff;
    padding: 15px 20px;
  }

  .logo {
    order: 1;
    /* ✅ Logo on the left */
  }

  .hamburger {
    order: 2;
    /* ✅ Hamburger on the right */
  }

  .nav-buttons {
    display: none !important;
    /* Hide Free Trial / Login / Signup */
  }


}


@media (max-width: 768px) {


  .navbar {
    margin-bottom: 0px;
  }

  body {
    overflow-x: hidden;
  }




}


@media (max-width: 768px) {









  .feature-carousel {
    width: 100%;
    display: flex;
    justify-content: center;
  }


}

/* arrpw on mobile */
@media (max-width: 768px) {
  .scroll-down-arrow {
    display: none !important;
  }
}


/* SOLUTIONS SECTION */

@media (max-width: 768px) {
  .solution-card {
    width: 90%;
  }

}





@media (max-width: 768px) {
  .screens-showcase-section {
    padding: 40px 20px;
    margin-top: 50px;
  }

  .screens-heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .screens-subtext {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .animated-screens {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen */
    overflow: hidden;
  }

  .screenshot {
    max-width: 100%;
    max-height: 100%;
  }

  .screens-buttons {
    gap: 12px;
    margin-top: 0;
    /* reduce gap between animation and buttons */
  }



  .screens-btn {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
}




@media (max-width: 768px) {
  .feature-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    /* ✅ Allow full image visibility */
  }

  .feature-image-container img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: unset !important;
    /* ✅ Remove forced scaling */
    display: block;
  }


}




@media (max-width: 768px) {

  /* Make Heading Smaller */
  .use-case-first-heading {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
  }

  /* Make Description Smaller */
  .use-case-first-description {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Stack Card Content Vertically */
  .use-case-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  /* Image Full Width on Top */
  .use-case-card-right {
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
  }

  .use-case-card-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    display: block;
  }

  /* Text Section Below Image */
  .use-case-card-left {
    width: 100%;
    padding: 0;
  }

  .use-case-card-left h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .use-case-card-left p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .use-case-card-left .btn.try-btn {
    font-size: 0.9rem;
    padding: 10px 20px;

  }

  .use-case-first-cards {
    gap: 20px;
    /* reduce gap on mobile */
  }
}

    .gradient-span {
      background: linear-gradient(90deg, #ff8d02, #ffcc01);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }



        .smarter {
      background: linear-gradient(90deg, #ffce00, #b18cef 50%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

/* pricing section */
@media (max-width: 768px) {
  .pricing-section {
    padding: 40px 20px;
    height: auto;
    border-radius: 16px;
  }

  .pricing-heading h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .pricing-heading p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .toggle-container {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .pricing-cards {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-card {
    max-width: 100%;
    padding: 24px 18px;
  }

  .pricing-card h3 {
    font-size: 1.2rem;
  }

  .pricing-card .price {
    font-size: 1.6rem;
  }

  .pricing-card p {
    font-size: 0.95rem;
  }

  .pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
  }
}



html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ===  Global Styles === */
.background-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.3s ease;
}



 





/* === INDUSTRIES PAGES === */

    body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }


    .retail-usecases {
      padding: 60px 20px;
      max-width: 80%;
      margin: auto;
      font-family: 'Poppins', sans-serif;
      width: 85%;
    }

    .retail-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .retail-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #111;
    }

    .retail-header p {
      font-size: 1.2rem;
      color: #555;
      margin-top: 12px;
    }

    .retail-card {
      display: flex;
      align-items: center;
      gap: 20px;
      background-color: rgba(255, 253, 253, 0.9);
      /* border: 1px solid #f4e5a9; */
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 30px;
      /* box-shadow: 0 5px 20px rgba(241, 216, 149, 0.2); */
      width: 100%;
    }

    .retail-card.reverse {
      flex-direction: row-reverse;
    }

    .card-img {
      width: 50%;
    }

    .card-img img {
      width: 100%;
      border-radius: 12px;
    }

    .card-text {
      width: 70%;

      flex-direction: column;
      justify-content: center;
    }

    .card-text h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .card-text p {
      font-size: 1rem;
      color: #333;
      margin-bottom: 10px;
    }

    .btn-yellow {
      display: inline-block;
      padding: 8px 18px;
      background-color: #ffce00;
      color: #000;
      border-radius: 30px;
      font-weight: 500;
      text-decoration: none;
    }

    .btn-yellow:hover {
      background-color: #e0b800;
    }

    @media (max-width: 768px) {

      body {
        background: none;

      }

      .retail-usecases {
        width: 100%;
        max-width: 100%;
      }

      .retail-card,
      .retail-card.reverse {
        flex-direction: column;
        text-align: center;
        width: 100%;
        border: #eedc8f 1px solid;
        box-shadow: 0px 5px 20px rgba(241, 216, 149, 0.5);
        background: rgba(255, 255, 255, 0.5);
      }



      .retail-header h2 {
        font-size: 1.7rem;
      }

      .retail-header p {
        font-size: 1rem;
        width: 90%;
      }

      .card-img {
        width: 60%;
        max-width: 100%;
      }


      .card-text {
        width: 100%;
      }


      .card-text h3 {
        font-size: 1.2rem;
      }

    }
 



