@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Baloo 2", sans-serif;

  /* overflow-x: hidden; */
}

:root {
  --main-color: #fff;
  --text-color: #333;
  --accent: #ffb800;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
  --body-bg: #f8f9fa;
  --primary-text: #1a1a1a;
  --secondary-text: #6c757d;
  --accent-color: #007bff; /* A nice, clean blue for accents */
  --border-color: #e5e7eb;
  --shadow-color: rgba(0, 0, 0, 0.05);
  --shadow-hover-color: rgba(0, 0, 0, 0.1);
  --text-primary: #212529;
  --text-secondary: #495057;
  --bg-light: #f1f3f5;
  --bg-white: #ffffff;
  --highlight-color: #f7b731;
  --divider-color: #ced4da;
}

.desktop-data {
  display: block !important;
}
.mobile-data {
  display: none !important;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: #fff;
}

/* Scroll to top button styles */
/* .scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: none;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top-btn:hover {
  background-color: white;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.scroll-top-btn.show {
  display: flex;
} */

.navbar a {
  text-decoration: none;
}

/* Base navbar styles with animations */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  height: 70px;
  background: var(--main-color);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  animation: slideDown 0.5s ease-out;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  height: 65px;
  border-bottom: none;
}

/* Logo with hover animation */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-logo img {
  /* height: 48px; */
  max-inline-size: 100%;
  object-fit: contain;
  animation: logoRotate 0.6s ease-out;
}

@keyframes logoRotate {
  from {
    transform: rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: rotate(0);
    opacity: 1;
  }
}

.navbar-logo span {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 1px;
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Navigation links with stagger animation */
.navbar-links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  animation: fadeInUp 0.5s ease-out backwards;
}

.navbar-links li:nth-child(1) {
  animation-delay: 0.1s;
}
.navbar-links li:nth-child(2) {
  animation-delay: 0.2s;
}
.navbar-links li:nth-child(3) {
  animation-delay: 0.3s;
}
.navbar-links li:nth-child(4) {
  animation-delay: 0.4s;
}
.navbar-links li:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: clamp(0.9rem, 1.8vw, 1.5rem);
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.navbar-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar-links li a:hover {
  color: var(--accent);
}

.navbar-links li a:hover::after {
  width: 100%;
}

/* Actions section */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.abtn, .demo-btn {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  border-radius: 8px;
  padding: 0.4em 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.abtn::before, .demo-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.abtn:hover, .demo-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.abtn:hover::before, .demo-btn:hover::before {
  width: 300px;
  height: 300px;
}

.navbar-links .demo-mobile {
  display: none;
}

/* ======================= Demo Request Modal Styles ================================= */

/* --- The Overlay --- */
.demo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent background scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* --- The Modal Content Box --- */
.demo-modal-content {
  display: flex;
  background: #f1f1f1;
  max-width: 900px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.demo-modal-overlay.active .demo-modal-content {
  opacity: 1;
  transform: scale(0.9);
}

/* --- Close Button --- */
.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  z-index: 10;
  padding: 5px;
  line-height: 1;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  color: #333;
  transform: rotate(90deg);
}

/* --- Left Side (Yellow) --- */
.modal-left {
  flex: 1;
  background: #edac00;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-left h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.modal-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.modal-left ul {
  list-style-type: none;
  padding: 0;
}

.modal-left li {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 25px;
  position: relative;
  margin-bottom: 20px;
}

.modal-left li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
}

/* --- Right Side (Form) --- */
.modal-right {
  flex: 1.2;
  padding: 40px;
  background: #f7f8fa;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #333;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #edac00;
  box-shadow: 0 0 0 3px rgba(237, 172, 0, 0.2);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #edac00;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #d49c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(237, 172, 0, 0.3);
}

