* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

/* Header */
.header {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 8rem;
}

/* Logo */
.logo img {
  height: 40px;
  width: auto;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: #0006;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #000;
}

/* Language Selector */
.lang-select select {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  color: #000000e0;
  background: #fff;
  padding: 0.4rem 0.6rem;
  font-family: inherit;
  font-size: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 1rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0006;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Overlay for background click */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 998;
  display: none;
}

.overlay.active {
  display: block;
}

/* Mobile */
@media (max-width: 900px) {
  .header-container {
    padding: 0.6rem 1rem;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav.active {
    right: 0;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  }

  .hamburger {
    display: flex;
  }

  /* Keep language selector visible on header */
  .lang-select {
    position: absolute;
    right: 4rem;
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* hero section  */
.hero {
  background-color: #f0f0f0;
  height: 20rem; /* fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* hide any overflow */
}

.hero-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-container img {
  height: 100%;

  max-height: 100%;
  object-fit: contain; /* keeps full image visible inside height */
  border-radius: 10px;
}

.hero-container img #hero_img1 {
  width: 100%;
}

.hero-container #hero_img2 {
  width: 20%;
  margin-bottom: -95px;
}

/* Responsive: stack images vertically on smaller screens */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 2rem 1rem;
    display: none;
  }

  .hero-container {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-container img {
    width: 100%;
    max-width: 400px;
  }

  .hero-container #hero_img2 {
    margin-bottom: -35px;
  }
}

/* mobile-hero section  */
/* hidden on desktop */
.mob1-section {
  display: none;
}

/* show on mobile only */
@media (max-width: 768px) {
  .mob1-section {
    display: block;
    background: #fff;
    padding: 1.5rem 1rem;
    border-top: 1px solid #e0e0e0;
  }

  .mob1-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 0.5rem;
    justify-items: center;
    align-items: center;
  }

  .mob1-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 0.875rem;
    text-align: center;
    transition: opacity 0.2s ease;
  }

  .mob1-item:hover {
    opacity: 0.8;
  }

  .mob1-img {
    width: 2.5rem; /* adjust based on your images */
    height: 2.5rem;
    margin-bottom: 0.4rem;
    object-fit: contain;
  }
}


/* carousel section  */

.sec1-section {
  padding: 28px 18px;
  box-sizing: border-box;
  width: 100%;
  background: #f5f5f5;
  overflow: hidden;
}

.sec1-main-title {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 12px 12px;
  text-align: center;
  color: #111;
}

/* Carousel wrapper */
.sec1-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 6px;
  outline: none;
}

/* Track that will be animated */
.sec1-track {
  display: flex;
  width: 200%; /* we will place two copies inside via JS to make seamless loop */
  align-items: stretch;
  will-change: transform;
}

.sec1-track-inner {
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
  padding: 6px;
  align-items: stretch;
}

/* Card */
.sec1-card {
  width: 320px;
  min-width: 210px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 10px 20px rgba(10, 10, 10, 0.04);
  padding: 22px;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  transition: transform 0.25s ease;
  cursor: default;
  user-select: none;
}

.sec1-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}

.sec1-card-label {
  font-size: 12px;
  color: black;
  margin-bottom: 8px;
}

.sec1-card-title {
  font-size: 20px;
  line-height: 1.02;
  margin: 0;
  color: black;
  text-decoration: none;
  letter-spacing: -0.2px;
  font-weight: 100;
}

.sec1-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  position: relative;
  height: 145px; /* controls vertical room for icon/button */
}

