:root{
    --bg: #0f1115;
    --cardcustom: rgba(255,255,255,0.06);
    --glass: #f6f7f9b3;
    --shadow: rgba(0,0,0,0.25);
    --foreground: #14181f;
    --muted-foreground: #9ca3af;
    --success: #16a34a;
    --success-foreground: #052e13;
    --accent: #6366f1;
    --accent-15: rgba(99,102,241,0.15);
    --chart-bar: #816bff;
    --chart-bar-hover: #5233ff;
}

.relative { position: relative; }

.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border:1px solid #e0e4eb80;
    box-shadow: 0 8px 24px var(--shadow);
    
}

.cardcustom {
    border-radius: 16px;
    padding: 24px;
        border: 1px solid hsla(220, 20%, 90%, 0.5);
        box-shadow: none;
}

.muted { color: var(--muted-foreground); }
.uppercase { text-transform: uppercase; letter-spacing: 0.08em; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }

/* Grid 2 columns */
.stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.stat {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
}
.stat .value {
    font-size: 28px;
    font-weight: 800;
    color: var(--foreground);
    margin: 0;
}
.stat .label {
    font-size: 12px;
    margin-top: 4px;
    color: var(--muted-foreground);
}

/* Chart bars */
.chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 96px;
    padding: 0 8px;
}
.bar {
    flex: 1 1 0%;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 160ms ease;
    background: linear-gradient(to top, var(--chart-bar), var(--chart-bar-hover));
    height: var(--h, 0%);
}
.bar:hover { opacity: 0.8; }

/* Payment methods */
.payments {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.pm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--muted-foreground);
    font-size: 10px;
    opacity: 0;
    transform: translateY(8px);
    animation: fadeUp 400ms ease forwards;
}
.pm-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.10);
    display: grid;
    place-items: center;
}
.pm svg { width: 14px; height: 14px; stroke: var(--muted-foreground); }
.pm:nth-child(1){ animation-delay: 1.2s; }
.pm:nth-child(2){ animation-delay: 1.3s; }
.pm:nth-child(3){ animation-delay: 1.4s; }
.pm:nth-child(4){ animation-delay: 1.5s; }
.pm:nth-child(5){ animation-delay: 1.6s; }

/* Floating transactions */
.floating-tx {
    position: absolute;
    z-index: 20;
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 16px var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    animation: floatUpLoop 3.5s ease-out 1.5s infinite;
    line-height: normal;
}
.float-2 { animation-delay: 3.3s; } /* 1.5 + 1*1.8 */
.float-3 { animation-delay: 5.1s; } /* 1.5 + 2*1.8 */
.tx-dot {
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
}
.tx-lines { display: flex; flex-direction: column; gap: 2px; }
.tx-amount { font-size: 12px; font-weight: 700; color: var(--foreground); }
.tx-label { font-size: 10px; color: var(--muted-foreground); }

/* Floating badges */
.hero-badge {
    position: absolute;
    z-index: 10;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    line-height: normal;
}
.hero-badge .circle {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
}
.hero-badge .title { font-size: 14px; font-weight: 800; color: var(--foreground); margin: 0; }
.hero-badge .sub { font-size: 12px; color: var(--muted-foreground); margin: 0; }

/* Positioning to mimic original */
.hero-badge-top-right {
    top: -16px; right: -8px;
    opacity: 0; transform: scale(0.8);
    animation: scaleIn 400ms ease forwards; animation-delay: 0.8s;
}
.hero-badge-bottom-left {
    bottom: -20px; left: -12px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 400ms ease forwards; animation-delay: 1s;
    border: 1px solid hsla(220, 20%, 90%, 0.5);
}

/* Container max width */
.container-animation { width: 100%; max-width: 636px; height: 360px; }

/* Entrances */
.enter {
    opacity: 0; transform: translateX(40px);
    animation: fadeInRight 800ms ease-out forwards; animation-delay: 0.2s;
}

/* Bars grow-in */
.bar-animated {
    animation: growBar 400ms ease-out forwards;
    animation-delay: var(--delay, 0.5s);
}

