:root {
  --bg: rgb(252, 225, 200);
  /* light orange page background */
  --card-bg: transparent;
  --primary: #ff8801;
  /* icon blue */
  --icon-bg: #0b69ff;
  --text: #0b2340;
  --muted: #546b7a;
  --accent-green: #25d366;
  /* whatsapp green */
  --maxwidth: 1100px;
  --container-padding: 40px;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  --mainheight: 837.68px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* nav */

header {
  background: white;
  box-shadow: var(--shadow);
  top: 0;
  z-index: 10;
}

.machine {
  border-radius: 60px;
}

/* ===== TOP BAR ===== */
/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: skyblue;
  font-size: 14px;
}

.top-left {
  display: flex;
  gap: 12px;
}

.top-left a img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.top-left a:hover img {
  transform: scale(1.2);
}

.top-right span {
  font-weight: 600;
  color: black;
}

.nav {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  color: #fff;
  padding: 5px;
  font-weight: 800;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
}

.quote-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.7s ease-in;
}

.quote-btn:hover {
  border: 1px solid var(--primary);
  background-color: #fff;
  color: var(--primary);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 21px;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}



/* POS Utilities */

.column-flex-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.w-80 {
  width: 80%;
}

.w-50 {
  width: 50%;
}

.m-x-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Features of EPOS */

.features-of-EPOS {
  height: var(--mainheight);
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrap {
  max-width: var(--maxwidth);
  margin: 0 auto;
  padding: var(--container-padding);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 60px;
  align-items: start;
}

/* feature item */
.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  min-height: 120px;
}

.icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
  background: linear-gradient(180deg,
      rgba(11, 105, 255, 0.15),
      rgba(11, 105, 255, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(11, 105, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: var(--icon-bg);
}

.feature h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: #06243a;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 420px;
}

/* responsive */
@media (max-width: 980px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .POS-System-Packages-card_1,
  .POS-System-Packages-card_2,
  .POS-System-Packages-card_3 {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .POS-System-Packages-display-cards {
    flex-direction: column;
    width: 100vw;
  }

  .Clover-flex,
  .Clover-mini,
  .Clover-Station-Duo {
    flex-direction: column;
  }

  .Clover-flex-right,
  .Clover-flex-right,
  .Clover-mini-left,
  .Clover-mini-left,
  .Clover-Station-Duo-left,
  .Clover-Station-Duo-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }

  .wrap {
    padding: 24px;
  }
}

/* floating WhatsApp button */
.whatsapp {
  position: fixed;
  left: 18px;
  bottom: 24px;
  background: var(--accent-green);
  color: white;
  border-radius: 30px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
  font-weight: 600;
  cursor: pointer;
  z-index: 50;
}

.whatsapp .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff3;
  padding: 0;
}

/* chat bubble bottom-right */
.chat-bubble {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0066ff, #0052cc);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(3, 45, 100, 0.25);
  z-index: 60;
  cursor: pointer;
}

