
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter';
}


/* General Header Styles */
header {
  background-color: #0c1c2e;
  padding: 15px 0;
  color: white;
}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
  position: relative;
}
.logo {
  flex: 0 0 auto;
}
.logo img {
  height: 46px;
}

/* Desktop nav section: centered */
nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Desktop Nav Links */
nav .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
  position: static;
  height: auto;
  width: auto;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, background 0.2s;
  font-size: 1rem;
  padding: 8px 6px;
  border-radius: 3px;
}
.nav-links a:hover,
.nav-links a:focus {
  color: white;
  background: rgba(255,255,255,0.06);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 2;
  min-width: 180px;
}
.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #081B31;
  white-space: nowrap;
  border-radius: 5px;
}
.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #0c1c2e;
}

/* Desktop dropdown: show on hover */
@media (min-width: 801px) {
  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}

/* Desktop Auth Links: far right */
.desktop-auth {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.desktop-auth a {
  color: #bfa56a;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 3px;
  transition: background 0.2s;
}
.desktop-auth a:hover, .desktop-auth a:focus {
  background: rgba(191,165,106,0.12);
}

/* Hide mobile auth on desktop */
@media (min-width: 801px) {
  .mobile-auth {
    display: none !important;
  }
}
/* Hide desktop auth on mobile */
@media (max-width: 800px) {
  .desktop-auth {
    display: none !important;
  }
}

/*Center the mobile nav‑toggle vertically */
@media (max-width: 800px) {
  .nav-toggle {
    /* position:absolute; right:0 is already set */
    top: 50%;
    transform: translateY(-50%);
  }
}



/* ================================
      Mobile Navigation Styles
   ================================ */

/* Hamburger Icon */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  margin-left: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.nav-toggle .bar {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition: all 0.3s;
}

/* Mobile Menu Overlay */
.nav-close {
  display: none;
}
@media (max-width: 800px) {
  .container {
    gap: 8px;
    padding: 0 8px;
  }
  nav {
    justify-content: flex-end;
  }
  /* Show Hamburger */
  .nav-toggle {
    display: flex;
  }

  /* Mobile Menu Fullscreen */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #14243a;
    z-index: 1001;
    padding-top: 60px;
    transition: transform 0.35s cubic-bezier(.75,.01,.33,1.04);
    transform: translateY(-100%);
  }
  .mobile-menu.open {
    transform: translateY(0);
  }

  /* Center nav-close (X) icon */
  .nav-close {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    z-index: 1102;
  }

  /* Center nav links */
  .mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu .nav-links li {
    width: 100%;
    text-align: center;
  }
  .mobile-menu .nav-links a {
    display: block;
    width: 100%;
    padding: 20px 0;
    color: #fff;
    font-size: 1.18rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: none;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu .nav-links a:hover {
    background: #1d345a;
    color: #ffe082;
  }

  /* Mobile Auth Links at Bottom */
  .mobile-menu .mobile-auth {
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 30px;
    font-size: 1.08rem;
  }
  .mobile-menu .mobile-auth a {
    color: #ffe082;
    background: none;
    text-align: center;
    width: 100%;
    padding: 12px 0;
    border-radius: 0;
    text-decoration: underline;
    font-size: 1.08rem;
  }

  /* Hide desktop nav and auth on mobile */
  nav > .nav-links,
  nav > .auth-links {
    display: none !important;
  }

  /* Mobile dropdown */
  .dropdown .dropdown-menu {
    display: none;
    position: static;
    background: #1d345a;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: unset;
    margin: 0;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    color: #ffe082;
    padding: 14px 40px;
    background: none;
    border-radius: 0;
    text-align: center;
    font-size: 1.07rem;
  }
}

/* Prevent background scroll when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* Utility for focus/active states */
a:focus {
  outline: 2px solid #ffe082;
  outline-offset: 1px;
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.hero-section {
  width: 100%;
  min-height: 70vh;
  background: #0a1a2e url('/hcash-website/public/images/Picture4.png') no-repeat center/cover;
  /*background: #0a1a2e url('/images/Picture4.png') no-repeat center/cover;*/
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 50% 35% 15%;
  gap: 0;
  width: 100%;
  max-width: 1350px;
  align-items: center;
  padding: 10px 28px;
  margin: 0 auto;
  min-height: 680px;
  box-sizing: border-box;
}

/* ========== LEFT COLUMN ========== */
.hero-col--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  max-width: none;
  background: transparent !important;
  box-shadow: none !important;
}

.btn {
  display: inline-block;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 24px;
}

.btn--outline {
  background: #d6a13b;
  color: #222a38;
  border: 2px solid #d6a13b;
  padding: 11px 26px;
  font-size: 1.02rem;
  margin-bottom: 32px;
  box-shadow: 0 3px 12px rgba(34, 42, 56, 0.06);
}
.btn--outline:hover {
  background: transparent;
  color: #d6a13b;
}
.rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 18px;
}
.rating-star {
  width: 20px;
  height: 20px;
  color: #f0c419;
}
.rating-score {
  font-size: 1.03rem;
  color: #f0c419;
  margin-left: 6px;
  font-weight: 600;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.17;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-title span {
  color: #d6a13b;
}
.hero-description {
  font-size: 1.19rem;
  line-height: 1.58;
  max-width: 520px;
  color: #cfd5df;
  margin-bottom: 28px;
}
.btn--solid {
  background: #f5f5f5;
  color: #0a1a2e;
  padding: 13px 26px;
  font-size: 1.07rem;
  margin-top: 12px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(34, 42, 56, 0.07);
}
.btn--solid:hover {
  background: #e8e5d1;
  color: #0a1a2e;
}

/* ========== MIDDLE COLUMN ========== */
.hero-col--middle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  margin-right: 40px;
}

.hero-col--middle img,
.hero-col--middle .hero-image {
  display: block;
  width: 120%;
  max-width: 120%;
  height: auto;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  background: none;
}

/* Remove any wrapper backgrounds/circles/borders */
.hero-col--middle .image-wrapper,
.hero-col--middle .image-wrapper::before {
  all: unset !important;
  display: contents !important;
}

/* ========== RIGHT COLUMN ========== */
.hero-col--right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  max-width: none;
  border-radius: 18px;
  padding: 36px 0;
}

.explore-heading {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 22px;
  color: #fff;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.cat-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  color: #d6a13b;
  margin-top: 0;
}
.cat-text h3 {
  font-size: 2.1rem;
  margin-bottom: 5px;
  color: #fff;
}
.cat-text p {
  font-size: 1.05rem;
  color: #c5c9cf;
  margin-bottom: 8px;
  line-height: 1.7;
}
.cat-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.cat-link:hover {
  color: #d6a13b;
}

.category-item:first-of-type {
  margin-bottom: 90px;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: fadeIn 0.7s;
}
.hero-slide.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}

/* Slider Controls */
.hero-slider-btn {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: white;
  font-size: 2em;
  padding: 10px 18px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  transition: background 0.2s;
}
.hero-slider-btn.prev { left: 18px;}
.hero-slider-btn.next { right: 18px;}
.hero-slider-btn:hover { background: rgba(191,165,106,0.5);}

/* Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-slider-dots .dot {
  display: inline-block;
  height: 13px;
  width: 13px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-slider-dots .dot.active {
  background: #fff;
}

/* Responsive: ensure slider controls/dots look good on mobile */
@media (max-width: 1300px) {
  .hero-slider-btn {
    display: none !important;
  }
}


@media (max-width: 650px) {
  .hero-slider-btn,
  .hero-slider-dots {
    display: none !important;
  }
}


@media (max-width: 767px) {
  .hero-section {
    min-height: unset;
    padding: 0;
  }
  .hero-container {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 10px 6px;
    gap: 20px;
    max-width: 98vw;
  }
  .hero-col--left,
  .hero-col--right {
    align-items: center !important;
    text-align: center;
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
  }
  .hero-col--middle {
    display: none !important;
  }
  .btn--outline, .btn--solid {
    width: 100%;
    padding: 13px 0;
    font-size: 1rem;
  }
  .hero-title {
    font-size: 1.35rem;
    line-height: 1.25;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .explore-heading {
    font-size: 1.08rem;
  }
  .cat-text h3 {
    font-size: 1.15rem;
  }
  .cat-text p,
  .cat-link {
    font-size: 0.97rem;
  }
  .category-item {
    gap: 9px;
    margin-bottom: 18px;
    flex-direction: column;
    align-items: center;
  }
  .cat-icon {
    width: 28px;
    height: 28px;
    margin: 0 auto;
  }
  .hero-slider-btn.prev,
  .hero-slider-btn.next {
    top: unset;
    bottom: 38px;
    transform: none;
    font-size: 1.4em;
    padding: 7px 10px;
  }
  .hero-slider-btn.prev { left: 8px;}
  .hero-slider-btn.next { right: 8px;}
  .hero-slider-dots {
    bottom: 6px;
  }
}


/* --- Utility for edge cases --- */
.hero-section, .hero-container, .hero-col, .hero-col--middle, .hero-col--middle img {
  box-sizing: border-box;
  min-width: 0;
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.why-choose {
  width: 100%;
  padding: 60px 0 0 0;
  background: #fff;
  box-sizing: border-box;
}
.why-choose__intro {
  max-width: 850px;
  margin: 0 auto 42px auto;
  text-align: center;
  padding: 0 20px;
}
.why-choose__intro h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: #222a38;
}
.why-choose__intro p {
  font-size: 1.19rem;
  color: #555c6a;
  line-height: 1.65;
}

.why-choose__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 36px;
  padding: 32px 20px 70px 20px;
  box-sizing: border-box;
}

.why-choose__col {
  background: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* No border, no border-radius, no padding */
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
}

.why-choose__col--left,
.why-choose__col--right {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
}

.why-choose__col--center {
  flex: 0 0 280px;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fa;
  border: none;
  border-radius: 0;
  padding: 0;
}

.why-choose__image {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: 0 6px 24px rgba(32,40,60,0.12);
}

.why-feature {
  margin-bottom: 18px;
}
.why-feature:last-child {
  margin-bottom: 0;
}

/* Larger header and paragraph for left & right columns */
.why-choose__col--left .why-feature h3,
.why-choose__col--right .why-feature h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 11px;
  color: #222a38;
}

.why-choose__col--left {
  text-align: right;
}