/* Keyframes */
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes growBar {
    from { height: 0; }
    to   { height: var(--h, 0%); }
}
@keyframes floatUpLoop {
    0%   { opacity: 0; transform: translateY(20px); }
    10%  { opacity: 1; transform: translateY(-10px); }
    60%  { opacity: 1; transform: translateY(-30px); }
    100% { opacity: 0; transform: translateY(-60px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* Accessibility helpers */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.container-animation p{
    margin: 0;
}
.hero-badge-round {
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: left;
    line-height: normal;
    
}


/* new hero section */


.an-card {
  max-width: 380px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.08) 0px 4px 24px -8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Image Section */
.an-card-image {
  position: relative;
}

.an-card-image img {
  width: 100%;
  height: 208px !important;
  object-fit: cover;
  object-position: top;
  display: block;
}

.an-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.2), transparent);
}

/* Body */
.an-card-body {
  padding: 20px;
}

/* Badge */
.an-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background:#28af601f;
  color: #28af60;
  margin-bottom: 0;
}

/* Title */
.an-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #14181f;
  margin: 0;
  line-height: 1.4 !important;
}

/* Description */
.an-desc {
  font-size: 14px;
  color: #6a7181;
  margin-top: 6px;
  line-height: 1.6;
}

/* Footer */
.an-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

/* Price */
.an-price-box p{
    margin-bottom: 0;
}
.an-price {
  font-size: 24px;
  font-weight: 700;
  color: #14181f;
}

.an-note {
  font-size: 11px;
  color: #6a7181;
  margin-top: 4px;
  margin-bottom: 0;
}

/* Button */
button.an-btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: #28af60;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

button.an-btn:hover {
  opacity: 0.85;
  background: #28af60 !important;   
}

/* end new hero section */

.sales-notify {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.icon {
    color: #22c55e;
}

.name {
    font-weight: 500;
    color: #111827;
}

.product {
    font-weight: 600;
    color: #111827;
}

.price {
    font-weight: 700;
    color: #22c55e;
}

.sales-notify {
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spy-section {
  scroll-margin-top: 120px;
}
/* Sidebar base */
.policy_sidebar {
  position: sticky;
  top: 0;
  align-self: flex-start;
  z-index: 10;
}

/* Links */
.policy_sidebar .elementor-icon-list-item a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: #374151;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover */
.policy_sidebar .elementor-icon-list-item a:hover {
  background: #f3f4f6;
}

/* Active */
.policy_sidebar .elementor-icon-list-item a.active {
  background: #e5e7eb;
  font-weight: 600;
  color: #111827;
}



.privacy-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 48px;
    scroll-margin-top: 96px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-badge {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    flex-shrink: 0;
}

.privacy-section h2.section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.section-body {
       margin-left: 44px;
    font-size: 14px;
    color: #6b7280;
    white-space: normal;
    margin-bottom: 10px;
}


.sub-block .sub-title {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}
.section-header p{
    margin: 0 !important;
}

.policy-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.policy-list li {
    position: relative;
    margin: 0 0 10px 0;
    padding-left: 16px;
    font-size: 14px;
    color: #6b7280;
}

.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(107, 114, 128, 0.4);
}

.small-note {
    margin-top: 10px;
    font-size: 12px;
    font-style: italic;
    color: rgba(107, 114, 128, 0.75);
}

.contact-line {
    margin: 4px 0;
    font-size: 14px;
}

.contact-strong {
    margin: 0;
    font-weight: 600;
    color: #111827;
}

.contact-link {
    color: #111827;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}
footer.bg-dark.text-white {
    position: relative;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children .sub-menu {
    position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  min-width: 200px;
  background-color: #ffffff;      /* white background */
  border: 1px solid #e5e7eb;      /* light gray border */
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

#menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#menu .sub-menu li {
  list-style: none;
  border-bottom: 0 !important;
}

#menu .sub-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
  color: #6a7181;
  line-height: 20px;
}

#menu .sub-menu li a:hover {
  background: #f3f4f6;
  color: #000;
}

#menu .sub-menu .current-menu-item a {
  background: #f3f4f6;
  color: #000;
}

#menu li > ul.sub-menu li:hover a {
  color: #000 !important;
}

#menu li:hover > ul.sub-menu li a {
  margin: 0 !important;
}

#menu li > ul {
  padding: 10px 0;
}

#menu ul li.menu-item-has-children {
  padding: 16px 1px 16px 1px;
}

#menu ul li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease;
  /* background-color: #f3f4f6; */
}

#menu ul li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
}

#menu ul li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 5px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  top: 0;
  border-right: 1.5px solid #6b7280;
  border-bottom: 1.5px solid #6b7280;
}

#menu ul li.menu-item-has-children:hover > a::after {
  transform: rotate(-135deg);
      top: 3px;
}