.sec1-icon {
  width: 84px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.sec1-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sec1-submit {
  position: absolute;
  bottom: 12px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: #0089d0;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.2, 0.9, 0.2, 1);
  pointer-events: none;
}

/* Hover state for individual card: show "Submit" instead of icon */
.sec1-card:hover,
.sec1-card:focus-within {
  transform: translateY(-6px);
}

.sec1-card:hover .sec1-icon,
.sec1-card:focus-within .sec1-icon {
  opacity: 0;
  transform: translateY(6px) scale(0.98);
}

.sec1-card:hover .sec1-submit,
.sec1-card:focus-within .sec1-submit {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Animation (we animate the whole track) */
@keyframes sec1-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* move by half (because we duplicate content) */
}

.sec1-track.scrolling {
  animation: sec1-scroll linear infinite;

  animation-timing-function: linear;
  animation-play-state: running;
}

/* When hover on carousel pause animation */
.sec1-carousel:hover .sec1-track.scrolling,
.sec1-carousel:focus-within .sec1-track.scrolling {
  animation-play-state: paused;
}

/* smaller cards */
.sec1-card {
  width: 210px;
  height: 250px;
  text-decoration: none;
}

.sec1-card-label {
  font-size: 13px;
}
.sec1-card-title {
  font-size: 15px;
  line-height: 1.3;
}
.sec1-img {
  height: 100px;
}

/* faster animation */
.sec1-track.scrolling {
  animation: sec1-scroll linear infinite;
  animation-duration: 25s !important; /* reduced duration = faster */
}

/* Responsive: reduce card width on smaller screens */
@media (max-width: 900px) {
  .sec1-card {
    width: 260px;
    min-width: 260px;
    padding: 18px;
    border-radius: 12px;
  }
  .sec1-card-title {
    font-size: 18px;
  }
  .sec1-main-title {
    font-size: 16px;
  }
  .sec1-bottom {
    height: 72px;
  }
}

@media (max-width: 520px) {
  .sec1-card {
    width: 220px;
    min-width: 220px;
    padding: 14px;
  }
  .sec1-card-title {
    font-size: 16px;
  }
  .sec1-bottom {
    height: 64px;
  }
  .sec1-card-label {
    font-size: 12px;
  }
}

/* categories section  */

.sec2-section {
  padding: 36px 20px;
  background: #f7f7f7;
  box-sizing: border-box;
}
.sec2-title {
  text-align: center;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  margin: 0 0 22px;
  font-size: 36px;
  font-weight: 400;
}

/* Carousel outer */
.sec2-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Arrows */
.sec2-arrow {
  width: 56px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.sec2-arrow:active {
  transform: scale(0.98);
}
.sec2-arrow--left {
  order: 0;
}
.sec2-arrow--right {
  order: 2;
}

/* Viewport and track */
.sec2-viewport {
  overflow: hidden;
  flex: 1 1 auto;
  order: 1;
  touch-action: pan-y; /* allow horizontal pan detection (prevents overscrolling issues) */
}
.sec2-track {
  display: flex;
  transition: transform 450ms cubic-bezier(0.2, 0.9, 0.2, 1);
  width: 100%;
  will-change: transform;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sec2-page {
  min-width: 100%;
  box-sizing: border-box;
  padding: 6px 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  grid-auto-rows: 1fr;
}

/* Card */
.sec2-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  padding: 18px;
  box-sizing: border-box;
  height: 220px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
}
.sec2-card-title {
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.sec2-card-image {
  display: block;
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
}
.sec2-card-image img {
  max-width: 140px;
  max-height: 110px;
  object-fit: contain;
  display: block;
}

/* Responsive behavior: adjust columns */
@media (max-width: 1100px) {
  .sec2-page {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .sec2-page {
    grid-template-columns: repeat(3, 1fr);
  }
  .sec2-card {
    height: 200px;
    padding: 14px;
  }
  .sec2-card-image img {
    max-width: 120px;
    max-height: 90px;
  }
}
@media (max-width: 650px) {
  .sec2-page {
    grid-template-columns: repeat(2, 1fr);
  }
  .sec2-card {
    height: 190px;
    padding: 12px;
  }
  .sec2-card-image img {
    max-width: 100px;
    max-height: 80px;
  }
  .sec2-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .sec2-carousel-wrap {
    max-width: 100%;
    overflow: hidden;
    padding: 0 5px;
  }

  /* Show cards horizontally instead of vertical stacking */
  .sec2-page {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .sec2-card {
    flex: 0 0 100%; /* exactly one card per view */
    scroll-snap-align: center;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    height: 180px;
    padding: 14px;
  }

  .sec2-card-image img {
    max-width: 110px;
    max-height: 90px;
  }

  .sec2-title {
    font-size: 22px;
    text-align: center;
  }

  /* hide arrows completely on mobile */
  .sec2-arrow {
    display: none !important;
  }

  .sec1-main-title{
    display: none;
  }

  .sec2-title{
    display: none;
  }
}

/* sec3 styles */
.sec3-section {
  padding: 40px 18px;
  box-sizing: border-box;
  background: #fafafa;
}
.sec3-wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.sec3-title {
  text-align: center;
  font-size: 34px;
  margin: 0 0 26px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  font-weight: 400;
  color: #111;
}

/* grid */
.sec3-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 18px;
  width: 90%;
  margin: 0px auto;
}

/* card */
.sec3-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
  text-decoration: none;
  color: inherit;
  min-height: 120px;
}

.sec3-card-left {
  flex: 1 1 auto;
  padding-right: 12px;
  display: flex;
  flex-direction: column;
}
.sec3-card-top {
  font-size: 13px;
  color: #9ea3a8;
  margin-bottom: 6px;
}
.sec3-card-desc {
  font-size: 18px;
  line-height: 1.12;
  color: #111;
  margin-bottom: 10px;
  font-weight: 500;
}
.sec3-card-action {
  color: #1687d9;
  font-size: 14px;
  text-decoration: none;
}

/* right image */
.sec3-card-right {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec3-card-right img {
  max-width: 72px;
  max-height: 72px;
  display: block;
}

/* mobile */
@media (max-width: 720px) {
  .sec3-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sec3-card {
    padding: 14px 16px;
    min-height: 110px;
  }
  .sec3-card-desc {
    font-size: 16px;
  }
  .sec3-card-right {
    width: 78px;
    height: 78px;
  }
  .sec3-card-right img {
    max-width: 68px;
    max-height: 68px;
  }
  .sec3-title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

/* small polish */
.sec3-card:hover {
  transform: translateY(-4px);
  transition: transform 0.16s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* Popup Modal (hidden by default) */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* Hidden initially */
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* When modal is visible */
.modal.active {
  display: flex;
}

/* enterprenure section  */

.sec3-entrepreneurs {
  background: #f7f7f7;
  padding: 50px 20px;
  box-sizing: border-box;
}

.sec3-entrepreneurs__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.sec3-entrepreneurs__title {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  color: #111;
  margin-bottom: 40px;
}

.sec3-entrepreneurs__content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

/* Left side */
.sec3-entrepreneurs__mobapp {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 55%;
  min-width: 500px;
}

.sec3-entrepreneurs__mobapp-info {
  flex: 1;
}

.sec3-entrepreneurs__mobapp-title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 14px;
  color: #111;
}

.sec3-entrepreneurs__mobapp-details {
  margin-top: 18px;
  font-size: 15px;
  color: #444;
}

.sec3-entrepreneurs__mobapp-images {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.sec3-entrepreneurs__mobapp-images img {
  width: 40px;
  height: auto;
}

.sec3-entrepreneurs__button {
  background: #0088d6;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
}

.sec3-entrepreneurs__mobapp-phone img {
  width: 158px;
  max-width: 95%;
  display: block;
}

/* Right side */
.sec3-entrepreneurs__products {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 40%;
  min-width: 330px;
}

.sec3-product-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sec3-product-card__title {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.sec3-product-card__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec3-product-card__description {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
  color: #111;
}

.sec3-product-card__image img {
  width: 68px;
  height: 68px;
}

.sec3-product-card__action {
  color: #1687d9;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .sec3-entrepreneurs__content {
    flex-direction: column;
    align-items: center;
  }

  .sec3-entrepreneurs__mobapp {
    flex-direction: column;
    text-align: center;
  }

  .sec3-entrepreneurs__mobapp-phone {
    margin-top: 20px;
  }

  .sec3-entrepreneurs__mobapp-phone img {
    width: 200px;
  }

  .sec3-entrepreneurs__title {
    font-size: 28px;
  }

  .sec3-product-card__description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .sec3-entrepreneurs__mobapp {
    min-width: 320px;
  }
}

/* partner section  */

.sec4-kaspipay {
  background: #f7f7f7;
  padding: 44px 16px;
  box-sizing: border-box;
}
.sec4-kaspipay__wrapper {
  max-width: 1150px;
  margin: 0 auto;
}

/* Terminals */
.sec4-terminal {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
      width: 75%;
    margin: 28px auto;
  text-align: center;
}
.sec4-terminal__title {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 400;
  color: #111;
}

.sec4-terminal__types {
  display: flex;
  justify-content: center;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.sec4-terminal__type {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  min-width: 120px;
}
.sec4-terminal__img img {
  width: 160px;
  max-width: 100%;
  height: auto;
  display: block;
}
.sec4-terminal__label {
  font-size: 18px;
  color: #222;
}

/* CTA */
.sec4-terminal__action {
  margin-top: 8px;
}
.sec4-terminal__cta {
  display: inline-block;
  background: transparent;
  color: #1687d9;
  padding: 10px 6px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 6px;
}

/* Become a partner block */
.sec4-stay-partner {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
      width: 75%;
    margin: 28px auto;
}
.sec4-stay-partner__title {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  color: #111;
}

/* partner cards grid */
.sec4-stay-partner__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* card */
.sec4-partner-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f3f3f4;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  min-height: 180px;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.25);
}
.sec4-partner-card__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.sec4-partner-card__title {
  font-size: 26px;
  line-height: 1.02;
  font-weight: 400;
  color: #111;
}
.sec4-partner-card__img img {
  width: 64px;
  height: auto;
  display: block;
}

.sec4-partner-card__description {
  margin-top: 12px;
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}
.sec4-partner-card__action {
  margin-top: 14px;
  color: #1687d9;
  font-weight: 400;
  font-size: 14px;
}

/* center everything for narrow screens */
@media (max-width: 900px) {
  .sec4-terminal__types {
    gap: 34px;
  }
  .sec4-terminal__img img {
    width: 140px;
  }
  .sec4-partner-card__title {
    font-size: 22px;
  }
}

/* mobile: stack and center, make images smaller */
@media (max-width: 640px) {
  .sec4-kaspipay__wrapper {
    padding: 0 10px;
  }
  .sec4-terminal {
    padding: 22px;
    margin-bottom: 18px;
  }
  .sec4-terminal__types {
    gap: 18px;
  }
  .sec4-terminal__img img {
    width: 110px;
  }

  .sec4-stay-partner__cards {
    grid-template-columns: 1fr;
  }
  .sec4-partner-card {
    min-height: auto;
    padding: 16px;
  }
  .sec4-partner-card__title {
    font-size: 20px;
  }
  .sec4-partner-card__img img {
    width: 58px;
  }
  .sec4-partner-card__description {
    font-size: 13px;
  }
  .sec4-partner-card__action {
    display: block;
    margin-top: 12px;
  }

  /* center terminal CTA to full-width feel */
  .sec4-terminal__cta {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #0088d6;
    color: #fff;
    text-decoration: none;
  }
}

/* small hover polish */
.sec4-partner-card:hover {
  transform: translateY(-4px);
  transition: transform 0.18s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* qr section  */

.qr-code{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #f5f5f5;
}

.qr-code h2{
    font-size: 28px;
  font-weight: 500;
  color: #111;
}
.qr-code img{
    width: 20%;
}

.sec5-footer {
  background: #f5f5f5;
  padding: 2rem 1.5rem;
  border-top: 0.0625rem solid #e0e0e0;
  color: #222;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.sec5-container {
  max-width: 60rem;
  margin: 0 auto;
}

.sec5-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.sec5-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.sec5-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec5-col li {
  font-size: 0.9375rem;
  color: #555;
  margin-bottom: 0.4rem;
  cursor: pointer;
}

.sec5-col li:hover {
  text-decoration: underline;
}

.sec5-col p {
  font-size: 0.9375rem;
  margin: 0.3rem 0 0.8rem;
}

.sec5-write-btn {
  background: #f1f1f1;
  border: none;
  border-radius: 0.3rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sec5-write-btn:hover {
  background: #e0e0e0;
}

.sec5-bottom {
 border-top: 0.0625rem solid #e0e0e0;
    padding-top: 1.5rem;
    text-align: left;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #666;
}

.sec5-license {
  max-width: 60rem;
  margin: 0.8rem auto;
}

.sec5-corporate-link {
  display: block;
  margin-bottom: 1rem;
  color: #0066cc;
  text-decoration: none;
}

.sec5-corporate-link:hover {
  text-decoration: underline;
}

.sec5-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1.25rem;
  color: #999;
}

.sec5-socials i {
  cursor: pointer;
  transition: color 0.2s;
}

.sec5-socials i:hover {
  color: #333;
}

/* Responsive tweaks */
@media (max-width: 40rem) {
  .sec5-columns {
    grid-template-columns: 1fr 1fr;
  }

  .sec5-col h4 {
    font-size: 0.9375rem;
  }

  .sec5-col li {
    font-size: 0.875rem;
  }
}


/* Modal box */
.modal-content {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: "Roboto", sans-serif;
}

.modal-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.modal-content button {
  background-color: #ff7a00; /* Kaspi orange */
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-content button:hover {
  background-color: #e66e00;
}