.why-choose__col--left .why-feature p,
.why-choose__col--right .why-feature p {
  font-size: 1.19rem;
  color: #333;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

/* ========== TABLET (≤1023px) ========== */
@media (max-width: 1023px) {
  .why-choose__content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 22px 8px 40px 8px;
  }
  .why-choose__col--left,
  .why-choose__col--right,
  .why-choose__col--center {
    max-width: 430px;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .why-choose__col--left {
    text-align: center;
  }
}

/* ========== MOBILE (≤767px) ========== */
@media (max-width: 767px) {
  .why-choose {
    padding: 36px 0 0 0;
  }
  .why-choose__intro h2 {
    font-size: 1.5rem;
  }
  .why-choose__intro p {
    font-size: 1.04rem;
  }
  .why-choose__content {
    gap: 17px;
    padding: 12px 2px 26px 2px;
  }
  .why-choose__col {
    max-width: 99vw;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .why-choose__col--left .why-feature h3,
  .why-choose__col--right .why-feature h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }
  .why-choose__col--left .why-feature p,
  .why-choose__col--right .why-feature p {
    font-size: 1.07rem;
    margin-bottom: 9px;
  }
  .why-choose__image {
    max-width: 170px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .why-choose__col--center {
    display: none !important;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.product-section {
  width: 100%;
  min-height: 100vh;
  background: url('/hcash-website/public/images/f6edb251ab1dac1f42d72618740ef16e.png') center center/cover no-repeat;
  /*background: url('/images/f6edb251ab1dac1f42d72618740ef16e.png') center center/cover no-repeat;*/
  background-color: #112048;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

/* ---- TOP ROW ---- */
.product-top-row {
  display: flex;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  margin-top: 60px;
  min-height: 410px;
  box-sizing: border-box;
}

.product-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-width: 0;
  box-sizing: border-box;
  padding: 44px 48px;
  overflow: visible;
}


.product-col--left h2 {
  font-size: 3.8rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}
.product-col--left p {
  color: #fff;
  font-size: 1.19rem;
  margin-bottom: 32px;
  line-height: 1.55;
}
.product-col--left .btn {
  width: 200px;
  padding: 14px 38px;
  background-color: #ffbc56;
  color: #FFF;
  font-size: 1.13rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.15s;
}
.product-col--left .btn:hover {
  background-color: #ffd185;
}

.product-col--right {
  position: relative;
  padding: 0;
  min-height: 410px;
  /* Ensures the column is at least as tall as the image */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 410px;
  /* No flex or centering here */
}

.product-col--right img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 900px;         /* Extra wide! Adjust as desired */
  max-width: none;
  height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  z-index: 3;
  /* This will stick the image to the right and allow it to overflow left */
}

/* ---- BOTTOM ROW ---- */
.product-bottom-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  width: 100%;
  max-width: 1240px;
  margin: 44px auto 0 auto;
  padding: 0 0 44px 24px;
  box-sizing: border-box;
}

.product-card {
  flex: 1 1 0;
  color: #fff;
  border-radius: 16px;
  padding: 38px 22px 32px 22px;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  transition: box-shadow 0.18s;
  position: relative;
}


.product-card-num {
  width: 40px;
  height: 40px;
  background: #081B31;
  color: #fff;
  border-radius: 50%;
  font-size: 1.42rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-left: 2px;
}

.product-card h3 {
  font-size: 1.41rem;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 15px;
  color: #fff;
}
.product-card p {
  font-size: 1.19rem;
  color: #e6e6e6;
  margin-bottom: 0;
}

/* --- MOBILE RESPONSIVENESS --- */
/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .product-top-row {
    flex-direction: column;
    align-items: center;
    min-height: unset;
    margin-top: 30px;
    gap: 30px;
  }
  .product-col {
    padding: 30px 22px 16px 22px;
    width: 100%;
    max-width: 600px;
    min-width: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .product-col--left h2 {
    font-size: 2.2rem;
  }
  .product-col--left p {
    font-size: 0.99rem;
  }
  .product-col--right {
    min-height: unset;
    justify-content: center;
  }
  .product-image-wrapper {
    min-height: unset;
    height: auto;
  }
  .product-col--right img {
    position: static;
    width: 360px;
    height: auto;
    max-width: 96vw;
    transform: none;
    margin: 0 auto;
    display: block;
  }
  .product-bottom-row {
    gap: 20px;
    padding: 0 0 22px 2px;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .product-section {
    min-height: unset;
    padding: 0;
  }
  .product-top-row {
    flex-direction: column;
    margin-top: 16px;
    gap: 20px;
    max-width: 99vw;
  }
  .product-col {
    padding: 20px 6px 8px 6px;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    align-items: center;
    text-align: center;
  }
  .product-col--left h2 {
    font-size: 1.3rem;
    margin-bottom: 13px;
  }
  .product-col--left p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .product-col--left .btn {
    width: 40%;
    padding: 12px 0;
    font-size: 0.98rem;
  }
  .product-col--right img {
    width: 220px;
    height: auto;
    max-width: 80vw;
    border-radius: 10px;
  }
  .product-bottom-row {
    flex-direction: column;
    gap: 12px;
    padding: 0 0 10px 0;
    max-width: 97vw;
  }
  .product-card {
    width: 100%;
    padding: 23px 10px 19px 10px;
    min-width: 0;
    text-align: center;
    margin: 0 auto;
    font-size: 1rem;
  }
  .product-card h3 {
    font-size: 1.08rem;
    margin-bottom: 14px;
    margin-top: 11px;
  }
  .product-card-num {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    margin-bottom: 9px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-card p {
    font-size: 0.97rem;
  }
}

@media (max-width: 600px) {
  .product-col--right {
    display: none !important;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.trusted-section {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  padding: 70px 0;
  box-sizing: border-box;
}

.trusted-container {
  position: relative;
  width: 100%;
  max-width: 1250px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.trusted-content {
  flex: 1 1 62%;
  background: #081B31;
  padding: 54px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  min-width: 0;
  z-index: 2;
  position: relative;
  /* box-shadow: 0 0 16px rgba(0,0,0,0.07); optional: helps with contrast */
}

.trusted-content h2 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 34px;
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
}
.trusted-content p {
  font-size: 1.19rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.99;
  color: #fff;
}

.trusted-image {
  flex: 1 1 50%;
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
  /* No background needed */
}

.trusted-image img {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 45px;
  height: 100%;
  min-height: 420px;
  width: 160%;
  max-width: none;
  object-fit: cover;
  z-index: 1;
  /* overflow to the left */
  transform: translateX(-80px); /* overflow left by 80px; adjust as needed */
  box-shadow: none;
  border-radius: 0;
  background: #eee;
  display: block;
  pointer-events: none; /* image can't block mouse on text */
}

/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .trusted-section {
    min-height: unset;
    padding: 36px 0 22px 0;
  }
  .trusted-container {
    flex-direction: column;
    align-items: center;
    max-width: 98vw;
  }
  .trusted-content {
    padding: 36px 22px 24px 22px;
    min-width: 0;
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .trusted-content h2 {
    font-size: 2.1rem;
    margin-bottom: 22px;
  }
  .trusted-content p {
    font-size: 1.04rem;
  }
  .trusted-image {
    width: 100%;
    margin: 0;
    padding: 0;
    min-width: 0;
    justify-content: center;
  }
  .trusted-image img {
    position: static;
    margin: 0 auto 12px auto;
    display: block;
    width: 95vw;
    min-width: 0;
    max-width: 98vw;
    height: auto;
    min-height: unset;
    transform: none;
    border-radius: 0;
    object-fit: contain;
    pointer-events: none;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .trusted-section {
    padding: 18px 0 6px 0;
    min-height: unset;
  }
  .trusted-content {
    padding: 18px 4px 13px 4px;
  }
  .trusted-content h2 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.14;
  }
  .trusted-content p {
    font-size: 0.97rem;
    line-height: 1.6;
  }
  .trusted-image img {
    width: 96vw;
    max-width: 99vw;
    min-width: 0;
    height: auto;
    min-height: unset;
    margin-bottom: 0;
  }
}




/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.partners-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
}

/* Header */

.partners-header {
  width: 100%;
  background: #0a1c2e;
  padding: 44px 0;
}

.partners-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
}

.partners-header h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -1px;
  text-align: center;
}

/* Logos */

.partners-logos {
  width: 100%;
  background: #fff;
  padding: 38px 0;
  border-top: 2px solid #ededed;
}

.partners-logos .logos-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 44px;
  padding: 0 18px;
}

.logos-container img {
  height: 44px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  margin: 8px 0;
  transition: transform 0.18s, filter 0.18s;
}

.logos-container img:hover {
  transform: scale(1.08);
  filter: brightness(1.08);
}

/* ==============================================
   Responsive Overrides
   ============================================== */

/* Tablet (≤ 1023px) */
@media (max-width: 1023px) {
  .partners-header {
    padding: 28px 0;
  }
  .partners-header .container {
    padding: 0 12px;
  }
  .partners-header h2 {
    font-size: 1.55rem;
  }

  .partners-logos {
    padding: 23px 0;
  }
  .partners-logos .logos-container {
    gap: 24px;
    padding: 0 12px;
  }
  .logos-container img {
    height: 36px;
    max-width: 120px;
  }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
  .partners-header {
    padding: 13px 0;
  }
  .partners-header .container {
    padding: 0 8px;
  }
  .partners-header h2 {
    font-size: 1.03rem;
  }

  .partners-logos {
    padding: 11px 0;
  }
  .partners-logos .logos-container {
    gap: 13px;
    padding: 0 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .partners-logos .logos-container::-webkit-scrollbar {
    display: none;
  }
  .logos-container img {
    height: 27px;
    max-width: 110px;
  }
}

/* Always center the logos, even on small screens */
@media (max-width: 767px) {
  .partners-logos .logos-container {
    flex-wrap: wrap !important;
    justify-content: center !important;
    overflow: visible !important;
    padding: 0 8px;  /* keep your side padding */
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.clients-section {
  width: 100%;
  background: #e7e5dd;
  padding: 56px 0;
  display: flex;
  justify-content: center;
}

.clients-section .container1 {
  max-width: 1200px;
  text-align: center;
}
.testimonial-heading {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 600;
  color: #222;
  margin-top: 40px;
  margin-bottom: 40px;
  letter-spacing: -1px;
}
/* Profile images row */
.clients-profiles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.client-img {
  border-radius: 50%;
  object-fit: cover;
  width: 60px;
  height: 60px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.client-img.center {
  width: 80px;
  height: 80px;
  opacity: 1;
  transform: scale(1.1);
}

/* slider layout */
.client-testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: space-between; /* prev at left, next at right */
  max-width: 800px;
  margin: 0 auto;
}

.client-testimonial-slider {
  max-width: 1200px;
}
.client-slides {
  flex: 1;
  position: relative;
}
.client-slide {
  display: none;
  text-align: center;
}
.client-slide.active {
  display: block;
}

/* nav buttons */
.client-nav {
  background: #0c1c2e;
  color: #fff;
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  font-size: 1.2em;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.client-nav:hover {
  background: #bfa56a;
}
.client-nav-prev {
  margin-right: 50px;
}
.client-nav-next {
  margin-left: 50px;
}

/* profiles row */
.profiles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.profile-wrapper {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.profile-wrapper.center {
  width: 80px; height: 80px;
  opacity: 1;
  transform: scale(1.1);
}

/* You can adjust these to match your brand colors */
.profile-wrapper.left   { background: #fde0e9; }
.profile-wrapper.center { background: #fff3cd; }
.profile-wrapper.right  { background: #f8d7da; }

.profile-wrapper img {
  width: 100%; height: auto;
  border-radius: 50%;
}

/* text */
.testimonial-content {
  text-align: center;
  max-width: 600px;
}
.testimonial-text {
  font-size: 1.21em;
  color: #333;
  line-height: 1.6;
  margin: 0 0 20px;
}
.testimonial-role {
  font-size: 1em;
  font-weight: normal;
  color: #555;
  margin-bottom: 5px;
}
.testimonial-name {
  font-size: 1.15em;
  font-weight: bold;
  color: #0c1c2e;
}

/* Responsiveness */
/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .clients-section {
    padding: 38px 0 18px 0;
  }
  .clients-section .container1 {
    max-width: 97vw;
  }
  .testimonial-heading {
    font-size: 1.45rem;
    margin-top: 20px;
    margin-bottom: 22px;
  }
  .client-testimonial-slider {
    max-width: 97vw;
  }
  .testimonial-text {
    font-size: 1.18em;
  }
  .profile-wrapper {
    width: 45px; height: 45px;
  }
  .profile-wrapper.center {
    width: 60px; height: 60px;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .clients-section {
    padding: 17px 0 8px 0;
  }
  .clients-section .container1 {
    padding: 0 2px;
    max-width: 99vw;
  }
  .testimonial-heading {
    font-size: 1.01rem;
    margin-top: 13px;
    margin-bottom: 14px;
  }
  .client-testimonial-slider {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 99vw;
  }
  .client-nav-prev, .client-nav-next {
    display: none;
  }
  .client-nav {
    width: 33px;
    height: 33px;
    font-size: 1em;
    margin: 0 7px 0 7px;
  }
  .client-slides {
    width: 100%;
    margin: 0 auto;
  }
  .profiles {
    gap: 6px;
    margin-bottom: 12px;
  }
  .profile-wrapper {
    width: 29px; height: 29px;
  }
  .profile-wrapper.center {
    width: 41px; height: 41px;
  }
  .profile-wrapper img {
    width: 100%; height: auto;
  }
  .testimonial-text {
    font-size: 0.95em;
    margin: 0 0 10px 0;
    padding: 0 2px;
  }
  .testimonial-role {
    font-size: 0.97em;
    margin-bottom: 2px;
  }
  .testimonial-name {
    font-size: 1em;
  }
}


/*client section ends */


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* informed section starts */

.informed-section {
  background-image: url('/hcash-website/public/images/08ce49e139cd8d15b536ba946f7371a02abf5ebb.png');
  /*background-image: url('/images/08ce49e139cd8d15b536ba946f7371a02abf5ebb.png');*/
  background-repeat: repeat;
  background-size: contain;
  background-color: #AA8338;
  background-blend-mode: soft-light;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}


.informed-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.informed-section h2 {
  font-size: 3.6em;
  margin-bottom: 40px;
}

.informed-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
  text-align: left;        /* ensure children are left-aligned */
}

.informed-intro p {
  flex: 1 1 280px;
  max-width: 400px;
  font-size: 1.14em;
  line-height: 1.6;
  color: #fff;
  text-align: left;        /* explicitly left-align the text */
}
.informed-cta {
  text-align: center;

  font-size: 2.6em;
  margin-bottom: 50px;
}

.home-blog-grid {

  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.home-blog-card {
  background: #fff;
  color: #0c1c2e;
  overflow: hidden;
  width: 350px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.home-blog-card:hover {
  transform: translateY(-5px);
}

.home-blog-card img {
  width: 100%;
  display: block;
  height: auto;
}

.home-blog-card h4 {
  padding: 15px;
  font-size: 1em;
  margin: 0;
  line-height: 1.4;
}

/* Responsiveness */

@media (max-width: 767px) {
  .home-blog-card {
    width: 85vw;
    max-width: 97vw;
    min-width: 0;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.11);
  }
  .home-blog-card h4 {
    font-size: 0.99em;
    padding: 10px 3px;
  }
}

/* informed section ends */


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.contact-section {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.contact-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 520px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 0 0 rgba(0,0,0,0.0);
}

.contact-form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 50px 90px 50px 90px;
}

.contact-form h2 {
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 36px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  font-size: 1.07rem;
  padding: 14px 14px;
  border: none;
  border-radius: 4px;
  background: #f7f7f7;
  color: #333;
  margin-bottom: 0;
  box-shadow: none;
  resize: none;
  outline: none;
  transition: box-shadow 0.14s, border 0.14s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px #c0a25944;
  border: 1px solid #bfa56a;
}

.contact-form button[type="submit"] {
  margin-top: 10px;
  padding: 13px 0;
  background: #bfa56a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}

.contact-form button[type="submit"]:hover {
  background: #a0853d;
}

.contact-image {
  flex: 1 1 50%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: #eee;
  margin-right: 0;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 400px;
  border-radius: 0;
}

/* RESPONSIVENESS */


/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .contact-content {
    flex-direction: column;
    min-height: unset;
    box-shadow: none;
  }
  .contact-form,
  .contact-image {
    width: 100%;
    min-width: 0;
    max-width: 99vw;
    flex: none;
    padding: 34px 24px;
    align-items: center;
    justify-content: center;
  }
  .contact-form h2 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .contact-image {
    min-height: 200px;
    max-height: 340px;
    padding: 0;
    margin: 0;
    background: #eee;
    align-items: center;
    justify-content: center;
  }
  .contact-image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    max-height: 340px;
    object-fit: cover;
    border-radius: 0;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .contact-section {
    padding: 0;
    margin: 0;
  }
  .contact-content {
    flex-direction: column;
    min-height: unset;
    width: 100%;
  }
  .contact-form {
    padding: 20px 5vw;
    min-width: 0;
    max-width: 99vw;
  }
  .contact-form h2 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-align: center;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.97rem;
    padding: 10px 9px;
  }
  .contact-form button[type="submit"] {
    font-size: 1.01rem;
    padding: 11px 0;
  }
  .contact-image {
    min-height: 140px;
    max-height: 180px;
    margin: 0;
    padding: 0;
    background: #eee;
    align-items: center;
    justify-content: center;
  }
  .contact-image img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    max-height: 180px;
    object-fit: cover;
    border-radius: 0;
  }
}

@media (max-width: 500px) {
  .contact-image {
    display: none !important;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.footer-section {
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
}

.footer-newsletter {
  text-align: center;
  padding: 68px 20px 44px 20px;
}

.footer-newsletter h2 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.footer-newsletter p {
  font-size: 1.12rem;
  color: #ddd;
  max-width: 620px;
  margin: 0 auto 40px auto;
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  max-width: 700px;
  height: 50px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  font-size: 1.12rem;
  border-radius: 10px;
  padding: 18px 24px;
  border: none;
  background: #fff;
  color: #232c3d;
  outline: none;
  min-width: 220px;
  width: 400px;
  max-width: 400px;
  height: 50px;
  box-shadow: 0 2px 24px rgba(25,39,78,0.05);
}

.newsletter-form button {
  background: #bfa56a;
  color: #232b38;
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 10px;
  border: none;
  height: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s;
}

.newsletter-form button:hover {
  background: #a18440;
  color: #fff;
}

.footer-main {
  border-top: 1px solid #35375e;
  padding: 54px 0 16px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3vw;
  display: flex;
  gap: 30px;
  justify-content: flex-start; /* changed from space-between to flex-start */
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 0;  /* Tighten vertical gaps */
}

.footer-brand {
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.footer-brand-text {
  color: #fff;
  font-size: 1.69rem;
  line-height: 1.35;
  margin-bottom: 22px;
}

.footer-brand-text .bold {
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

/* Socials immediately after the last link group on all screens */
.footer-socials {
  width: auto;
  display: flex;
  gap: 14px;
  margin-top: 0;           /* was -40px */
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-end;    /* sticks to the last line of link groups */
  /* Remove any media-query overrides that push socials further down */
}

.footer-socials a {
  color: #bfa56a;
  font-size: 1.32rem;
  transition: color 0.15s;
}
.footer-socials a:hover {
  color: #fff;
}

/* Reduce max-width and allow wrapping on links */
.footer-links {
  flex: 3 1 540px;    /* less aggressive width, allows wrapping */
  display: flex;
  gap: 28px;          /* was 40px */
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: row;
  position: relative;
  margin-left: 0;
  max-width: 800px;   /* new: keeps links closer to brand */
  width: 100%;
}

/* Tighten link group spacing on desktop and mobile */
.footer-link-group {
  min-width: 120px;  /* was 150px */
  margin-bottom: 10px; /* was 18px */
}

.footer-link-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 13px;
  font-size: 1.1rem;
}

.footer-link-group a {
  display: block;
  color: #cccccc;
  font-size: 1.04rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.16s;
}

.footer-link-group a:hover {
  color: #bfa56a;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 100vw;
  margin: 0 auto;
  text-align: left;
  padding: 22px 3vw 12px 3vw;
  border-top: 1px solid #35375e;
  font-size: 0.95rem;
  color: #bbb;
  margin-top: 16px;
  letter-spacing: 0.1px;
}

/* Responsiveness */

/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .footer-newsletter {
    padding: 34px 6px 24px 6px;
  }
  .footer-newsletter h2 {
    font-size: 1.55rem;
    letter-spacing: normal;
    margin-bottom: 10px;
  }
  .footer-newsletter p {
    font-size: 1rem;
    margin-bottom: 23px;
  }
  .newsletter-form {
    gap: 9px;
    max-width: 55vw;
    flex-wrap: wrap;
  }
  .newsletter-form input[type="email"] {
    font-size: 1rem;
    padding: 12px 16px;
    min-width: 150px;
    width: 230px;
    max-width: 250px;
    height: 36px;
  }
  .newsletter-form button {
    font-size: 1rem;
    padding: 11px 16px;
    border-radius: 8px;
    height: 36px;
  }
  .footer-main {
    padding: 26px 0 6px 0;
  }
  .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    max-width: 97vw;
    padding: 0 2vw;
  }
  .footer-brand {
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .footer-logo {
    width: 220px;
    margin-bottom: 8px;
  }
  .footer-brand-text {
    font-size: 1.1rem;
    margin-bottom: 13px;
  }
  .footer-links {
    flex-direction: row;
    gap: 17px;
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  .footer-link-group {
    min-width: 120px;
    margin-bottom: 10px;
  }
  .footer-link-title {
    font-size: 1rem;
    margin-bottom: 7px;
  }
  .footer-socials {
    margin-top: 0;
    gap: 14px;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer-socials a {
    font-size: 1.08rem;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .footer-newsletter {
    padding: 13px 1vw 10px 1vw;
  }
  .footer-newsletter h2 {
    font-size: 1.08rem;
    margin-bottom: 6px;
  }
  .footer-newsletter p {
    font-size: 0.98rem;
    margin-bottom: 12px;
    line-height: 1.5;
    max-width: 99vw;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-width: 100vw;
    height: auto;
    margin-bottom: 6px;
  }
  .newsletter-form input[type="email"] {
    width: 99vw;
    max-width: 99vw;
    min-width: 0;
    font-size: 0.99rem;
    padding: 10px 7px;
    height: 33px;
  }
  .newsletter-form button {
    width: 99vw;
    max-width: 99vw;
    padding: 9px 0;
    font-size: 0.97rem;
    border-radius: 7px;
    height: 33px;
  }
  .footer-main {
    padding: 10px 0 3px 0;
  }
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding: 0 1vw;
  }
  .footer-brand {
    align-items: flex-start;
    margin-bottom: 7px;
  }
  .footer-logo {
    width: 90px;
  }
  .footer-brand-text {
    font-size: 0.93rem;
    margin-bottom: 6px;
  }
  .footer-links {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    margin-left: 0;
    align-items: flex-start;
  }
  .footer-link-group {
    min-width: 0;
    margin-bottom: 4px;
  }
  .footer-link-title {
    font-size: 0.98rem;
    margin-bottom: 2px;
  }
  .footer-link-group a {
    font-size: 0.97rem;
    margin-bottom: 3px;
  }
  .footer-socials {
    justify-content: center;
    gap: 9px;
    margin-top: 9px;
  }
  .footer-socials a {
    font-size: 1rem;
  }
  .footer-bottom {
    padding: 11px 1vw 6px 1vw;
    font-size: 0.87rem;
    text-align: center;
    margin-top: 5px;
  }
}



/* ————————————————
   1 & 2. MOBILE: center brand & links; increase spacing
   ———————————————— */
@media (max-width: 767px) {
  /* Stack and center all footer blocks, with more gap */
  .footer-main .footer-container {
    flex-direction: column;
    align-items: center !important;
    gap: 0 !important;    /* increase space between brand, links, socials */
    padding: 0 1vw;          /* keep your side padding */
  }

  /* Center the brand block */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  /* Center the links block */
  .footer-links {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }

  /* Center each group of links */
  .footer-link-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ————————————————
   3. DESKTOP: center the social icons
   ———————————————— */
@media (min-width: 1024px) {
  .footer-socials {
    width: 100%;
    justify-content: center !important;  /* horizontally center icons */
    margin-top: 20px;                     /* add some top spacing */
    align-self: auto;                     /* reset flex alignment */
  }

  /* Ensure social block sits on its own row */
  .footer-main .footer-container {
    flex-wrap: wrap;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.about-hero-section {
  width: 100%;
  height: 740px;
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-hero-container3 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.about-hero-left {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 38px 0;
}

.about-hero-left h1 {
  font-size: 65px;
  font-weight: 350;
  letter-spacing: 2px;
  margin-bottom: 34px;
  line-height: 1.05;
}

.about-hero-left p {
  font-size: 1.19em;
  line-height: 36px;
  color: #e0e6ed;
  width: 100%;
  margin-bottom: 0;
  line-height: 2.5;
}

.about-hero-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 350px;
  margin-bottom: -240px;
}

.about-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(20,30,40,0.15);
  display: block;
  background: #222d3e;
}

/* Responsiveness */

/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .about-hero-section {
    height: auto;
    min-height: 440px;
    padding: 0;
    background-position: center center;
  }
  .about-hero-container3 {
    flex-direction: column;
    gap: 25px;
    max-width: 96vw;
    padding: 45px 0 0 0;
    align-items: center;
    justify-content: flex-start;
  }
  .about-hero-left {
    padding: 18px 3vw 14px 3vw;
    align-items: flex-start;
  }
  .about-hero-left h1 {
    font-size: 2.4rem;
    margin-bottom: 19px;
  }
  .about-hero-left p {
    font-size: 1.01rem;
    line-height: 2;
    margin-bottom: 0;
  }
  .about-hero-right {
    min-width: 0;
    margin-bottom: -60px;
    justify-content: center;
    width: 100%;
  }
  .about-hero-right img {
    max-width: 430px;
    height: 240px;
    min-height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(20,30,40,0.11);
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .about-hero-section {
    height: auto;
    min-height: 260px;
    padding: 0;
  }
  .about-hero-container3 {
    flex-direction: column;
    gap: 13px;
    max-width: 99vw;
    padding: 18px 0 0 0;
    align-items: center;
    justify-content: flex-start;
  }
  .about-hero-left {
    padding: 9px 3vw 6px 3vw;
    align-items: flex-start;
  }
  .about-hero-left h1 {
    font-size: 1.27rem;
    margin-bottom: 7px;
    letter-spacing: 1px;
  }
  .about-hero-left p {
    font-size: 0.97rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .about-hero-right {
    margin-bottom: 0;
    justify-content: center;
    width: 100%;
    min-width: 0;
  }
  .about-hero-right img {
    max-width: 98vw;
    height: 122px;
    min-height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0 auto;
    box-shadow: 0 1px 7px rgba(20,30,40,0.12);
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.mission-vision-section {
  width: 100vw;
  background: #fff;
  padding: 70px 0 40px 0;
  margin-top: 180px;
}

.mv-header {
  text-align: center;
  margin-bottom: 56px;
}

.mv-header h2 {
  font-size: 3rem;
  color: #232323;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
}

.mv-header p {
  font-size: 1.24rem;
  color: #687085;
  margin: 0;
  font-weight: 400;
}

.mv-content {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: center;


}

.mv-text-outer {
  flex: 1 1 52%;
  display: flex;
  align-items: center;   /* <-- Vertically center mv-text inside */
}

.mv-text {
  width: 100%;
  flex: 1 1 52%;
  font-size: 1.19rem;
  color: #1a1b22;
  display: flex;
  flex-direction: column;
  gap: 28px;
  line-height: 1.7;
  justify-content: center;   /* <-- Center vertically */
  height: 100%;              /* Optional, ensures full column height */
}

.mv-text strong {
  font-weight: 700;
  color: #232323;
}

.mv-image {
  flex: 1 1 48%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mv-image img {
  width: 100%;
  max-width: 500px;
  min-width: 260px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(28,36,50,0.09);
}

/* Responsiveness  */
/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .mission-vision-section {
    padding: 32px 0 18px 0;
    margin-top: 80px;
  }
  .mv-header {
    margin-bottom: 22px;
  }
  .mv-header h2 {
    font-size: 2rem;
    margin-bottom: 7px;
  }
  .mv-header p {
    font-size: 1.07rem;
  }
  .mv-content {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-width: 97vw;
  }
  .mv-text-outer {
    width: 100%;
    flex: none;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .mv-text {
    font-size: 1.04rem;
    gap: 12px;
    padding: 0 3vw;
  }
  .mv-image {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .mv-image img {
    max-width: 350px;
    min-width: 120px;
    width: 95vw;
    margin: 0 auto;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .mission-vision-section {
    padding: 12px 0 8px 0;
    margin-top: 34px;
  }
  .mv-header {
    margin-bottom: 9px;
  }
  .mv-header h2 {
    font-size: 1.13rem;
    margin-bottom: 2px;
  }
  .mv-header p {
    font-size: 0.96rem;
  }
  .mv-content {
    flex-direction: column;
    gap: 7px;
    align-items: center;
    max-width: 99vw;
    padding: 0 2vw;
  }
  .mv-text-outer {
    width: 100%;
    margin-bottom: 5px;
    align-items: flex-start;
    padding: 0;
  }
  .mv-text {
    font-size: 0.97rem;
    gap: 6px;
    padding: 0 1vw;
  }
  .mv-image {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
  }
  .mv-image img {
    max-width: 95vw;
    min-width: 0;
    width: 100%;
    margin: 0 auto;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.why-stands-out {
  background: #fff;
  padding: 70px 0 60px 0;
  text-align: center;
}

.why-stands-out h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #232323;
  margin-bottom: 54px;
  letter-spacing: -1.2px;
}

.features-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 48px;
  justify-items: center;
  align-items: start;
}

.feature-item {
  text-align: left;
  max-width: 350px;
  margin: 0 auto;
}

.feature-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #B4D6C4;
  color: #8bc09b;
  font-size: 1.45rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: transparent;
}

.feature-item h3 {
  font-size: 1.35rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 14px;
  margin-top: 0;
}

.feature-item p {
  font-size: 1rem;
  color: #757575;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 950px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 36px;
  }
  .why-stands-out h2 {
    font-size: 2rem;
    margin-bottom: 38px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 36px 0;
    padding: 0 7vw;
  }
  .why-stands-out {
    padding: 38px 0 30px 0;
  }
  .why-stands-out h2 {
    font-size: 1.3rem;
    margin-bottom: 19px;
  }
  .feature-number {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .feature-item h3 {
    font-size: 1.04rem;
    margin-bottom: 8px;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.constituents-section {
  background: #fff;
  width: 100vw;
  padding: 100px 0 70px 0;
}

.constituents-container {
  width: 90vw;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.constituents-image {
  flex: 1 1 58%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;


}

.constituents-image img {
  width: 88%;
  height: 100%;
  margin-top: 105px;
  object-fit: cover;
  border-radius: 0 0 0 0;
  box-shadow: 0 0 0 rgba(0,0,0,0.03);
  display: block;
}

.constituents-card {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0c1c2e;
  color: #fff;
  padding: 48px 44px 40px 44px;
  border-radius: 0px;
  box-shadow: 0 8px 44px rgba(20,30,50,0.15);
  width: 55vw;
  max-width: 750px;
  min-width: 320px;
  z-index: 2;
  margin-left: 0;
}

.constituents-card h2 {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 38px;
}

.constituents-card h4 {
  font-size: 1.23rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.constituents-card ul {
  list-style: disc inside;
  font-size: 1.19rem;
  line-height: 1.8;
  padding-left: 16px;
  color: #e8eefd;
  margin: 0;
}

.constituents-card ul li {
  margin-bottom: 4px;
}

/* Responsiveness */
/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .constituents-section {
    padding: 50px 0 30px 0;
  }
  .constituents-container {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
    width: 98vw;
    max-width: 99vw;
    justify-content: center;
    position: static;
  }
  .constituents-card {
    position: static;
    transform: none;
    width: 100%;
    max-width: 99vw;
    min-width: 0;
    margin-bottom: 23px;
    padding: 32px 18px 24px 18px;
    box-shadow: 0 4px 22px rgba(20,30,50,0.12);
  }
  .constituents-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .constituents-card h4 {
    font-size: 1.06rem;
    margin-bottom: 9px;
  }
  .constituents-card ul {
    font-size: 1.01rem;
    padding-left: 8px;
  }
  .constituents-image {
    flex: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .constituents-image img {
    width: 93vw;
    height: 200px;
    min-height: 80px;
    margin-top: 0;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 1px 9px rgba(20,30,50,0.10);
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .constituents-section {
    padding: 15px 0 12px 0;
  }
  .constituents-container {
    flex-direction: column;
    align-items: stretch;
    width: 99vw;
    max-width: 99vw;
  }
  .constituents-card {
    position: static;
    transform: none;
    width: 100%;
    max-width: 99vw;
    min-width: 0;
    margin-bottom: 8px;
    padding: 14px 6px 10px 6px;
    box-shadow: 0 2px 8px rgba(20,30,50,0.11);
  }
  .constituents-card h2 {
    font-size: 1.03rem;
    margin-bottom: 7px;
  }
  .constituents-card h4 {
    font-size: 0.96rem;
    margin-bottom: 4px;
  }
  .constituents-card ul {
    font-size: 0.95rem;
    padding-left: 3px;
  }
  .constituents-image {
    flex: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .constituents-image img {
    width: 97vw;
    height: 130px;
    min-height: 55px;
    margin-top: 0;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(20,30,50,0.09);
  }
}




/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.services-hero-section {
  width: 100vw;
  height: 740px;
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.services-hero-container {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.services-hero-left {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 38px 0;
}

.services-hero-left h1 {
  font-size: 65px;
  font-weight: 350;
  letter-spacing: 2px;
  margin-bottom: 34px;
  line-height: 1.05;
}

.services-hero-left p {
  font-size: 17.3px;
  line-height: 36px;
  color: #e0e6ed;
  width: 100%;
  margin-bottom: 0;
  line-height: 2.5;
}

.services-hero-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 350px;
  margin-bottom: -380px;
}

.services-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(20,30,40,0.15);
  display: block;
  background: #222d3e;
}

@media (max-width: 1100px) {
  .services-hero-container {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    padding: 32px 0 0 0;
  }
  .services-hero-left, .service-hero-right {
    padding: 0 4vw;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .services-hero-right img {
    width: 98vw;
    max-width: 470px;
    height: 310px;
  }
  .services-hero-left h1 {
    font-size: 2.3rem;
    margin-bottom: 19px;
  }
}

@media (max-width: 650px) {
  .services-hero-container3 {
    gap: 18px;
    padding: 20px 0 0 0;
  }
  .services-hero-left {
    padding: 0 7vw;
    text-align: left;
    align-items: flex-start;
  }
  .services-hero-left h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .services-hero-left p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .services-hero-right {
    padding: 0;
    min-width: 0;
  }
  .services-hero-right img {
    height: 170px;
    max-width: 100vw;
    border-radius: 16px;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.services-offered-section {
  background: #fff;
  padding: 50px 0 70px 0;
  margin-top: 105px;
}

.services-offered-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 30px;
}

.services-offered-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #161718;
  letter-spacing: 0.5px;
}

.services-offered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: transparent;
}

.service-number {
  font-size: 2rem;
  color: #72b088;
  border: 1px solid #dbe7df;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  background: #fafcfb;
  font-weight: 400;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #212325;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 2px;
}

.service-card p {
  color: #727c8a;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
}

/* Responsive styles */
@media (max-width: 1000px) {
  .services-offered-title {
    font-size: 2rem;
  }
  .services-offered-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 36px 22px;
  }
}

@media (max-width: 700px) {
  .services-offered-grid {
    grid-template-columns: 1fr;
    grid-gap: 28px 0;
  }
  .services-offered-container {
    padding: 0 12px;
  }
  .services-offered-title {
    font-size: 1.35rem;
    margin-bottom: 25px;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-number {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.wallet-hero-section {
  width: 100%;
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
}

.wallet-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 55px;
  justify-content: space-between;
  align-items: stretch;
  padding: 120px 0 0;
}

/* Left */
.wallet-hero-left {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0;
}

.wallet-hero-left h1 {
  font-size: 65px;
  font-weight: 350;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.05;
}

.wallet-hero-sub {
  max-width: 97%;
  color: #e0e6ed;
  font-size: 1.19em;
  margin-bottom: 30px;
}

.wallet-hero-image {
  margin-top: 20px;
  width: 360px;
  max-width: 95vw;
}
.wallet-hero-image img {
  width: 220%;
  display: block;
  margin-bottom: -100px;
  margin-left: -48px;
}

/* Right */
.wallet-hero-right {
  flex: 1 1 50%;
  background: #081b31;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 38px;
  margin-top: 50px;
  margin-left: 100px;
  margin-bottom: -55px;
}

.wallet-hero-right-container {
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wallet-hero-right h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 18px;
}

/* Features */
.wallet-hero-rating {
  display: flex;
  align-items: baseline;
  margin-bottom: 18px;
}
.stars {
  color: #f7c948;
  font-size: 1.6em;
  letter-spacing: 2px;
  margin-right: 10px;
}
.reviews {
  color: #9ca3af;
  font-size: 1.3em;
}

.wallet-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.wallet-feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  color: #d5e3f3;
  font-size: 1.3rem;
  line-height: 1.5;
}
.wallet-feature-list li::before {
  content: '✔';
  color: #5ec4ff;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 2px;
}

/* ————————————————
   Button Links
   ———————————————— */
.wallet-hero-buttons {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}

/* Make buttons flex containers to align icon + text */
.wallet-hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;              /* space between icon and text */
}

/* Size of the store icons */
.wallet-hero-buttons .store-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;        /* keep icon from shrinking */
}

/* Primary (Play Store) */
.wallet-install-btn {
  flex: 1;
  display: inline-block;
  text-align: center;
  background: #fff;
  color: #0b1d31;
  font-size: 1.19rem;
  font-weight: 400;
  padding: 18px 0;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: background 0.2s;
}
.wallet-install-btn:hover {
  background: #f4d063;
}

/* Secondary (App Store) */
.wallet-secondary-btn {
  flex: 1;
  display: inline-block;
  text-align: center;
  background: transparent;
  color: #fff;
  font-size: 1.19rem;
  font-weight: 400;
  padding: 16px 0;
  border: 2px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.wallet-secondary-btn:hover {
  background: #f4d063;
  color: #0b1d31;
}

/* ————————————————
   Responsive
   ———————————————— */
/* Tablet */
@media (max-width: 1024px) {
  .wallet-hero-section {
    min-height: 100vh;
    padding-bottom: 20px;
  }
  .wallet-hero-container {
    flex-direction: column;
    gap: 30px;
    padding: 60px 0 0;
  }
  .wallet-hero-left,
  .wallet-hero-right {
    width: 100%;
    margin: 0;
    padding: 20px 0;
  }
  .wallet-hero-left h1 {
    font-size: 2.5rem;
  }
  .wallet-hero-sub {
    font-size: 1rem;
  }
  .wallet-hero-image {
    width: 270px;
    margin: 0 auto 10px;
  }
  .wallet-hero-image img {
    width: 170%;
    margin-left: -20px;
    margin-bottom: -40px;
  }
  .wallet-hero-right {
    border-radius: 10px;
    justify-content: flex-start;
    padding: 22px 0;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .wallet-hero-section {
    height: auto;
    padding: 0 0 30px;
    background-position: right top;
  }
  .wallet-hero-container {
    flex-direction: column;
    gap: 18px;
    padding: 20px 0 0;
  }
  .wallet-hero-left {
    padding: 8vw 5vw 0;
  }
  .wallet-hero-left h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  .wallet-hero-sub {
    font-size: 0.95rem;
  }
  .wallet-hero-image {
    width: 78vw;
    margin: 10px auto 0;
  }
  .wallet-hero-image img {
    width: 100%;
    margin-bottom: -14px;
    border-radius: 5px;
  }
  .wallet-hero-right {
    background: #081b31;
    border-radius: 9px;
    padding: 0 3vw 24px;
    align-items: flex-start;
  }
  .wallet-hero-right h2 {
    font-size: 1.28rem;
  }
  .wallet-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .wallet-install-btn,
  .wallet-secondary-btn {
    width: 100%;
    padding: 13px 0;
    font-size: 1rem;
  }
}

/* Prevent horizontal scroll on all mobile */
@media (max-width: 800px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.wallet-transfer-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.transfer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 135px;
}
.transfer-info {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.wallet-transfer-tagline {
  font-size: 2.19rem;
  font-style: italic;
  color: #000000;
  margin-bottom: 6px;
}
.wallet-transfer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #1B222B;
}
.transfer-row {
  display: flex;
  width: 100%;
  gap: 40px;
  align-items: stretch;
  justify-content: center;
}
.transfer-list {
  flex: 1 1 48%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.transfer-item {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 16px 18px 10px 18px;
  margin-bottom: 0;
  box-shadow: none;
  border-left: 1.8px solid black;
  transition: box-shadow 0.2s;
}
.transfer-item:hover {
  box-shadow: 0 3px 10px rgba(80, 80, 120, 0.08);
}
.transfer-title {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 3px;
  color: #1c2129;
}
.transfer-desc {
  color: #555;
  font-size: 0.74rem;
  line-height: 1.45;
}
.transfer-image {
  flex: 1 1 39%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.transfer-image img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

@media (max-width: 900px) {
    .transfer-container {
        margin-top: auto;
    }
  .transfer-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .transfer-list, .transfer-image {
    max-width: 100%;
  }
  .transfer-image img {
    max-width: 320px;
  }
}
@media (max-width: 600px) {
  .wallet-transfer-title { font-size: 1.2rem; }
  .wallet-transfer-tagline { font-size: 1rem; }
  .transfer-item { padding: 12px 10px 8px 12px; }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.why-mobile-wallet {
  padding: 70px 0 100px;
  background: #fff;
}

.why-mobile-wallet-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.why-mobile-wallet-container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: #161a1e;
}

.why-mobile-wallet-container ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.why-mobile-wallet-container ul li {
  font-size: 1.35rem;
  color: #23272b;
  margin-bottom: 22px;
  line-height: 1.5;
}

.why-mobile-wallet-container ul li b {
  font-weight: 700;
  color: #161a1e;
}

/* Two-button wrapper */
.why-mobile-wallet-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

/* Anchor elements styled as buttons, now stacking icon above text */
.why-mobile-wallet-buttons a {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;                     /* space between icon and text */
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 12px rgba(30, 34, 40, 0.08);
}

/* Store icon sizing */
.why-mobile-wallet-buttons .store-icon {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

/* Primary button: Play Store */
.install-btn.play-store-btn {
  background: #bfa56a;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 22px 64px;
  border: none;
}
.install-btn.play-store-btn:hover {
  background: #0c1c2e;
  color: #fff;
}

/* Secondary button: App Store */
.install-secondary-btn.app-store-btn {
  background: transparent;
  color: #0c1c2e;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 22px 64px;
  border: 2px solid #0c1c2e;
}
.install-secondary-btn.app-store-btn:hover {
  background: #bfa56a;
  color: #fff;
}

/* Responsive: stack buttons on narrow screens */
@media (max-width: 650px) {
  .why-mobile-wallet-container h2 {
    font-size: 2rem;
  }
  .why-mobile-wallet-container ul li {
    font-size: 1rem;
  }

  .why-mobile-wallet-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }
  .why-mobile-wallet-buttons a {
    padding: 15px 0;
    font-size: 1.1rem;
    box-shadow: none;
  }
  .install-btn.play-store-btn,
  .install-secondary-btn.app-store-btn {
    padding: 15px 0;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.savings-account-hero-section {
  width: 100vw;
  height: 740px;
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.savings-account-hero-container3 {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.savings-account-hero-left {
  flex: 1 1 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 38px 0px;
}

.savings-account-hero-left h1 {
  font-size: 60px;
  font-weight: 350;
  letter-spacing: 2px;
  margin-bottom: 34px;
  line-height: 1.05;
}

.savings-account-hero-left p {
  font-size: 17.3px;
  line-height: 2.5;
  color: #e0e6ed;
  max-width: 97%;
  margin-bottom: 0;
}

.savings-account-hero-right {
  flex: 1 1 44%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 350px;
  padding: 0 56px 0 0;
  margin-bottom: -350px;
}

.savings-account-hero-right img {
  width: 100%;
  height: 100%;
  max-width: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(20,30,40,0.15);
  display: block;
  background: #222d3e;
}

@media (max-width: 1100px) {
  .savings-account-hero-container3 {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    padding: 32px 0 0 0;
  }
  .savings-account-hero-left, .about-hero-right {
    padding: 0 4vw;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .savings-account-hero-right img {
    width: 98vw;
    max-width: 470px;
    height: 310px;
  }
  .savings-account-hero-left h1 {
    font-size: 2.3rem;
    margin-bottom: 19px;
  }
}

@media (max-width: 650px) {
  .savings-account-hero-container3 {
    gap: 18px;
    padding: 20px 0 0 0;
  }
  .savings-account-hero-left {
    padding: 0 7vw;
    text-align: left;
    align-items: flex-start;
  }
  .savings-account-hero-left h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .savings-account-hero-left p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .savings-account-hero-right {
    padding: 0;
    min-width: 0;
  }
  .savings-account-hero-right img {
    height: 170px;
    max-width: 100vw;
    border-radius: 16px;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.blank {
  width: 100%;
  height: 100vh;
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.enterprise-hero {
  width: 100vw;
  height: 740px;
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.enterprise-hero-container {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.enterprise-hero-left {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 0 0;
}

.enterprise-hero-left h1 {
  font-size: 65px;
  font-weight: 350;
  letter-spacing: 2px;
  margin-bottom: 34px;
  line-height: 1.05;
}

.enterprise-hero-left p {
  font-size: 17.3px;
  line-height: 36px;
  color: #e0e6ed;
  width: 100%;
  margin-bottom: 0;
  line-height: 2;
}

.enterprise-script {
  font-family: 'MonteCarlo';
  font-size: 40px !important;
  margin-top: 22px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 5px;
}

.enterprise-hero-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 350px;
  margin-bottom: -130px;
}

.enterprise-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(20,30,40,0.15);
  display: block;
  background: #222d3e;
}

@media (max-width: 1100px) {
  .enterprise-hero-container {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    padding: 32px 0 0 0;
  }
  .enterprise-hero-left, .enterprise-hero-right {
    padding: 0 4vw;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .enterprise-hero-right img {
    width: 98vw;
    max-width: 470px;
    height: 310px;
  }
  .enterprise-hero-left h1 {
    font-size: 2.3rem;
    margin-bottom: 19px;
  }
}

/* Responsiveness */

@media (max-width: 700px) {
  .enterprise-hero {
    min-height: unset;
    height: auto;
    padding: 0;
    background-position: right top;
  }
  .enterprise-hero-container {
    flex-direction: column;
    gap: 16px;
    padding: 32px 0 0 0;
    align-items: stretch;
  }
  .enterprise-hero-left,
  .enterprise-hero-right {
    padding: 0 5vw;
    text-align: left;
    align-items: flex-start;
    margin: 0;
  }
  .enterprise-hero-left h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  .enterprise-hero-left p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 8px;
  }
  .enterprise-script {
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    margin-top: 18px;
    text-align: left;
  }
  .enterprise-hero-right {
    min-width: 0;
    margin-bottom: 0;
    justify-content: center;
  }
  .enterprise-hero-right img {
    width: 95vw;
    max-width: 99vw;
    height: auto;
    min-height: 160px;
    border-radius: 7px;
    margin-top: 14px;
  }
}

@media (max-width: 420px) {
  .enterprise-hero-left h1 {
    font-size: 1.1rem;
  }
  .enterprise-script {
    font-size: 1.01rem;
  }
  .enterprise-hero-right img {
    min-height: 90px;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.enterprise-features {
  background: #fff;
  padding: 80px 0 40px 0;
  margin-top: 100px;
}

.enterprise-features-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 24px;
}

.ef-left {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 24px;
  margin: auto;
}

.ef-left h2 {
  font-size: 2.4rem;
  font-weight: 450;
  line-height: 1.68;
  margin-bottom: 24px;
  color: #000000;
}

.ef-support {
  color: #7a7d84;
  font-size: 1.11rem;
  margin-bottom: 32px;
}

.ef-btn {
  width: 260px;
  height: 80px;
  background: #102033;
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  border: none;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.ef-btn:hover {
  background: #18395b;
}

.ef-rating {
  margin-top: 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 3px;
}
.ef-rating .star {
  color: #FFC107;
  font-size: 1.7rem;
}
.ef-rating .rating-value {
  color: #102033;
  font-size: 1.2rem;
  margin-left: 6px;
  margin-top: 4px;
}

/* RIGHT COLUMN */
.ef-right {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ef-card {
  background: #f6f7f9;
  border-radius: 16px;
  box-shadow: 0 6px 18px 0 rgba(18, 24, 40, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 28px;
  margin-bottom: 0;
}
.ef-card .ef-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eceeef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ef-card .ef-icon img {
  width: auto;
  height: auto;
  object-fit: contain;
}
.ef-card strong {
  color: #191f26;
  font-size: 1.7rem;
  line-height: 2;
  text-align: center;
}
.ef-card p {
  color: #67696e;
  margin-top: 4px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
}


/* Responsive */
/* ======= RESPONSIVENESS ======= */
@media (max-width: 1020px) {
  .enterprise-features-container {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
    padding: 0 4vw;
  }
  .ef-left, .ef-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
  }
  .ef-left {
    align-items: flex-start;
    padding-bottom: 18px;
  }
  .ef-left h2 {
    font-size: 2rem;
    text-align: left;
  }
  .ef-btn {
    width: 100%;
    height: auto;
    min-height: 52px;
    font-size: 1.05rem;
    padding: 13px 0;
  }
}

@media (max-width: 700px) {
  .enterprise-features {
    padding: 40px 0 22px 0;
    margin-top: 28px;
  }
  .enterprise-features-container {
    gap: 22px;
    padding: 0 2vw;
  }
  .ef-left h2 {
    font-size: 1.27rem;
    line-height: 1.4;
    margin-bottom: 17px;
  }
  .ef-support {
    font-size: 0.98rem;
    margin-bottom: 19px;
  }
  .ef-rating {
    font-size: 1rem;
    gap: 2px;
  }
  .ef-rating .star {
    font-size: 1.17rem;
  }
  .ef-rating .rating-value {
    font-size: 1.09rem;
    margin-top: 1px;
  }
  .ef-btn {
    width: 100%;
    min-width: 0;
    font-size: 0.98rem;
    padding: 10px 0;
    border-radius: 7px;
    height: 48px;
  }
  .ef-right {
    gap: 14px;
  }
  .ef-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px 10px;
  }
  .ef-card .ef-icon {
    width: 36px;
    height: 36px;
  }
  .ef-card strong {
    font-size: 1.11rem;
    line-height: 1.5;
    text-align: left;
  }
  .ef-card p {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

@media (max-width: 500px) {
  .enterprise-features {
    padding: 17px 0 9px 0;
    margin-top: 11px;
  }
  .enterprise-features-container {
    gap: 9px;
    padding: 0 1vw;
  }
  .ef-left h2 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 11px;
  }
  .ef-btn {
    font-size: 0.93rem;
    height: 44px;
  }
  .ef-card strong {
    font-size: 1rem;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.enterprise-collections {
  max-width: 1250px;
  margin: 0 auto;
  background: #fff;
  padding: 44px 0 44px 0;
  text-align: center;

}

.ec-row {
  max-width: 1250px;
  margin-bottom: 30px;
}

.ec-row:last-child {
  margin-bottom: 0;
}

.enterprise-collections strong {
  display: block;
  font-weight: 600;
  font-size: 1.21rem;
  color: #34373a;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.enterprise-collections p {
  color: #555d61;
  font-size: 1.35rem;
  margin: 0 auto;
  max-width: 850px;
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 700px) {
  .enterprise-collections {
    padding: 28px 8px 12px 8px;
  }
  .enterprise-collections p {
    font-size: 0.97rem;
    max-width: 95vw;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.merchant-hero-section {
  width: 100vw;
  height: 740px;
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.merchant-hero-container {
  width: 100vw;
  height: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.merchant-hero-left {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 38px 0;
}

.merchant-hero-left h1 {
  font-size: 65px;
  font-weight: 400;
  margin-bottom: 34px;
  letter-spacing: 2px;
  line-height: 1.05;
}

.merchant-hero-left p {
  font-size: 17.0px;
  max-width: 97%;
  line-height: 2.0;
  color: #e0e6ed;
  margin-bottom: 0;
}

.merchant-hero-right {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 350px;
  margin-bottom: -70px;  /* Negative margin pushes image beyond section */
}

.merchant-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 50px rgba(14,40,80,0.18);
  display: block;
}

/* Responsive styles */
@media (max-width: 1100px) {
  .merchant-hero-container {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    padding: 32px 0 0 0;
  }
  .merchant-hero-left, .merchant-hero-right {
    padding: 0 4vw;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .merchant-hero-left h1 {
    font-size: 2.4rem;
    margin-bottom: 19px;
  }
  .merchant-hero-right img {
    width: 98vw;
    max-width: 430px;
    height: 260px;
  }
}

@media (max-width: 700px) {
  .merchant-hero-section {
    height: auto;
    padding-bottom: 26px;
  }
  .merchant-hero-container {
    gap: 17px;
    padding: 19px 0 0 0;
  }
  .merchant-hero-left h1 {
    font-size: 1.33rem;
    margin-bottom: 10px;
  }
  .merchant-hero-left p {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .merchant-hero-left, .merchant-hero-right {
    padding: 0 1vw;
  }
  .merchant-hero-right img {
    max-width: 98vw;
    width: 99vw;
    height: 160px;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.merchant-solutions-section {
  width: 100%;
  padding: 56px 0 170px 0;
  margin-top: 80px;
}

.merchant-solutions-header {
  max-width: 1200px;
  margin: 0 auto 36px auto;
  padding: 0 24px;
}

.merchant-solutions-header h2 {
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 32px;
  color: #111;
  letter-spacing: -1px;
  line-height: 1.6;
}

.merchant-solutions-header ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.merchant-solutions-header ul li {
  margin-bottom: 18px;
  font-size: 22px;
  color: #444;
  line-height: 2.0;
}

.merchant-solutions-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  max-width: 1250px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 24px;
}

.merchant-card {
  background: #f5f5f5;
  border-radius: 14px;
  box-shadow: none;
  padding: 28px 26px 20px 32px;
  border-left: 2.5px solid black;
  transition: box-shadow 0.18s;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.merchant-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  color: #191c1f;
  margin: 0 0 10px 0;
}
.merchant-card p {
  font-size: 0.8rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .merchant-solutions-cards {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 600px;
  }
  .merchant-solutions-header {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .merchant-solutions-header h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  .merchant-solutions-header ul li {
    font-size: 1.1rem;
  }
  .merchant-solutions-section {
    padding: 24px 0 18px 0;
  }
  .merchant-card {
    padding: 20px 13px 15px 18px;
    font-size: 1rem;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.individual-account-hero-section {
  width: 100vw;
  height: 740px;
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.individual-account-hero-container {
  width: 100vw;
  height: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.individual-account-hero-content {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 38px 0;
}

.individual-account-hero-content h1 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 34px;
  letter-spacing: 2px;
  line-height: 1.05;
}

.individual-account-hero-content p {
  font-size: 17.3px;
  max-width: 97%;
  line-height: 2.0;
  color: #e0e6ed;
  margin-bottom: 0;
}


.individual-account-hero-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 350px;
  margin-bottom: -80px;  /* Negative margin pushes image beyond section */
}

.individual-account-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(14,40,80,0.18);
  display: block;
}

/* Responsive styles */
@media (max-width: 1000px) {
  .individual-account-hero-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0 0 0;
  }
  .individual-account-hero-content {
    padding: 0 6vw 32px 6vw;
  }
  .individual-account-hero-image {
    width: 100vw;
    margin-bottom: -40px;
    min-height: 220px;
    justify-content: center;
    align-items: flex-end;
  }
  .individual-account-hero-image img {
    width: 90vw;
    height: 220px;
    border-radius: 10px;
    max-width: 420px;
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .individual-account-hero-content h1 {
    font-size: 2rem;
  }
  .individual-account-hero-content p {
    font-size: 1rem;
    max-width: 94vw;
  }
  .individual-account-hero-image {
    margin-bottom: -22px;
    min-height: 110px;
  }
  .individual-account-hero-image img {
    width: 98vw;
    height: 110px;
    min-width: 0;
    max-width: 100vw;
    border-radius: 7px;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.individual-features-section {
  width: 100%;
  margin-top: 100px;
  padding: 56px 0 40px 0;
  background: #fff;
  display: flex;
  justify-content: center;
}

.individual-features-row {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.individual-feature-card {
  background: #f6f6f6;
  border-radius: 16px;
  padding: 40px 32px 32px 32px;
  box-shadow: none;
  max-width: 350px;
  min-width: 300px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon-circle {
  width: 80px;
  height: 80px;
  background: #b38a43;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.feature-icon-circle img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.individual-feature-card h3 {
  font-size: 25px;
  font-weight: 600;
  color: #16181c;
  margin-bottom: 12px;
  margin-top: 0;
}

.individual-feature-card p {
  font-size: 18px;
  color: #41444a;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1000px) {
  .individual-features-row {
    gap: 24px;
  }
  .individual-feature-card {
    min-width: 220px;
    padding: 32px 16px;
  }
}
@media (max-width: 750px) {
  .individual-features-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .individual-feature-card {
    max-width: 380px;
    width: 100%;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.individual-center-section {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
}

.individual-center-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 48px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.individual-center-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #181c1f;
  margin-bottom: 18px;
  text-align: center;
}

.individual-center-desc {
  color: #222;
  font-size: 18.5px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  max-width: 1250px;
}

.features-center-title {
  font-weight: 700;
  font-size: 1.39rem;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.features-center-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 32px 0;
  text-align: center;
}
.features-center-list li {
  margin: 8px 0;
  color: #444;
  font-size: 18.5px;
  line-height: 2.2;
}

.shop-now-center-btn {
  width: 500px;
  height: 70px;
  margin: 16px 0 0 0;
  background: #10151b;
  color: #fff;
  border: none;
  border-radius: 48px;
  padding: 18px 48px;
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.shop-now-center-btn:hover {
  background: #bfa56a;
  color: #181c1f;
}

.stars-rating-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
  font-size: 1.16rem;
}

.rating-bold {
  font-weight: bold;
  color: #181c1f;
  margin: 0 3px;
}

.rating-reviews {
  color: #888;
  margin-left: 5px;
}

@media (max-width: 600px) {
  .individual-center-container {
    padding: 32px 8px 16px 8px;
  }
  .individual-center-container h2 {
    font-size: 1.18rem;
  }
  .shop-now-center-btn {
    padding: 14px 22px;
    font-size: 0.95rem;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.h-cash-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 20px;
}

.section-title {
  width: 100%;
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.column {
  flex: 1 1 300px;
  max-width: 400px;
}

.column h2 {
  font-size: 1.42rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.left {
    text-align: right;
}

.column p {
  margin-bottom: 24px;
  font-size: 1.34rem;
  line-height: 1.5;
}

.center img {
  width: 100%;
  max-width: 222px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .left,
  .right {
    text-align: center;
  }
}


.open-account-cta {
  text-align: center;
  font-size: 1.74rem;
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 16px;
  color: #111;
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.business-account-hero-section {
  width: 100vw;
  height: 740px;
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.business-account-hero-container {
  width: 100vw;
  height: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.business-account-hero-content {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 38px 0;
}

.business-account-hero-content h1 {
  font-size: 65px;
  font-weight: 400;
  margin-bottom: 34px;
  letter-spacing: 2px;
  line-height: 1.05;
}

.business-account-hero-content p {
  font-size: 17.3px;
  max-width: 97%;
  line-height: 2.0;
  color: #e0e6ed;
  margin-bottom: 0;
}


.business-account-hero-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 350px;
  margin-bottom: -60px;  /* Negative margin pushes image beyond section */
}

.business-account-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(14,40,80,0.18);
  display: block;
}

/* Responsive styles */
@media (max-width: 1000px) {
  .business-account-hero-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0 0 0;
  }
  .business-account-hero-content {
    padding: 0 6vw 32px 6vw;
  }
  .business-account-hero-image {
    width: 100vw;
    margin-bottom: -40px;
    min-height: 220px;
    justify-content: center;
    align-items: flex-end;
  }
  .business-account-hero-image img {
    width: 90vw;
    height: 220px;
    border-radius: 10px;
    max-width: 420px;
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .business-account-hero-content h1 {
    font-size: 2rem;
  }
  .business-account-hero-content p {
    font-size: 1rem;
    max-width: 94vw;
  }
  .business-account-hero-image {
    margin-bottom: -22px;
    min-height: 110px;
  }
  .business-account-hero-image img {
    width: 98vw;
    height: 110px;
    min-width: 0;
    max-width: 100vw;
    border-radius: 7px;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.business-solutions-section {
  width: 100%;
  background: #fafbfc;
  padding: 64px 0 36px 0;
  margin-top: 100px;
}

/* Header max-width and centering */
.business-solutions-header {
  max-width: 1250px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px 12px 16px;
}
.business-solutions-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #181a1b;
  line-height: 2.0;

}
.business-solutions-desc {
  font-size: 1.08rem;
  color: #666e76;
  margin-bottom: 18px;
}

/* Container for the rest */
.business-solutions-container {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.features-title, .who-can-title {
  font-size: 1.52rem;
  font-weight: 700;
  margin: 34px 0 14px 0;
  color: #222;
}

.business-features p, .business-types p {
  font-size: 1.22rem;
  color: #474A51;
  margin-bottom: 9px;
  font-weight: 400;
  line-height: 2.5;
}
.business-features p b, .business-types p b {
  font-weight: 600;
  color: #474A51;
}
.business-types {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .business-solutions-header {
    max-width: 98vw;
    padding: 0 8px 12px 8px;
  }
  .business-solutions-container {
    padding: 0 8px;
  }
  .business-solutions-header h2 {
    font-size: 1.34rem;
  }
  .features-title, .who-can-title {
    font-size: 1rem;
  }
  .business-features p, .business-types p {
    font-size: 0.98rem;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.business-account-process-section {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  padding: 70px 0;
  box-sizing: border-box;
  margin-bottom: 60px;
}

.business-account-process-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.business-account-card {
  flex: 1 1 50%;
  background: #081B31;
  padding: 54px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  min-width: 0;
  z-index: 2;
  position: relative;
  /* box-shadow: 0 0 16px rgba(0,0,0,0.07); optional: helps with contrast */
}

.business-account-card h3 {
  font-size: 2rem;
  margin-bottom: 32px;
  font-weight: 700;
}

.business-account-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.business-account-card li {
  margin-bottom: 20px;
  font-size: 1.06rem;
}
.business-account-card b {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.business-account-card span {
  color: #dbe3eb;
  font-size: 0.97em;
  margin-left: 10px;
}

.business-cta-box {
  background: #fff;
  color: #0c1c2e;
  padding: 18px 14px;
  border-radius: 4px;
  font-size: 1.08rem;
  margin-top: 14px;
  box-shadow: 0 1px 6px 0 rgba(22,24,26,0.06);
  display: inline-block;
  line-height: 1.4;
}

/* style the embedded link */
.business-cta-box .business-cta-link {
  color: #0a1c2e;
  font-weight: 600;
  text-decoration: none;
  margin-left: 6px;
}

.business-cta-box:hover {
    background: #f4d063;
}

.business-cta-box .business-cta-link:hover {
  text-decoration: none;
}

.business-account-img-wrapper {
  flex: 1 1 50%;
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* No background needed */
}

.business-account-img-wrapper img {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 45px;
  height: 100%;
  min-height: 420px;
  width: 160%;
  max-width: none;
  object-fit: cover;
  z-index: 1;
  /* overflow to the left */
  transform: translateX(-80px); /* overflow left by 80px; adjust as needed */
  box-shadow: none;
  border-radius: 0;
  background: #eee;
  display: block;
  pointer-events: none; /* image can't block mouse on text */
  transform: scaleX(-1);
}

@media (max-width: 900px) {
  .business-account-process-container {
    flex-direction: column;
    max-width: 97vw;
  }
  .business-account-card {
    z-index: 2;
  }
  .business-account-img-wrapper {
    z-index: 1;
    position: relative;
    min-height: 220px;
    width: 100%;
  }
  .business-account-img-wrapper img {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100vw;
    height: 220px;
    min-height: unset;
    object-fit: cover;
    z-index: 1;
  }
}

@media (max-width: 600px) {
  .business-account-process-section {
    padding: 28px 0 8px 0;
    min-height: unset;
  }
  .business-account-card {
    padding: 18px 5vw 14px 5vw;
  }

  .business-account-img-wrapper img {
    min-height: 108px;
    height: 108px;
    max-width: 100vw;
  }
}





/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.enterprise-account-hero-section {
  width: 100vw;
  height: 740px;
  background-image: url('/hcash-website/public/images/Picture4.png');
  /*background-image: url('/images/Picture4.png');*/
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.enterprise-account-hero-container {
  max-width: 1250px;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.enterprise-account-hero-left {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;

}

.enterprise-account-hero-left h1 {
  font-size: 60px;
  font-weight: 350;
  letter-spacing: 2px;
  margin-bottom: 34px;
  line-height: 1.05;
}

.enterprise-account-hero-left p {
  font-size: 17.3px;
  line-height: 36px;
  color: #e0e6ed;
  width: 100%;
  margin-bottom: 0;
  line-height: 2.5;
}

.enterprise-account-hero-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 350px;
  margin-bottom: -340px;
}

.enterprise-account-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(20,30,40,0.15);
  display: block;
  background: #222d3e;
}

@media (max-width: 1100px) {
  .enterprise-account-hero-container {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    padding: 32px 0 0 0;
  }
  .enterprise-account-hero-left, .enterprise-account-hero-right {
    padding: 0 4vw;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .enterprise-account-hero-right img {
    width: 98vw;
    max-width: 470px;
    height: 310px;
  }
  .enterprise-account-hero-left h1 {
    font-size: 2.3rem;
    margin-bottom: 19px;
  }
}

@media (max-width: 650px) {
  .enterprise-account-hero-container3 {
    gap: 18px;
    padding: 20px 0 0 0;
  }
  .enterprise-account-hero-left {
    padding: 0 7vw;
    text-align: left;
    align-items: flex-start;
  }
  .enterprise-account-hero-left h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .enterprise-account-hero-left p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .enterprise-account-hero-right {
    padding: 0;
    min-width: 0;
  }
  .enterprise-account-hero-right img {
    height: 170px;
    max-width: 100vw;
    border-radius: 16px;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.enterprise-solutions-section {
  width: 100%;
  background: #fff;
  padding: 80px 0;
  margin-top: 70px;
}

.enterprise-solutions-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* Header */
.enterprise-solutions-inner h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.2;
}

.enterprise-intro {
  max-width: 1250px;
  font-size: 1.06rem;
  color: #555;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Section titles */
.enterprise-solutions-inner h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  margin: 36px 0 18px 0;
}

/* Services list */
.enterprise-services-list,
.enterprise-industries-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
}

.enterprise-services-list li,
.enterprise-industries-list li {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.7;
  text-align: center;
}

.enterprise-services-list li strong,
.enterprise-industries-list li strong {
  font-weight: 600;
  color: #111;
}

/* Industries second list slightly narrower */
.enterprise-industries-list {
  max-width: 940px;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .enterprise-solutions-inner {
    padding: 0 16px;
  }
  .enterprise-solutions-inner h2 {
    font-size: 2rem;
  }
  .enterprise-solutions-inner h3 {
    font-size: 1.1rem;
  }
  .enterprise-services-list li,
  .enterprise-industries-list li {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .enterprise-solutions-inner h2 {
    font-size: 1.5rem;
  }
  .enterprise-intro {
    font-size: 0.97rem;
  }
  .enterprise-solutions-inner h3 {
    font-size: 1rem;
  }
  .enterprise-services-list li,
  .enterprise-industries-list li {
    font-size: 0.9rem;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.enterprise-account-process-section {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  padding: 70px 0;
  box-sizing: border-box;
  margin-bottom: 60px;
}

.enterprise-account-process-container {
  position: relative;
  width: 100%;
  max-width: 1250px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.enterprise-account-card {
  flex: 1 1 58%;
  background: #081B31;
  padding: 54px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  min-width: 0;
  z-index: 2;
  position: relative;
  /* box-shadow: 0 0 16px rgba(0,0,0,0.07); optional: helps with contrast */
}

.enterprise-account-card h3 {
  font-size: 2.2rem;
  margin-bottom: 32px;
  font-weight: 700;
}

.enterprise-account-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.enterprise-account-card li {
  margin-bottom: 20px;
  font-size: 1.28rem;
}
.enterprise-account-card b {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.enterprise-account-card span {
  color: #dbe3eb;
  font-size: 0.97em;
  margin-left: 10px;
}

.enterprise-cta-box {
  background: #fff;
  color: #0c1c2e;
  padding: 18px 4px;
  border-radius: 4px;
  font-size: 1.38rem;
  margin-top: 14px;
  box-shadow: 0 1px 6px 0 rgba(22,24,26,0.06);
  display: inline-block;
  line-height: 1.4;
}

.enterprise-cta-box:hover {
    background: #f4d063;
}

/* style the embedded link */
.enterprise-cta-box .enterprise-cta-link {
  color: #0a1c2e;
  font-weight: 600;
  text-decoration: none;
  margin-left: 6px;
}

.enterprise-cta-box .enterprise-cta-link:hover {
  text-decoration: none;
}

.enterprise-account-img-wrapper {
  flex: 1 1 50%;
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* No background needed */
}

.enterprise-account-img-wrapper img {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 45px;
  height: 100%;
  min-height: 420px;
  width: 160%;
  max-width: none;
  object-fit: cover;
  z-index: 1;
  /* overflow to the left */
  transform: translateX(-80px); /* overflow left by 80px; adjust as needed */
  box-shadow: none;
  border-radius: 0;
  background: #eee;
  display: block;
  pointer-events: none; /* image can't block mouse on text */
}

@media (max-width: 900px) {
  .enterprise-account-process-container {
    flex-direction: column;
    max-width: 97vw;
  }
  .enterprise-account-card {
    z-index: 2;
  }
  .enterprise-account-img-wrapper {
    z-index: 1;
    position: relative;
    min-height: 220px;
    width: 100%;
  }
  .enterprise-account-img-wrapper img {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100vw;
    height: 220px;
    min-height: unset;
    object-fit: cover;
    z-index: 1;
  }
}

@media (max-width: 600px) {
  .enterprise-account-process-section {
    padding: 28px 0 8px 0;
    min-height: unset;
  }
  .enterprise-account-card {
    padding: 18px 5vw 14px 5vw;
  }

  .enterprise-account-img-wrapper img {
    min-height: 108px;
    height: 108px;
    max-width: 100vw;
  }
}







/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.blog-hero-section {
  width: 100vw;
  height: 740px;
  background-image: url('/hcash-website/public/images/Picture4.png');
  /*background-image: url('/images/Picture4.png');*/
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.blog-hero-container {
  width: 100vw;
  height: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.blog-hero-content {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 38px 0;
}

.blog-hero-content h1 {
  font-size: 65px;
  font-weight: 400;
  margin-bottom: 34px;
  letter-spacing: 2px;
  line-height: 1.05;
}

.blog-hero-content p {
  font-size: 17.3px;
  max-width: 97%;
  line-height: 2.0;
  color: #e0e6ed;
  margin-bottom: 0;
}

/* THIS IS THE KEY PART */
.blog-hero-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 350px;
  margin-bottom: -60px;  /* Negative margin pushes image beyond section */
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 50px rgba(14,40,80,0.18);
  display: block;
}

/* Responsive styles */
@media (max-width: 1100px) {
  .blog-hero-container {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    padding: 32px 0 0 0;
  }
  .blog-hero-content, .blog-hero-image {
    padding: 0 4vw;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .blog-hero-content h1 {
    font-size: 2.3rem;
    margin-bottom: 19px;
  }
  .blog-hero-image img {
    width: 98vw;
    max-width: 430px;
    height: 260px;
  }
}

@media (max-width: 700px) {
  .blog-hero-section {
    height: auto;
    padding-bottom: 26px;
  }
  .blog-hero-container {
    gap: 17px;
    padding: 19px 0 0 0;
  }
  .blog-hero-content h1 {
    font-size: 1.33rem;
    margin-bottom: 10px;
  }
  .blog-hero-content p {
    font-size: 0.97rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .blog-hero-content, .blog-hero-image {
    padding: 0 1vw;
  }
  .blog-hero-image img {
    max-width: 98vw;
    width: 99vw;
    height: 140px;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.blog-categories {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding: 0 1rem;
}

.blog-category-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.blog-category-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.blog-category-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.blog-category-list li {
  padding: 8px 16px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.blog-category-list li:hover {
  background-color: #e0e0e0;
}

.blog-category-list li.active {
  background-color: #0b1f36;
  color: #fff;
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.blog-intro {
  background-color: #fff;
  padding: 60px 20px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.blog-intro-wrapper {
  max-width: 1250px;
  width: 100%;
}

.blog-intro-quote {
  font-size: 1.9rem;
  font-weight: 600;
  color: #111;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.blog-intro-caption {
  font-size: 1.26rem;
  color: #555;
  font-weight: 400;
  margin-top: 50px;
}

/* Responsiveness */

@media (max-width: 900px) {
  .blog-intro-wrapper {
    max-width: 98vw;
  }
  .blog-intro-quote {
    font-size: 1.35rem;
    line-height: 1.5;
  }
  .blog-intro-caption {
    font-size: 1.03rem;
    margin-top: 22px;
  }
  .blog-intro {
    padding: 40px 7vw 0 7vw;
  }
}

@media (max-width: 600px) {
  .blog-intro {
    padding: 28px 2vw 0 2vw;
  }
  .blog-intro-quote {
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
  }
  .blog-intro-caption {
    font-size: 0.91rem;
    margin-top: 10px;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.blog-search-section {
  align-items: center;
  padding: 15px 20px 60px 20px;
}

.search-container {
  max-width: 1250px;
  height: 120px;
  background-color: #011b33;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  max-width: 960px;
  height: 70px;
  margin: 0 auto;
  margin-top: 7.7px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0 10px;
  flex-wrap: wrap;
}

.search-keyword {
  flex: 2;
  padding: 16px;
  border: none;
  font-size: 1rem;
  min-width: 200px;
  outline: none;
}

.separator {
  width: 2px;
  height: 60%;
  background-color: #888;
  margin: 0 10px;
}

.search-category {
  flex: 1;
  padding: 16px;
  border: none;
  font-size: 1rem;
  min-width: 150px;
  outline: none;
  appearance: none;
  background: transparent;
}

.search-btn {
  background-color: #011b33;
  color: white;
  border: none;
  padding: 16px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background-color: #022b4c;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .search-container {
    max-width: 99vw;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .search-bar {
    flex-direction: column;
    height: auto;
    max-width: 90vw;
    padding: 10px 5vw;
    gap: 10px;
    border-radius: 10px;
  }
  .search-keyword,
  .search-category {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    padding: 13px 8px;
    margin-bottom: 0;
  }
  .separator {
    display: none;
  }
  .search-btn {
    width: 100%;
    margin-top: 5px;
    font-size: 1.07rem;
    padding: 12px 0;
    border-radius: 8px;
  }
  .blog-search-section {
    padding: 12px 2vw 36px 2vw;
  }
}

@media (max-width: 480px) {
  .search-bar {
    padding: 8px 2vw;
    border-radius: 8px;
  }
  .search-keyword,
  .search-category {
    font-size: 0.98rem;
    padding: 10px 6px;
  }
  .search-btn {
    font-size: 0.99rem;
    padding: 11px 0;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.blog-grid-section {
  max-width: 1250px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f6f7fb;
}

.blog-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 3px 0 #001f3f;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 10px;
  color: #000;
}

.blog-card p {
  font-size: 1.2rem;
  color: #333;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-card a {
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: underline;
  color: #000;
  display: inline-flex;
  text-align: center;
  align-items: center;
  gap: 4px;
}

.blog-card a span {
  font-size: 0.9rem;
  text-decoration: none;
}




/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.fees-hero-section {
  width: 100vw;
  height: 740px;
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fees-hero-container {
  width: 100vw;
  height: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.fees-hero-content {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 38px 0;
}

.fees-hero-content h1 {
  font-size: 65px;
  font-weight: 400;
  margin-bottom: 34px;
  letter-spacing: 2px;
  line-height: 1.05;
}

.fees-hero-content p {
  font-size: 17.3px;
  max-width: 97%;
  line-height: 2.0;
  color: #e0e6ed;
  margin-bottom: 0;
}


.fees-hero-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 350px;
  margin-bottom: -60px;  /* Negative margin pushes image beyond section */
}

.fees-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 50px rgba(14,40,80,0.18);
  display: block;
}

/* Responsive styles */
@media (max-width: 1100px) {
  .fees-hero-container {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    padding: 40px 0 0 0;
  }
  .fees-hero-content, .fees-hero-image {
    padding: 0 4vw;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .fees-hero-image img {
    width: 94vw;
    max-width: 420px;
    height: 260px;
  }
  .fees-hero-content h1 {
    font-size: 2.3rem;
    margin-bottom: 18px;
  }
  .fees-hero-section {
    height: auto;
    min-height: 440px;
  }
}

@media (max-width: 700px) {
  .fees-hero-container {
    gap: 22px;
    padding: 24px 0 0 0;
  }
  .fees-hero-content, .fees-hero-image {
    padding: 0 3vw;
  }
  .fees-hero-content h1 {
    font-size: 2rem;
  }
  .fees-hero-image img {
    max-width: 95vw;
    height: 170px;
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  .fees-hero-content h1 {
    font-size: 1.2rem;
  }
  .fees-hero-content p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .fees-hero-image img {
    max-width: 98vw;
    height: 115px;
    border-radius: 4px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.pricing-section {
  padding: 60px 20px;
  background-color: #fff;
  margin-top: 90px;
}

.pricing-container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.pricing-content {
  flex: 1 1 65%;
  z-index: 1;

}

.pricing-container h2 {
  font-size: 3.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.pricing-content p {
  font-size: 1.38rem;
  margin-bottom: 30px;
  color: #444;
  line-height: 1.6;
}

.pricing-category h3 {
  font-size: 1.65rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.pricing-category ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 20px;
}

.pricing-category li {
  margin-bottom: 8px;
  color: #333;
  font-size: 1.24rem;
  line-height: 1.8;
}

.pricing-image {
  flex: 1 1 35%;
  text-align: right;
  position: relative;
  z-index: 2;
}

.pricing-image img {
  width: 180%;
  height: auto;
  margin-top: 20px;
  margin-left: -190px;
}

/* Responsive Behavior */
@media (max-width: 1100px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .pricing-image {
    text-align: center;
    margin-top: 30px;
  }
  .pricing-image img {
    width: 92vw;
    max-width: 410px;
    margin-left: 0;
  }
  .pricing-content {
    width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 700px) {
  .pricing-section {
    padding: 36px 6vw;
  }
  .pricing-container h2 {
    font-size: 2.2rem;
  }
  .pricing-category h3 {
    font-size: 1.15rem;
  }
  .pricing-content p,
  .pricing-category li {
    font-size: 1rem;
  }
  .pricing-image img {
    width: 99vw;
    max-width: 330px;
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .pricing-section {
    padding: 18px 2vw;
  }
  .pricing-container h2 {
    font-size: 1.25rem;
  }
  .pricing-content p {
    font-size: 0.97rem;
  }
  .pricing-category li {
    font-size: 0.96rem;
  }
}



/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


.contact-hero-section {
  width: 100vw;
  height: 740px;
  /*background-image: url('/images/Picture4.png');*/
  background-image: url('/hcash-website/public/images/Picture4.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 80px;
}

.contact-hero-container3 {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 55px;
  padding: 120px 0 0 0;
}

.contact-hero-left {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 38px 0 38px 0;
}

.contact-hero-left h1 {
  font-size: 65px;
  font-weight: 350;
  letter-spacing: 2px;
  margin-bottom: 34px;
  line-height: 1.05;
}

.contact-hero-left p {
  font-size: 17.3px;
  line-height: 36px;
  color: #e0e6ed;
  width: 100%;
  margin-bottom: 0;
  line-height: 2.5;
}

.contact-hero-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 350px;
  margin-bottom: -80px;
}

.contact-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(20,30,40,0.15);
  display: block;
  background: #222d3e;
}

/* Responsiveness */

/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .contact-hero-section {
    height: auto;
    min-height: 440px;
    padding: 0;
    background-position: center center;
  }
  .contact-hero-container3 {
    flex-direction: column;
    gap: 25px;
    max-width: 96vw;
    padding: 45px 0 0 0;
    align-items: center;
    justify-content: flex-start;
  }
  .contact-hero-left {
    padding: 18px 3vw 14px 3vw;
    align-items: flex-start;
  }
  .contact-hero-left h1 {
    font-size: 2.4rem;
    margin-bottom: 19px;
  }
  .contact-hero-left p {
    font-size: 1.01rem;
    line-height: 2;
    margin-bottom: 0;
  }
  .contact-hero-right {
    min-width: 0;
    margin-bottom: -60px;
    justify-content: center;
    width: 100%;
  }
  .contact-hero-right img {
    max-width: 430px;
    height: 240px;
    min-height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(20,30,40,0.11);
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .contact-hero-section {
    height: auto;
    min-height: 260px;
    padding: 0;
  }
  .contact-hero-container3 {
    flex-direction: column;
    gap: 13px;
    max-width: 99vw;
    padding: 18px 0 0 0;
    align-items: center;
    justify-content: flex-start;
  }
  .contact-hero-left {
    padding: 9px 3vw 6px 3vw;
    align-items: flex-start;
  }
  .contact-hero-left h1 {
    font-size: 1.27rem;
    margin-bottom: 7px;
    letter-spacing: 1px;
  }
  .contact-hero-left p {
    font-size: 0.97rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .contact-hero-right {
    margin-bottom: 0;
    justify-content: center;
    width: 100%;
    min-width: 0;
  }
  .contact-hero-right img {
    max-width: 98vw;
    height: 122px;
    min-height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0 auto;
    box-shadow: 0 1px 7px rgba(20,30,40,0.12);
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.contact-section {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.contact-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 520px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 0 0 rgba(0,0,0,0.0);
}

.contact-form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 50px 90px 50px 90px;
}

.contact-form h2 {
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 36px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  font-size: 1.07rem;
  padding: 14px 14px;
  border: none;
  border-radius: 4px;
  background: #f7f7f7;
  color: #333;
  margin-bottom: 0;
  box-shadow: none;
  resize: none;
  outline: none;
  transition: box-shadow 0.14s, border 0.14s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px #c0a25944;
  border: 1px solid #bfa56a;
}

.contact-form button[type="submit"] {
  margin-top: 10px;
  padding: 13px 0;
  background: #bfa56a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}

.contact-form button[type="submit"]:hover {
  background: #a0853d;
}

.contact-image {
  flex: 1 1 50%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: #eee;
  margin-right: 0;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 400px;
  border-radius: 0;
}

/* RESPONSIVENESS */


/* ========== TABLET (≤ 1023px) ========== */
@media (max-width: 1023px) {
  .contact-content {
    flex-direction: column;
    min-height: unset;
    box-shadow: none;
  }
  .contact-form,
  .contact-image {
    width: 100%;
    min-width: 0;
    max-width: 99vw;
    flex: none;
    padding: 34px 24px;
    align-items: center;
    justify-content: center;
  }
  .contact-form h2 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .contact-image {
    min-height: 200px;
    max-height: 340px;
    padding: 0;
    margin: 0;
    background: #eee;
    align-items: center;
    justify-content: center;
  }
  .contact-image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    max-height: 340px;
    object-fit: cover;
    border-radius: 0;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .contact-section {
    padding: 0;
    margin: 0;
  }
  .contact-content {
    flex-direction: column;
    min-height: unset;
    width: 100%;
  }
  .contact-form {
    padding: 20px 5vw;
    min-width: 0;
    max-width: 99vw;
  }
  .contact-form h2 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-align: center;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.97rem;
    padding: 10px 9px;
  }
  .contact-form button[type="submit"] {
    font-size: 1.01rem;
    padding: 11px 0;
  }
  .contact-image {
    min-height: 140px;
    max-height: 180px;
    margin: 0;
    padding: 0;
    background: #eee;
    align-items: center;
    justify-content: center;
  }
  .contact-image img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    max-height: 180px;
    object-fit: cover;
    border-radius: 0;
  }
}

@media (max-width: 500px) {
  .contact-image {
    display: none !important;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.contact-map-section {
  width: 100vw;
  padding: 60px 0 50px 0;
  background: #f7f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.contact-map-container h2 {
  font-size: 2.2rem;
  color: #102033;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.map-caption {
  color: #6a7689;
  font-size: 1.09rem;
  margin-bottom: 28px;
}

.map-responsive {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 38%; /* ~16:6 aspect ratio for desktop */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(40,60,110,0.11);
  background: #dbe4ed;
}

.map-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .contact-map-container {
    max-width: 96vw;
    padding: 0 2vw;
  }
  .map-responsive {
    padding-bottom: 55%; /* Taller aspect for smaller screens */
  }
  .contact-map-container h2 {
    font-size: 1.37rem;
  }
}

@media (max-width: 600px) {
  .contact-map-section {
    padding: 24px 0 24px 0;
  }
  .contact-map-container h2 {
    font-size: 1.11rem;
  }
  .map-caption {
    font-size: 0.99rem;
  }
  .map-responsive {
    padding-bottom: 66%; /* Phone screens: taller map */
    border-radius: 10px;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