/* ========================================================================================================== */
.language-link {
  color: #111111; /* A strong, dark color for the text */
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

/* Optional: Add an underline on hover for the language link */
.language-link:hover {
  text-decoration: underline;
}

.navbar-links .language-mobile {
  display: none;
}

/* =============================================================================== */

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Style when dropdown is open */
.custom-select-wrapper.open .custom-select-trigger {
  border-color: #edac00;
  box-shadow: 0 0 0 3px rgba(237, 172, 0, 0.2);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select-arrow {
  color: #888;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.custom-select-wrapper.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 20;
  max-height: 200px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Show options when open */
.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  border-color: #edac00;
}

.custom-option {
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 1rem;
}

.custom-option:hover {
  background-color: #f1f1f1;
}

/* Style for the currently selected option in the list */
.custom-option.selected {
  background-color: #555;
  color: #fff;
}

/* ==================================================Hamburger menu======================================== */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 101;
}

.navbar-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================COOKIES=================================== */
.cookie-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
  z-index: 9998; /* Below the banner, above everything else */

  /* Hide by default */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.cookie-consent-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-consent-banner {
  position: fixed;
  /* Centering the banner */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90%; /* Responsive width */
  max-width: 420px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;

  /* Hide by default, controlled by JS */
  opacity: 0;
  visibility: hidden;
  /* Animate a slight upward movement on appear */
  transform: translate(-50%, calc(-50% + 20px));
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.cookie-consent-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.cookie-consent-banner h2 {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 16px;
}

.cookie-consent-banner p {
  margin: 0;
  margin-bottom: 24px;
  color: #595959;
  font-size: 15px;
  line-height: 1.7;
}

.cookie-consent-banner p a {
  color: #595959;
  text-decoration: none;
  font-weight: 700;
}

.cookie-consent-banner p a:hover {
  text-decoration: underline;
}

.cookie-consent-banner .accept-cookies-btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  background-color: var(--accent); /* Vibrant Purple */
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px; /* Pill shape */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-consent-banner .accept-cookies-btn:hover {
  background-color: #edac00; /* Darker Purple */
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    padding: 24px;
  }
}

/* ===========================================Hero Section===================================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 5vw 40px 3vw;
  min-height: 80vh;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
  gap: 2rem;
}

/* Animated background elements */
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 184, 0, 0.03) 0%,
    transparent 70%
  );
  animation: backgroundFloat 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-30px, -30px) rotate(1deg);
  }
  66% {
    transform: translate(30px, -20px) rotate(-1deg);
  }
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-badge {
  display: inline-block;
  width: 280px;
  background: #ededed;
  color: #222;
  font-weight: 500;
  border-radius: 8px;
  padding: 0px 15px;
  font-size: clamp(12px, 1.5vw, 14px);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  animation: fadeInDown 0.8s ease-out 0.2s both;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes fadeInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.badge-icon {
  color: #ffb800;
  font-size: 1.2em;
  margin-left: 4px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.15;
  color: #181818;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight {
  color: #ffb800;
  font-weight: 700;
  position: relative;
  animation: highlightGlow 3s ease-in-out infinite;
}

@keyframes highlightGlow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 184, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.6);
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn {
  background: linear-gradient(135deg, #ffb800 0%, #ff9500 100%);
  color: #fff;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  border: none;
  width: clamp(200px, 2vw, 300px);
  border-radius: 12px;
  padding: 15px 30px;
  cursor: pointer;
  /* border-bottom: 20px; */
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 13px 0px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-btn span {
  position: relative;
  z-index: 2;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #e6a700 0%, #e68900 100%);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 13px 0px;
  transform: translateY(-2px);
}

.hero-btn:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.hero-btn:active {
  transform: translateY(0);
}

.hero-image {
  position: relative;
  flex: 1 1 0;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.pos-img {
  width: 100%;
  max-width: 90vw;
  z-index: 2;
  position: relative;
  animation: floatImage 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Floating elements */
.floating-element {
  position: absolute;
  background: linear-gradient(135deg, #ffb800, #ff9500);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.element-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 10%;
  animation: float1 8s ease-in-out infinite;
}

.element-2 {
  width: 40px;
  height: 40px;
  top: 70%;
  right: 20%;
  animation: float2 10s ease-in-out infinite;
}

.element-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 5%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-40px, -40px) rotate(180deg);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-30px, -20px) rotate(180deg);
  }
  75% {
    transform: translate(30px, 30px) rotate(270deg);
  }
}

/* Lightning animations (keeping your existing ones) */
.lightning {
  position: absolute;
  width: 70px;
  height: auto;
  z-index: 1;
  opacity: 0.85;
  animation: flicker 2s infinite alternate;
}

.lightning-1 {
  top: 10%;
  left: 10%;
  transform: rotate(-20deg);
}
.lightning-2 {
  top: 0;
  right: 18%;
  width: 90px;
  transform: rotate(10deg);
}
.lightning-3 {
  bottom: 18%;
  left: 0;
  width: 60px;
  transform: rotate(15deg);
}
.lightning-4 {
  bottom: 10%;
  right: 10%;
  width: 60px;
  transform: rotate(-10deg);
}
.lightning-5 {
  top: 50%;
  right: 0;
  width: 50px;
  transform: rotate(25deg);
}

@keyframes flicker {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}

/* =====================================Hardware Section===================================================== */
.hardware-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  padding: 4rem 5vw;
  background: linear-gradient(135deg, #f7f8fa 0%, #f0f2f5 100%);
  justify-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.hardware-cards::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 184, 0, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 184, 0, 0.03) 0%,
      transparent 50%
    );
  animation: backgroundMove 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes backgroundMove {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-20px, -30px) rotate(1deg);
  }
  66% {
    transform: translate(20px, -20px) rotate(-1deg);
  }
}

.hardware-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 2.2rem 1.2rem 2.2rem 1.2rem/1.2rem 2.2rem 1.2rem 2.2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 13px 0px;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 370px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  animation: cardSlideIn 0.8s ease-out forwards;
} 

.hardware-card:nth-child(1) {
  animation-delay: 0.1s;
}
.hardware-card:nth-child(2) {
  animation-delay: 0.3s;
}
.hardware-card:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .hardware-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #ffe9b0 0%, #fffbe6 100%);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.4s ease;
} */

/* Glow effect */
/* .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 184, 0, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
  z-index: 0;
} */

.hardware-card:hover {
  box-shadow: 0 20px 60px 0 rgba(255, 184, 0, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-15px) scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 13px 0px;
  /* border-color: rgba(255, 184, 0, 0.2); */
}

.hardware-card:hover::before {
  opacity: 0.25;
  transform: scale(1.1);
}

.hardware-card:hover .card-glow {
  opacity: 1;
}

