* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  height: auto;
  font-family: Inter, system-ui, sans-serif;
  background: #f8fbff;
  color: #0f172a;
  overflow-x: hidden;
  overflow-y: auto;
  direction: rtl;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.hero-copy {
  text-align: right;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 22%),
              radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.08), transparent 20%);
  pointer-events: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.navbar-brand {
  display: flex;
}

.mobile-toggle {
  display: none;
  background: #f1f5f9;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  color: #0f172a;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3b82f6;
}

.navbar-brand img {
  width: 200px; /* Adjust this value to make the logo wider */
  height: auto; /* Height will adjust proportionally to maintain aspect ratio */
  display: block;
}

.page-content {
  padding: 0 0 2rem;
  min-height: calc(100vh - 72px);
  width: 100%;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 720px;
}

.hero-copy {
  padding: 1rem 0;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0f4f6f;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(0.9rem, 2.1vw, 1.8rem);
  line-height: 1.04;
  color: #0f172a;
  white-space: nowrap;
}

.hero-copy p {
  margin: 0 0 2rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #334155;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 180px;
}

.hero-button-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #0f172a;
}

.hero-button-secondary:hover {
  background: #f8fafc;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 62%),
              radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.18), transparent 58%);
  border-radius: 50%;
  filter: blur(0.5px);
}

/* Carousel Section */
.carousel-section {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  transition: transform 0.4s ease-in-out;
  width: 100%;
  min-width: 100%;
}

.carousel-card {
  background: #0f172a;
  border-radius: 12px;
  padding: 1.4rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(1deg); /* Enhanced transform for a more dynamic hover */
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25); /* More pronounced shadow for depth */
}

.card-image {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.8rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.carousel-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
}

.card-stars {
  margin-top: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  color: #bfdbfe;
  font-size: 0.95rem;
  font-weight: 800;
}

.carousel-btn {
  background: #0f172a;
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background: #0f172a;
  transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .carousel-track {
    gap: 1rem;
  }
}

/* Footer Section */
.site-footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #3b82f6; /* Accent color */
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-map-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-map-link i {
  font-size: 1.1rem;
}

.footer-map-link:hover {
  color: #ffffff;
  transform: translateX(-5px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a i {
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(-5px);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1rem 1.5rem;
    margin-top: 3rem;
  }

  .footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-section h3 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2.5rem 0.75rem 1.25rem;
    margin-top: 2.5rem;
  }

}

@media (max-width: 768px) {
  .carousel-container {
    gap: 0.8rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-track {
    gap: 0.9rem;
  }

  .carousel-card {
    padding: 1rem;
    min-height: 230px;
  }

  .card-image {
    width: 80px;
    height: 80px;
  }

  .carousel-card h3 {
    font-size: 1rem;
  }
}


@media (max-width: 480px) {
  .carousel-container {
    gap: 0.6rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-track {
    gap: 0.5rem;
  }

  .carousel-card {
    padding: 0.8rem;
    border-radius: 16px;
    min-height: 220px;
  }

  .card-image {
    width: 70px;
    height: 70px;
    margin-bottom: 0.8rem;
  }

  .carousel-card h3 {
    font-size: 0.9rem;
  }

  .carousel-card p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }
}


.printer-frame {
  position: relative;
  width: 280px;
  height: 280px;
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  display: grid;
  place-items: center;
  z-index: 2;
  overflow: hidden;
}


.printer-frame svg {
  width: 52%;
  height: auto;
}

.printer-card {
  position: absolute;
  width: 140px;
  padding: 1rem;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #0f172a;
  z-index: 3;
}

.printer-card span {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.printer-card small {
  font-size: 0.95rem;
  color: #475569;
}

.card-top-left {
  top: 18%;
  left: 12%;
  right: auto;
  transform: none;
}

.card-right {
  top: 50%;
  right: 10%;
  left: auto;
  transform: translateY(-50%);
}

.card-bottom-left {
  bottom: 18%;
  left: 12%;
  right: auto;
  transform: none;
}


@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    min-height: 550px;
  }
}

@media (max-width: 680px) {
  .navbar-content {
    flex-direction: row;
    justify-content: space-between;
    min-height: 72px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .nav-links.active {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    color: #0f172a;
    font-weight: 700;
    transition: all 0.2s ease;
    display: block;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  }

  .nav-links a:active {
    background: #f1f5f9;
    transform: scale(0.95);
  }

  .page-content {
    padding: 0 0 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy {
    order: 2;
    text-align: center;
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
    order: 1;
    width: 100%;
  }

  .hero-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .printer-frame {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .printer-card {
    width: 130px;
    padding: 0.8rem;
  }

  .card-top-left {
    top: 15%;
    left: 12%;
  }

  .card-right {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
  }

  .card-bottom-left {
    bottom: 15%;
    left: 12%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem;
  }

  .hero-copy h1 {
    font-size: 1.4rem;
    white-space: normal;
  }

  .hero-copy p {
    font-size: 0.96rem;
    max-width: 100%;
  }

  .hero-visual {
    min-height: 380px;
  }

  .printer-frame {
    width: 220px;
    height: 220px;
  }

  .hero-shape {
    width: 320px;
    height: 340px;
  }

  .printer-frame {
    width: 240px;
    height: 240px;
  }

  .hero-button {
    font-size: 0.98rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-button,
  .hero-button-secondary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: #fff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}