.chat-bubble svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* small privacy & cookie bar top of chat (mimic) */
.privacy {
  position: fixed;
  right: 98px;
  bottom: 10px;
  background: black;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  z-index: 55;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

body {
  margin: 0;
}

/* POS System Packages */

.POS-System-Packages {
  width: 100%;
  background-color: rgb(252, 225, 200);
}

.POS-System-Packages-head h1 {
  font-size: 3rem;
}

.POS-System-Packages-head p {
  font-size: 1.5rem;
}

.POS-System-Packages-container {
  padding-top: 150px;
  padding-bottom: 120px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

/* POS System Packages Cards */

.POS-System-Packages-display-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.POS-System-Packages-card_1,
.POS-System-Packages-card_2,
.POS-System-Packages-card_3 {
  border: 2px solid;
  height: 300px;
  padding: 5px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 2px 2px 15px 1px black;
  border-radius: 10px;
  background-color: whitesmoke;
}

/* cards scroll bar */

.POS-System-Packages-card_1::-webkit-scrollbar,
.POS-System-Packages-card_2::-webkit-scrollbar,
.POS-System-Packages-card_3::-webkit-scrollbar {
  width: 12px;
}

.POS-System-Packages-card_1::-webkit-scrollbar-track,
.POS-System-Packages-card_2::-webkit-scrollbar-track,
.POS-System-Packages-card_3::-webkit-scrollbar-track {
  background: #e4ab6a;
  border-radius: 10px;
}

.POS-System-Packages-card_1::-webkit-scrollbar-thumb,
.POS-System-Packages-card_2::-webkit-scrollbar-thumb,
.POS-System-Packages-card_3::-webkit-scrollbar-thumb {
  background: #cf8a30;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.POS-System-Packages-card_1::-webkit-scrollbar-thumb:hover,
.POS-System-Packages-card_2::-webkit-scrollbar-thumb:hover,
.POS-System-Packages-card_3::-webkit-scrollbar-thumb:hover {
  background: #bb7f26;
}

.POS-System-Packages-card-content {
  line-height: 2rem;
}

.POS-System-Packages-card-content p {
  text-align: justify;
}

/* POS Machines */

/* Clover flex */

.Clover-flex,
.Clover-mini,
.Clover-Station-Duo {
  height: var(--mainheight);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.Clover-flex-heading h1 {
  font-size: 30px;
}

.Clover-flex-left img {
  animation-name: myanimation;
  animation-timing-function: ease-in;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

.Clover-flex-details h3 {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 600;
}

.Clover-flex-details ul li::before,
.Clover-mini-details ul li::before,
.Clover-Station-Duo-Details ul li::before {
  content: "\2713";
  display: inline-block;
  color: orange;
  padding: 0 6px 0 0;
}

.Clover-flex-details ul li,
.Clover-mini-details ul li,
.Clover-Station-Duo-Details ul li {
  list-style-type: none;
  font-size: 1rem;
}

.Clover-flex-details ul,
.Clover-mini-details ul,
.Clover-Station-Duo-Details ul {
  margin-block-start: 0%;
  padding: 0;
}

/* Clover mini */

.Clover-mini-headings h1 {
  font-size: 25px;
  margin: 0;
}

.Clover-mini-right img { 
    animation-name: myanimation2;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    margin-left: 80px;
}

/* clover station dwo image animation */

.Clover-Station-Duo-left img { 
    animation-name: myanimation;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

.smartPOS {
  font-weight: bolder;
  color: rgb(247, 177, 47);
  margin: 0;
  font-size: large;
}

/* Clover-statoin-duo */

.Clover-Station-Duo-headings h1 {
  font-size: 25px;
  margin: 0;
}

/* Footer */

.footer {
  color: white;
}

.footer-upper-section {
  height: 382px;
  padding: 45px 30px;
  background-color: #0f172a;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.footer-content-about {
  width: 70%;
}

.footer-content-about p {
  width: 80%;
  line-height: 20px;
  font-weight: bold;
}

.footer-content-about h2,
.footer-content-requestQuote-text h2,
.footer-content-ourServices h2 {
  color: orange;
}

.footer-content-ourServices ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 5px;
  cursor: pointer;
}

.footer-content-ourServices ul li a {
  text-decoration: none;
  color: white;
}

.footer-lower-section {
  height: 80px;
  background-color: #0f172a;
  padding: 20px;
  display: flex;
}

.footer-lower-section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-divider {
  height: 1px;
  width: 90%;
  background-color: white;
  display: block;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  nav ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 8px 15px;
    font-size: 12px;
  }

  .top-left a img {
    width: 16px;
    height: 16px;
  }

  .nav {
    padding: 0 15px;
  }

  .logo img.machine {
    height: 70px;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }

  nav ul li {
    border-bottom: 1px solid #eee;
  }

  nav ul li a {
    display: block;
    padding: 15px 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
  }

  .quote-btn {
    display: none;
  }

  .mobile-quote-btn {
    display: block;
    background-color: #3498db;
    color: white;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    margin: 20px;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    flex-direction: column;
    gap: 5px;
    padding: 8px 10px;
  }

  .nav {
    padding: 0 10px;
  }

  .logo img.machine {
    height: 60px;
  }
}

@keyframes myanimation {
  from {
    transform: translateX(300%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes myanimation2 {
  from {
    transform: translateX(-300%);
  }

  to {
    transform: translateX(0);
  }
}