.hardware-card__icon {
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  z-index: 2;
  background: linear-gradient(135deg, #fffbe6 0%, #ffe9b0 100%);
  border-radius: 1.5rem;
  padding: 1.2rem 2.2rem;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hardware-card__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.hardware-card:hover .hardware-card__icon {
  /* box-shadow: 0 12px 40px rgba(255, 184, 0, 0.25); */
  transform: translateY(-5px) scale(1.05);
}

.hardware-card:hover .hardware-card__icon::before {
  left: 100%;
}

.hardware-card__icon img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: all 0.4s ease;
  animation: iconFloat 4s ease-in-out infinite;
  z-index: 999;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hardware-card:hover .hardware-card__icon img {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
}

.hardware-card__content h1 {
  font-size: 25px;
}
.hardware-card__content h2 {
  font-size: 20px;
  font-weight: 500;
}

.hardware-card__content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  color: #181818;
  z-index: 2;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.hardware-card__content h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffb800, #ff9500);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.hardware-card__content:hover h3 {
  color: #ffb800;
  transform: translateY(-2px);
}

.hardware-card__content:hover h3::after {
  width: 100%;
}

.hardware-card__desc {
  color: #555;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  margin-bottom: 2.2rem;
  text-align: left;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.hardware-card:hover .hardware-card__desc {
  color: #333;
  transform: translateY(-2px);
}

.hardware-card__price a button {
  margin-left:5px;
  margin-right:5px;
}

.hardware-card__price a button {
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 8px;
  border: none;
  background-color: var(--accent);
  border-radius: 10px;
  color: #ffffff;
  z-index: 2;
  margin-top: 15px;
  margin-bottom: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hardware-card__price a button:hover,
.hardware-card__price a button:focus-visible {
  background-color: #e6a700;
}

.price-main {
  position: relative;
  transition: all 0.3s ease;
}

.hardware-card:hover .price-main {
  color: #ffb800;
  transform: scale(1.05);
}

.hardware-card__price .sub {
  font-weight: 400;
  color: #ffb800;
  margin-left: 0.3em;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.hardware-card:hover .sub {
  opacity: 1;
  transform: translateX(5px);
}

.hardware-card__price {
  display: flex;
  justify-content: center;
}

.hardware-card__price button {
  padding: 5px;
}

/* =================================  Promotion  ======================================== */

.info-section {
  margin: 40px 60px;
  border-radius: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  max-width: 1800px;
  gap: 40px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

.foodsted-info-section {
  background: linear-gradient(135deg, #323234 0%, #2a2a2c 50%, #323234 100%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  animation: sectionSlideIn 1s ease-out 0.2s forwards;
}

.foodstedpos-info-section {
  background: linear-gradient(135deg, #f2f2f2 0%, #e5e5e5 50%, #f2f2f2 100%);
  /* box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15); */
  animation: sectionSlideIn 1s ease-out 0.2s forwards;
}

@keyframes sectionSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated background elements */
.bg-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.1),
    rgba(255, 193, 7, 0.05)
  );
  z-index: 0;
}

.bg-element-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.bg-element-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: -75px;
  animation: float2 10s ease-in-out infinite reverse;
}

.bg-element-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 30%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-30px, 30px) rotate(120deg);
  }
  66% {
    transform: translate(30px, -20px) rotate(240deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(40px, -40px) rotate(180deg);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(1.2);
  }
}

.foodsted-left {
  flex: 1.2;
  color: #fff;
  padding-left: 20px;
  z-index: 2;
  position: relative;
}

.foodsted-left h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeInLeft 0.8s ease-out 0.4s both;
  position: relative;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.highlight-text {
  color: #ffc107;
  font-weight: 700;
  position: relative;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.8),
      0 0 30px rgba(255, 193, 7, 0.6);
  }
}

.foodsted-left p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  animation: fadeInLeft 0.8s ease-out 0.6s both;
  opacity: 0.9;
}

.foodsted-buttons {
  display: flex;
  gap: 24px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 40px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 1;
}

.btn-yellow {
  border: 2px solid #ffc107;
  color: #ffc107;
  background: transparent;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.btn-yellow .btn-ripple {
  background: #ffc107;
}

.btn-yellow:hover {
  background: #ffc107;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-yellow:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.btn-white {
  background: #fff;
  color: #222;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-white .btn-ripple {
  background: rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-white:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: translateY(-1px);
}

.foodsted-right {
  flex: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

.image-container {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.5s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo {
  width: clamp(450px, 35vw, 700px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: logoFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.2) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

.info-section:hover .logo {
  transform: scale(1.05);
}

/* ==================================== FEATURES HORIZONTAL ====================================== */
.features-horizontal {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.features-bg-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(237, 172, 0, 0.05),
    rgba(237, 172, 0, 0.02)
  );
  z-index: 0;
}

.bg-element-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation: floatBg1 15s ease-in-out infinite;
}

.bg-element-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  animation: floatBg2 20s ease-in-out infinite reverse;
}

@keyframes floatBg1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(50px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 50px) rotate(240deg);
  }
}

@keyframes floatBg2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-40px, -40px) rotate(180deg);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: clamp(280px, 30vw, 350px);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  animation: featureSlideIn 0.8s ease-out forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.3s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes featureSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(237, 172, 0, 0.05) 0%,
    transparent 50%
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
} */

.feature-item:hover {
  transform: translateY(-10px) scale(1.02);
  /* box-shadow: 0 15px 40px rgba(237, 172, 0, 0.15); */
  background: rgba(255, 255, 255, 0.95);
}

.feature-item:hover::before {
  opacity: 1;
}

.icon-circle {
  background: linear-gradient(135deg, #edac00 0%, #d49c00 100%);
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 4px 15px rgba(237, 172, 0, 0.3); */
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
}

.feature-item:hover .icon-circle {
  transform: translateY(-5px) scale(1.1);
  /* box-shadow: 0 8px 25px rgba(237, 172, 0, 0.4); */
}

.feature-item:hover .icon-glow {
  transform: translate(-50%, -50%) scale(1);
}

.icon-circle i {
  color: #000;
  font-size: 30px;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.feature-item:hover .icon-circle i {
  color: #fff;
  transform: scale(1.1);
}

.feature-content {
  flex: 1;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-content {
  transform: translateX(5px);
}

.feature-content h3 {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  color: #edac00;
  margin: 0 0 12px;
  transition: all 0.3s ease;
  position: relative;
}

.feature-content h3::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #edac00, #d49c00);
  transition: width 0.4s ease;
}

.feature-item:hover .feature-content h3 {
  color: #d49c00;
}

.feature-item:hover .feature-content h3::after {
  width: 100%;
}

.feature-content p {
  font-size: clamp(14px, 1.5vw, 15px);
  color: #333;
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-content p {
  color: #222;
}

/* ===========================================About US=====================================  */

.about-section {
  padding: 6rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background elements
.about-bg-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 184, 0, 0.03),
    rgba(255, 184, 0, 0.01)
  );
  z-index: 0;
}

.bg-element-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  animation: floatBg1 20s ease-in-out infinite;
}

.bg-element-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation: floatBg2 25s ease-in-out infinite reverse;
}

.bg-element-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation: floatBg3 30s ease-in-out infinite;
}

@keyframes floatBg1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-50px, 50px) rotate(120deg);
  }
  66% {
    transform: translate(50px, -30px) rotate(240deg);
  }
}

@keyframes floatBg2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(60px, -60px) rotate(180deg);
  }
}

@keyframes floatBg3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.2);
  }
} */

.about-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.heading-line {
  display: block;
  margin-bottom: 0.5rem;
}

.highlight {
  color: var(--highlight-color, #ffb800);
  position: relative;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.6),
      0 0 30px rgba(255, 184, 0, 0.4);
  }
}

.divider {
  width: 60px;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scaleX(0);
  animation: dividerExpand 0.8s ease-out 0.6s forwards;
}

@keyframes dividerExpand {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.divider-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--divider-color, #ffb800), #ff9500);
  transform: translateX(-100%);
  animation: dividerFill 1s ease-out 1s forwards;
}

@keyframes dividerFill {
  to {
    transform: translateX(0);
  }
}

.info-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 13px 0px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
  animation: boxSlideIn 0.8s ease-out forwards;
}

.info-box:nth-child(3) {
  animation-delay: 0.8s;
}
.info-box:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes boxSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 184, 0, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
} */

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px 0px;
  background: rgba(255, 255, 255, 0.95);
}

.info-box:hover::before {
  opacity: 1;
}

.info-box-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffb800, #ff9500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  /* box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3); */
  transition: all 0.4s ease;
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.info-box:hover .info-box-icon {
  transform: translateY(-5px) scale(1.1);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); */
}

.info-box-icon i {
  color: #fff;
  font-size: 24px;
}

/* .info-box-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 184, 0, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  z-index: -1;
} */

.info-box:hover .info-box-glow {
  transform: translate(-50%, -50%) scale(1);
}

.info-box h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}

.info-box h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffb800, #ff9500);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.info-box:hover h3 {
  color: #ffb800;
}

.info-box:hover h3::after {
  width: 100%;
}

.info-box p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-secondary, #555);
  margin: 0;
  text-align: left;
  transition: color 0.3s ease;
}

.info-box:hover p {
  color: #333;
}

.info-box p .highlight {
  font-weight: 600;
  background: linear-gradient(135deg, #ffb800, #ff9500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* ==================================== Feature Section ======================================*/

.feature-sections {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
  gap: 2rem;
}

/* Animated background decorations */
/* .features-bg-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 184, 0, 0.02),
    rgba(255, 184, 0, 0.01)
  );
  z-index: 0;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation: decorationFloat1 20s ease-in-out infinite;
}

.decoration-2 {
  width: 250px;
  height: 250px;
  bottom: -125px;
  right: -125px;
  animation: decorationFloat2 25s ease-in-out infinite reverse;
}

@keyframes decorationFloat1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(50px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 50px) rotate(240deg);
  }
}

@keyframes decorationFloat2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-40px, -40px) rotate(180deg);
  }
} */

.feature {
  width: clamp(120px, 15vw, 180px);
  color: #555;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: featureSlideIn 0.8s ease-out forwards;
  cursor: pointer;
}

.feature:nth-child(1) {
  animation-delay: 0.1s;
}
.feature:nth-child(2) {
  animation-delay: 0.2s;
}
.feature:nth-child(3) {
  animation-delay: 0.3s;
}
.feature:nth-child(4) {
  animation-delay: 0.4s;
}
.feature:nth-child(5) {
  animation-delay: 0.5s;
}
.feature:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes featureSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature:hover {
  transform: translateY(-10px) scale(1.05);
  /* color: #333; */
}

.feature-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.feature i {
  display: block;
  font-size: clamp(40px, 6vw, 60px);
  margin-bottom: 0;
  color: #999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  animation: iconFloat 4s ease-in-out infinite;
}

.feature i:hover {
  color: var(--accent);
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 1;
}

.feature:hover .feature i {
  color: #ffb800;
  transform: scale(1.2) rotate(5deg);
  text-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
}

.feature:hover .icon-ripple {
  width: 100px;
  height: 100px;
  opacity: 1;
}

.feature p {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1.3;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
}

.feature p strong {
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.feature p strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffb800, #ff9500);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.feature:hover p strong {
  color: #ffb800;
}

.feature:hover p strong::after {
  width: 100%;
}

.feature:hover p {
  color: #222;
  transform: translateY(-2px);
}

.feature:hover .feature-icon-wrapper i {
  color: #ffb800;
  transform: scale(1.2) rotate(5deg);
  /* text-shadow: 0 5px 15px rgba(255, 184, 0, 0.3); */
}

/* Stagger animation on section load */
.feature-sections.animate .feature {
  animation: featureSlideIn 0.8s ease-out forwards;
}

/* ================== Foodsted Promotion Section ============*/

.foodsted-promotion {
  margin: 10px 45px 90px;
  /* background: linear-gradient(
    135deg,
    var(--accent, #ffb800) 0%,
    #ff9500 50%,
    var(--accent, #ffb800) 100%
  ); */
  background: var(--accent);
  border-radius: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3);
  gap: 40px;
  position: relative;
  /* overflow: hidden; */
  opacity: 0;
  transform: translateY(50px);
  animation: promotionSlideIn 1s ease-out 0.2s forwards;
}

@keyframes promotionSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated background elements */
.promo-bg-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  z-index: 0;
}

.bg-element-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation: promoBgFloat1 20s ease-in-out infinite;
}

.bg-element-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation: promoBgFloat2 25s ease-in-out infinite reverse;
}

.bg-element-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 30%;
  animation: promoBgFloat3 30s ease-in-out infinite;
}

@keyframes promoBgFloat1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-40px, 40px) rotate(120deg);
  }
  66% {
    transform: translate(40px, -30px) rotate(240deg);
  }
}

@keyframes promoBgFloat2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(50px, -50px) rotate(180deg);
  }
}

@keyframes promoBgFloat3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.2);
  }
}

.promotion-left {
  flex: 1.2;
  color: #fff;
  padding-left: 20px;
  z-index: 2;
  position: relative;
}

.promotion-left h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -1px;
  position: relative;
  animation: fadeInLeft 0.8s ease-out 0.4s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.qr-code-section {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qr-wrapper {
  position: relative;
  display: inline-block;
}

.qr-code {
  height: 80px;
  width: 80px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: qrFloat 4s ease-in-out infinite;
}

@keyframes qrFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

.qr-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
}

.qr-wrapper:hover .qr-code {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.qr-wrapper:hover .qr-glow {
  transform: translate(-50%, -50%) scale(1);
}

.qr-code-section p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.app-images {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.app-link {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
}

.app-link img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.app-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.app-link:hover {
  transform: translateY(-5px) scale(1.05);
}

.app-link:hover img {
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

.app-link:hover .app-ripple {
  width: 100px;
  height: 100px;
}

.app-link:active {
  transform: translateY(-2px) scale(1.02);
}

.promotion-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.img-container {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.5s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.img-container img {
  width: clamp(250px, 35vw, 450px);
  height: auto;
  object-fit: contain;
  position: relative;
  top: -40px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
  animation: phoneFloat 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

/* .phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: phoneGlow 4s ease-in-out infinite;
  z-index: -1;
} */

/* @keyframes phoneGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

.img-container:hover img {
  transform: scale(1.05) rotate(-2deg);
} */

/* ================================================ Footer ============================================= */

.footer {
  display: flex;
  width: 100%;
  padding: 60px 40px 40px;
  gap: 3rem;
  background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 50%, #e8e8e8 100%);
  position: relative;
  overflow: hidden;
  animation: footerSlideIn 1s ease-out;
}

@keyframes footerSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated background elements */
.footer-bg-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(237, 172, 0, 0.05),
    rgba(237, 172, 0, 0.02)
  );
  z-index: 0;
}

.bg-element-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
  animation: footerFloat1 15s ease-in-out infinite;
}

.bg-element-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: -75px;
  animation: footerFloat2 20s ease-in-out infinite reverse;
}

@keyframes footerFloat1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-30px, 30px) rotate(120deg);
  }
  66% {
    transform: translate(30px, -20px) rotate(240deg);
  }
}

@keyframes footerFloat2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(40px, -40px) rotate(180deg);
  }
}

.footer-items {
  flex: 1;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: itemSlideIn 0.8s ease-out forwards;
}

.footer-items:nth-child(1) {
  animation-delay: 0.2s;
}
.footer-items:nth-child(2) {
  animation-delay: 0.4s;
}
.footer-items:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes itemSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-footer-item {
  flex: 1.5;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* .footer-logo:hover {
  transform: scale(1.05);
} */

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
  /* animation: logoRotate 0.8s ease-out; */
}

@keyframes logoRotate {
  from {
    transform: rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: rotate(0);
    opacity: 1;
  }
}
/* 
.footer-logo:hover img {
  transform: scale(2);
} */

.footer-logo h2 {
  font-weight: 600;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text-color);
  margin: 0;
  transition: all 0.3s ease;
  /* background: linear-gradient(135deg, #333, #edac00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.footer-para {
  width: 85%;
  font-size: clamp(16px, 2vw, 20px);
  margin: 0 0 25px 0;
  color: #444;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-para:hover {
  color: #222;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ccc, #ddd);
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(237, 172, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #edac00, #d49c00);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(237, 172, 0, 0.4);
  color: #fff;
}

.social-link:hover .social-ripple {
  width: 100px;
  height: 100px;
}

.social-link i {
  font-size: 18px;
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.2);
}

.footer-heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #333;
  margin: 0 0 25px 0;
  position: relative;
  transition: color 0.3s ease;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #edac00, #d49c00);
  transition: width 0.4s ease;
}

.footer-items:hover .footer-heading {
  color: #edac00;
}

/* .footer-items:hover .footer-heading::after {
  width: 60px;
} */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(10px);
}

.footer-link {
  font-size: clamp(16px, 2vw, 20px);
  text-decoration: none;
  line-height: 1.8;
  color: #555;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #edac00, #d49c00);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #edac00;
  transform: translateX(5px);
}

.footer-link:hover::before {
  width: 100%;
}

.copyright-section {
  position: relative;
  overflow: hidden;
}

.copyright {
  background: var(--accent);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #222;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 2;
  animation: copyrightSlideIn 1s ease-out 0.8s both;
}

@keyframes copyrightSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.copyright-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  animation: decorationSlide 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes decorationSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Button styling */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999;
}
.scroll-to-top.show {
  display: block;
}

/* =======================================Animation Section ======================================= */
.animated-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animated-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animated-section:nth-of-type(2) {
  transition-delay: 0.2s;
}
.animated-section:nth-of-type(3) {
  transition-delay: 0.4s;
}

.animated-section:nth-of-type(4) {
  transition-delay: 0.6s;
}

.animated-section:nth-of-type(5) {
  transition-delay: 0.8s;
}

.animated-section:nth-of-type(6) {
  transition-delay: 1s;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 2rem;
  }
  .hardware-cards {
    gap: 2rem;
    padding: 3rem 4vw;
  }

  .info-section {
    margin: 30px 40px;
    padding: 50px 30px;
    gap: 30px;
  }
  .features-horizontal {
    gap: 30px;
    padding: 70px 20px;
  }

  .feature-item {
    width: clamp(260px, 45vw, 320px);
    padding: 25px 20px;
  }

  .feature-sections {
    padding: 70px 20px;
    gap: 1.5rem;
  }

  .feature {
    width: clamp(110px, 20vw, 160px);
  }
  .foodsted-promotion {
    margin: 0px 30px 70px;
    padding: 20px 30px;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0 1.5rem;
  }

  .navbar-links {
    gap: 1.5rem;
  }

  .hero {
    padding: 100px 4vw 40px 4vw;
    gap: 1.5rem;
  }

  .hero-badge {
    width: auto;
    max-width: 100%;
  }

  .about-section {
    padding: 5rem 1.2rem;
  }

  .hardware-cards {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .hardware-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    width: 100%;
    padding: 1.2rem 0.8rem;
    border-radius: 1.2rem;
    min-height: unset;
  }

  .hardware-card__icon {
    margin: 0 1.5rem 0 0;
    padding: 0.8rem 1.2rem;
    min-width: 160px;
    min-height: 160px;
    width: 120px;
    height: 120px;
    border-radius: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hardware-card__icon img {
    width: 120px;
    height: 120px;
  }

  .hardware-card__content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hardware-card__content h3,
  .hardware-card__content .hardware-card__desc,
  .hardware-card__content .hardware-card__price {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .hardware-card__content h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
  }

  .hardware-card__content .hardware-card__desc {
    margin-bottom: 1.2rem;
  }

  .hardware-card__content .hardware-card__price {
    margin-top: 0;
    margin-bottom: 0;
  }

  .features-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 5vw;
  }
  .feature-item {
    width: 100%;
    /* max-width: 500px; */
    min-width: 0;
    flex-direction: row;
    justify-content: flex-start;
    padding: 24px 16px;
    gap: 28px;
  }

  .btn {
    padding: 10px 20px;
  }

  .info-box {
    padding: 2.5rem;
  }

  .footer {
    padding: 50px 30px 30px;
    gap: 2rem;
  }

  .footer-para {
    width: 90%;
  }

  .hardware-card__price {
    display: flex;
    justify-content: flex-start;
  }
}

@media (max-width: 908px) {
  .desktop-data {
    display: none !important;
  }
  .mobile-data {
    display: block !important;
  }
  .info-section {
    flex-direction: column;
    text-align: center;
    margin: 20px 20px;
    padding: 40px 25px;
    gap: 30px;
    border-radius: 32px;
  }

  .foodsted-left {
    flex: none;
    padding-left: 0;
  }

  .foodsted-left h1 {
    margin-bottom: 20px;
  }

  .foodsted-left p {
    margin-bottom: 30px;
  }

  .foodsted-buttons {
    width: 100%;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .btn {
    width: 150px;
    padding: 10px 22px;
  }

  .foodsted-right {
    flex: none;
  }

  .logo {
    max-width: 300px;
  }
}

@media (max-width: 875px) {
  .navbar {
    padding: 0 1rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--main-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* padding-top: 3rem; */
    /* gap: 2rem; */
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .language-toggle {
    position: fixed;
    top: 120%;
    right: 10px;
  }

  .navbar-links.active {
    left: 0;
  }

  .navbar-links li {
    width: 100%;
    text-align: center;
    margin-bottom: -20px;
  }

  .navbar-links li a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .navbar-links li a::after {
    bottom: 0.5rem;
  }

  .navbar-actions {
    gap: 0.8rem;
  }

  .abtn, .demo-btn {
    padding: 0.3em 0.8em;
  }

  .navbar-actions .abtn, .navbar-actions .demo-btn {
    display: none; /* hide desktop version */
  }

  .navbar-actions .language-link {
    display: none;
  }

  .navbar-links .demo-mobile {
    display: block; /* show mobile version */
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  .navbar-links .demo-mobile .abtn, .navbar-links .demo-mobile .demo-btn {
    width: 20%;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    min-width: 190px;
  }

  .navbar-links .language-mobile {
    display: block; /* Show mobile version */
    width: 100%;
    text-align: center;
    font-weight: bold;
  }

  .hardware-card__price {
    display: flex;
    justify-content: flex-start;
  }

  .foodsted-buttons button {
    /* padding: 100vmin; */
    padding-block: 10px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--main-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* padding-top: 3rem; */
    /* gap: 2rem; */
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .language-toggle {
    position: fixed;
    top: 120%;
    right: 10px;
  }

  .navbar-links.active {
    left: 0;
  }

  .navbar-links li {
    width: 100%;
    text-align: center;
    margin-bottom: -20px;
  }

  .navbar-links li a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .navbar-links li a::after {
    bottom: 0.5rem;
  }

  .navbar-actions {
    gap: 0.8rem;
  }

  .abtn, .demo-btn {
    padding: 0.3em 0.8em;
  }

  .navbar-actions .abtn, .navbar-actions .demo-btn {
    display: none; /* hide desktop version */
  }

  .navbar-links .demo-mobile {
    display: block; /* show mobile version */
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  .navbar-links .demo-mobile .abtn,
  .navbar-links .demo-mobile .demo-btn {
    width: 20%;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 90px 3vw 30px 3vw;
    min-height: auto;
    gap: 2rem;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-image {
    order: 2;
    min-width: auto;
    width: 100%;
  }

  .hero-btn {
    width: auto;
    min-width: 200px;
  }

  .pos-img {
    max-width: 65%;
  }
  .hardware-card {
    padding: 1rem 0.5rem;
  }
  .hardware-card__icon {
    margin-right: 1rem;
    min-width: 140px;
    min-height: 140px;
    width: 80px;
    height: 80px;
    padding: 0.5rem 0.8rem;
  }
  .hardware-card__icon img {
    width: 120px;
    height: 120px;
  }
  .hardware-card__content h3 {
    font-size: 1.1rem;
  }
  .hardware-card__content .hardware-card__desc {
    font-size: 0.98rem;
  }
  .hardware-card__content .hardware-card__price {
    font-size: 1rem;
  }

  .features-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 60px 20px;
  }

  .feature-item {
    width: 100%;
    /* max-width: 400px; */
    padding: 25px 20px;
  }

  .icon-circle {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }

  .icon-circle i {
    font-size: 26px;
  }
  .about-section {
    padding: 4rem 1rem;
  }

  .about-container {
    max-width: 100%;
  }

  .info-box {
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 20px;
  }

  .info-box-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .info-box-icon i {
    font-size: 20px;
  }

  .divider {
    margin-bottom: 2.5rem;
  }

  .feature-sections {
    padding: 60px 15px;
    gap: 2rem;
    justify-content: center;
  }

  .feature {
    width: clamp(100px, 25vw, 140px);
    margin-bottom: 1rem;
  }

  .feature-icon-wrapper {
    margin-bottom: 12px;
  }

  /* Foodested Promotion Section */
  .foodsted-promotion {
    flex-direction: column;
    text-align: center;
    margin: 0px 20px 50px;
    padding: 40px 25px;
    gap: 30px;
    border-radius: 32px;
  }

  .promotion-left {
    flex: none;
    padding-left: 0;
  }

  .qr-code-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .qr-code {
    height: 100px;
    width: 100px;
  }

  .app-images {
    justify-content: center;
    flex-wrap: wrap;
  }

  .promotion-right {
    flex: none;
  }

  .img-container img {
    top: 0;
  }

  .footer {
    flex-direction: column;
    padding: 40px 20px 30px;
    gap: 2.5rem;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-items {
    flex: none;
  }

  .main-footer-item {
    flex: none;
    text-align: center;
  }

  .footer-para {
    width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-heading {
    text-align: center;
  }

  .demo-modal-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-left,
  .modal-right {
    flex: none;
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .feature-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 50px 15px;
  }

  .feature {
    width: 100%;
  }
}
@media (max-width: 545px) {
  .hardware-cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 4rem 5vw;
    /* These are your desktop values */
  }

  .hardware-card {
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    min-height: 480px;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 2.2rem 1.2rem 2.2rem 1.2rem/1.2rem 2.2rem 1.2rem 2.2rem;
    /* These are your desktop values */
  }

  .hardware-card__icon {
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    padding: 1.2rem 2.2rem;
    min-width: unset;
    min-height: unset;
    width: 180px;
    height: 180px;
    border-radius: 1.5rem;
  }

  .hardware-card__icon img {
    width: 170px;
    height: 170px;
  }

  .hardware-card__content h3,
  .hardware-card__content .hardware-card__desc,
  .hardware-card__content .hardware-card__price {
    text-align: center;
  }

  .hardware-card__price {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .navbar {
    height: 60px;
  }

  .navbar-links {
    top: 60px;
    height: 100vh;
  }

  .navbar-logo img {
    height: 40px;
    width: 40px;
  }

  .navbar-logo span {
    font-size: 1.1rem;
  }

  .lang-select span {
    display: none;
  }

  .abtn, .demo-btn {
    font-size: 0.9rem;
  }

  .hero {
    padding: 80px 2vw 20px 2vw;
  }

  .hero-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .hero h1 {
    margin-bottom: 16px;
  }

  .hero p {
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 12px 24px;
    min-width: 180px;
  }

  .floating-element {
    display: none; /* Hide on very small screens for performance */
  }

  .hardware-card {
    min-height: 380px;
    padding: 1.5rem 1rem;
    border-radius: 1.5rem 1rem 1.5rem 1rem/1rem 1.5rem 1rem 1.5rem;
  }

  .info-section {
    margin: 15px 15px;
    padding: 30px 20px;
    border-radius: 24px;
  }

  .foodsted-left h1 {
    margin-bottom: 16px;
  }

  .foodsted-left p {
    margin-bottom: 25px;
  }

  .foodsted-buttons {
    gap: 12px;
  }

  .btn {
    width: 140px;
    padding: 12px 24px;
  }

  .logo {
    max-width: 250px;
  }

  .bg-element {
    display: none; /* Hide background elements on small screens for performance */
  }

  .features-horizontal {
    padding: 50px 15px;
    gap: 20px;
  }

  .feature-item {
    padding: 20px 15px;
    border-radius: 16px;
    gap: 15px;
  }

  .icon-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .icon-circle i {
    font-size: 22px;
  }

  .feature-content h3 {
    margin-bottom: 8px;
  }

  .features-bg-element {
    display: none; /* Hide background elements on small screens */
  }

  .about-section {
    padding: 3rem 0.8rem;
  }

  .info-box {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .info-box h3 {
    margin-bottom: 1rem;
  }

  .info-box-icon {
    width: 45px;
    height: 45px;
  }

  .info-box-icon i {
    font-size: 18px;
  }

  .about-bg-element {
    display: none; /* Hide background elements on small screens */
  }

  .feature-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 40px 10px;
  }

  .feature {
    width: 100%;
  }

  .feature-icon-wrapper {
    margin-bottom: 10px;
  }

  .features-bg-decoration {
    display: none; /* Hide background decorations on small screens */
  }

  .foodsted-promotion {
    margin: 0px 15px 40px;
    padding: 30px 20px;
    border-radius: 24px;
  }

  .promotion-left h1 {
    margin-bottom: 20px;
  }

  .qr-code-section {
    margin-bottom: 25px;
  }

  .qr-code {
    height: 80px;
    width: 80px;
  }

  .app-link img {
    height: 45px;
  }

  .app-images {
    gap: 15px;
  }

  .promo-bg-element {
    display: none; /* Hide background elements on small screens */
  }

  .footer {
    padding: 30px 15px 20px;
    gap: 2rem;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-logo img {
    width: 40px;
    height: 40px;
  }

  .footer-logo h2 {
    font-size: 1.1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link i {
    font-size: 16px;
  }

  .footer-socials {
    gap: 12px;
  }

  .copyright {
    padding: 20px 15px;
  }

  .footer-bg-element {
    display: none; /* Hide background elements on small screens */
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group {
    margin-bottom: 15px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .navbar {
    padding: 0 0.5rem;
  }

  .navbar-logo span {
    font-size: 1rem;
  }

  .navbar-toggle span {
    width: 24px;
    height: 2px;
  }
  .hero {
    padding: 70px 1rem 15px 1rem;
  }

  .hero-badge {
    width: 75%;
    text-align: center;
  }
  .hardware-cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 4rem 5vw;
    justify-items: center;
  }

  .hardware-card {
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    min-height: 480px;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 2.2rem 1.2rem 2.2rem 1.2rem/1.2rem 2.2rem 1.2rem 2.2rem;
  }

  /* .hardware-card__icon {
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    padding: 1.2rem 2.2rem;
    min-width: unset;
    min-height: unset;
    width: 120px;
    height: 120px;
    border-radius: 1.5rem;
  }

  .hardware-card__icon img {
    width: 100px;
    height: 100px;
  } */

  .hardware-card__content h3,
  .hardware-card__content .hardware-card__desc,
  .hardware-card__content .hardware-card__price {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  .info-section {
    margin: 10px 10px;
    padding: 25px 15px;
  }

  .btn {
    width: 120px;
    padding: 10px 10px;
  }

  .logo {
    max-width: 200px;
  }

  .features-horizontal {
    padding: 40px 10px;
  }

  .feature-item {
    padding: 18px 12px;
    gap: 12px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .icon-circle i {
    font-size: 20px;
  }

  .about-section {
    padding: 2.5rem 0.5rem;
  }

  .info-box {
    padding: 1.2rem;
  }

  .divider {
    width: 40px;
    margin-bottom: 2rem;
  }

  .feature-sections {
    padding: 35px 8px;
    gap: 1rem;
  }

  .feature p {
    font-size: 12px;
  }

  .foodsted-promotion {
    margin: 0px 10px 30px;
    padding: 25px 15px;
  }

  .app-link img {
    height: 40px;
  }

  .qr-code {
    height: 70px;
    width: 70px;
  }

  .footer {
    padding: 25px 10px 15px;
  }

  .footer-logo gap {
    gap: 8px;
  }

  .footer-logo h2 {
    font-size: 1rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

  .social-link i {
    font-size: 14px;
  }

  .copyright {
    padding: 18px 10px;
  }
}

/* ============================ */

.success-message {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 50px;
  color: #28a745;
  margin-bottom: 15px;
}

.success-message h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.success-message p {
  font-size: 1rem;
  color: #555;
}
