/*homepage custom css*/
section.get-payment-section.pt-70.pb-100.bg--section {
    padding-top: 100px;
    background: #fff !important;
}
section.why-choose-us.pt-100.pb-50 {
    background: color(srgb 0.9589 0.969 0.9818);
}

section.blog-section.pt-80.pb-100 {
    padding-bottom: 0px;
}
/*End*/

/*virtual card page css*/
/*virtual card page css*/
img.img-fluid.imgfluid {
    width: inherit;
}

img.img-fluids {
    width: 70% !important;
}

.col-md-4.col-sm-12.flexbox {
    display: flex;
    justify-content: center;
    align-items: center; /* Changed from anchor-center to center for valid CSS */
}

.virtual-card-section .row {
    display: flex;
    align-items: center; /* Vertically center content in the row */
    flex-wrap: wrap; /* Ensure responsiveness */
}

.virtual-card-section .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically within the column */
    text-align: left; /* Ensure text is aligned consistently */
}

.virtual-card-section img.img-fluid {
    max-width: 90%;
    height: auto;
    object-fit: contain; /* Ensure images scale properly without distortion */
    border-radius: 10px;
}

.virtual-card-section .flexbox {
    display: flex;
    align-items: center; /* Align checkmark images with text */
    gap: 10px; /* Add spacing between image and text */
}

.virtual-card-section .flexbox img.imgfluid {
    max-width: 24px; /* Adjust size of checkmark images for consistency */
    height: auto;
}

.virtual-card-section .app-links img {
    max-width: 150px; /* Adjust size for app store buttons if needed */
    margin-right: 10px;
}

.virtual-card-section .text-center img {
    max-width: 300px; /* Adjust size for centered images */
    margin: 0 auto; /* Center images horizontally */
}

/* Reduce gaps between sections but keep design structure */
.virtual-card-section {
    padding-top: 30px !important; /* instead of py-3 (≈48px) */
    padding-bottom: 30px !important;
}

.virtual-card-section .row.mb-5 {
    margin-bottom: 20px !important; /* reduce gap between content blocks */
}

/* Media queries for small screens (576px and below) */
@media (max-width: 576px) {
    /* Adjust image sizes for small screens */
    .virtual-card-section img.img-fluid {
        max-width: 100%; /* Ensure images take full width for better visibility */
    }

    .virtual-card-section img.img-fluids {
        width: 100% !important; /* Override 70% width for full-width images */
    }

    .virtual-card-section .text-center img {
        max-width: 100%; /* Ensure centered images scale to full width */
    }

    .virtual-card-section .app-links img {
        max-width: 120px; /* Reduce app store button size for small screens */
        margin-right: 5px; /* Reduce margin for tighter spacing */
    }

    /* Adjust flexbox for small screens */
    .virtual-card-section .col-md-6 {
        text-align: center; /* Center text for better readability */
        padding: 10px; /* Add padding to prevent content from touching edges */
    }

    .col-md-4.col-sm-12.flexbox {
        justify-content: flex-start; /* Align flexbox items to start for consistency */
        margin-bottom: 10px; /* Add spacing between flexbox items */
    }

    .virtual-card-section .flexbox img.imgfluid {
        max-width: 20px; /* Slightly smaller checkmark images for small screens */
    }
    .row.mb-5.customrow {
        flex-direction: column-reverse;
    }
    /* Reduce padding and margins for sections */
    .virtual-card-section {
        padding-top: 20px !important; /* Reduce padding for compact layout */
        padding-bottom: 20px !important;
    }

    .virtual-card-section .row.mb-5 {
        margin-bottom: 15px !important; /* Further reduce gap between content blocks */
    }

    /* Ensure each section's content (image + text) stays together */
    .virtual-card-section .row {
        flex-direction: column; /* Force stack in a single column */
        align-items: stretch; /* Stretch items to fill width */
    }

    .virtual-card-section .col-md-6 {
        width: 100%; /* Ensure each column takes full width */
        margin-bottom: 20px; /* Add space between image and text blocks */
    }

    .virtual-card-section .col-md-6:last-child {
        margin-bottom: 0; /* Remove margin from the last column to avoid extra space */
    }

    /* Adjust typography for small screens */
    .virtual-card-section h2 {
        font-size: 1.5rem; /* Reduce heading size for small screens */
        margin-bottom: 15px !important; /* Consistent spacing */
    }

    .virtual-card-section p,
    .virtual-card-section li {
        font-size: 0.9rem; /* Slightly smaller text for better fit */
    }

    /* Ensure buttons remain usable */
    .virtual-card-section .btn {
        font-size: 0.9rem; /* Smaller button text */
        padding: 8px 16px; /* Adjust button padding */
    }
}

/*end*/

/*cardmachine page css*/
:root {
    --bg: #ffffff;
    --bg-alt: #f5f6f7;
    --ink: #101114;
    --muted: #5d6470;
    --brand: #0f7bff; /* replace with your brand color */
    --border: #e6e8eb;
    --radius: 12px;
    --shadow: 0 6px 24px rgba(16,17,20,0.06);
}

.yp-stack { display: block; background: var(--bg); color: var(--ink); }
.yp-container { max-width: 1100px; margin-inline: auto; padding: 2rem 1rem; }
.yp-band { 
    background: rgb(218, 254, 236);
    } /* soft section band; change as you like */
.yp-title { font-size: clamp(1.75rem, 1.1rem + 2vw, 2.5rem); line-height: 1.2; margin: 0 0 0.75rem; }
.yp-subtitle { 
    font-size: clamp(1.35rem, 1rem + 1vw, 1.75rem);
    line-height: 1.25; margin: 0 0 0.5rem;
        display: flex;
    justify-content: center;
    }
.yp-muted { color: var(--muted); }
.yp-cmn--btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1rem; border-radius: 999px; text-decoration: none; border: 1px solid var(--border); }
.yp-badge { 
    display: inline-block;
    padding: .35rem .6rem;
    border-radius: 999px;
    background: var(--bg-alt);
    color: #000000;
    border: 1px solid var(--border);
    font-size: .825rem;
}
.yp-checklist { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: .5rem; }
.yp-checklist li { position: relative; padding-left: 1.4rem; }
.yp-checklist li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 700; }
.yp-grid { display: grid; gap: 1rem; }
.yp-grid-2 { grid-template-columns: 1fr; }
.yp-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
    .yp-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .yp-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.yp-card { background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem; box-shadow: var(--shadow);
}
.yp-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--bg-alt); display: grid; place-items: center; color: var(--brand); margin-bottom: .5rem; font-weight: 700; }
.yp-mb-3 { margin-bottom: 1rem; }
.yp-pt-100 { padding-top: 100px; }
.yp-pb-100 { padding-bottom: 100px; }
.yp-text-center { text-align: center; }
.yp-text-balance { text-wrap: balance; }

/* Hero */
.yp-hero { display: grid; gap: 2rem; align-items: center; }
.yp-hero__copy { display: grid; gap: 1rem; }
.yp-hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.yp-hero__media { position: relative; min-height: 320px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.yp-hero__screenshot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2; filter: blur(2px) saturate(.8); }
.yp-device { position: absolute; filter: drop-shadow(0 8px 24px rgba(0,0,0,.1)); }
.yp-device--front { right: 8%; bottom: 8%; width: 30%; }
.yp-device--side { left: 8%; bottom: 12%; width: 38%; }
@media (min-width: 920px) {
    .yp-hero { grid-template-columns: 1.1fr .9fr; }
}

/* Devices Tabs */
.yp-devices__head { display: grid; gap: .75rem; margin-bottom: 1rem; }
.yp-tabs { display: inline-flex; padding: .35rem; border: 1px solid var(--border); border-radius: 999px; background: var(--bg-alt); gap: .35rem; }
.yp-tab { border: 0; background: transparent; padding: .5rem .9rem; border-radius: 999px; cursor: pointer; color: var(--ink); }
.yp-tab.yp-is-active { background: var(--bg); border: 1px solid var(--border); }
.yp-devices__body { display: grid; gap: 1.25rem; align-items: start; }
.yp-devices__media { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; display: grid; gap: .5rem; justify-items: center; }
.yp-devices__media img { max-width: 100%; height: auto; }
@media (min-width: 900px) { .yp-devices__body { grid-template-columns: 0.9fr 1.1fr; gap: 2rem; } }
.yp-panel-title { margin: 0 0 .5rem; }
.yp-specs { display: grid; gap: .5rem; margin-bottom: 1rem; }
.yp-specs div { display: grid; grid-template-columns: 140px 1fr; gap: .75rem; padding: .5rem; border: 1px dashed var(--border); border-radius: 8px; }
.yp-devices__panel[hidden] { display: none !important; }

/* Marquee */
.yp-marquee { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-alt); }
.yp-marquee__track { display: flex; gap: 1rem; padding: .75rem 1rem; width: max-content; animation: yp-scroll 28s linear infinite; }
.yp-logo { min-width: 112px;
    height: 40px; 
    display: grid;
    place-items: center;
    /*background: var(--bg);*/
    /*border: 1px solid var(--border);*/
    border-radius: 8px; color: var(--muted); }
@keyframes yp-scroll { 
    from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .yp-marquee__track { 
      animation: none; 
  } 
}

/* Tap banner */
.yp-tap__wrap { display: grid;
    gap: 1rem;
    align-items: center; }
.yp-tap__media { display: grid;
    justify-items: center;
}
@media (min-width: 900px) { 
    .yp-tap__wrap { 
        grid-template-columns: 1.2fr .8fr; 
    } 
}

/* FAQs */
.yp-faq-block-item .yp-faq-block-title { cursor: pointer; }
.yp-faq-block-content { display: none; }
.yp-faq-block-item.active .yp-faq-block-content { display: block; }

/* Media queries for small screens (576px and below) */
@media (max-width: 576px) {
    .yp-container { padding: 1rem; } /* Reduce padding for smaller screens */
    
    .yp-title { font-size: clamp(1.25rem, 1rem + 2vw, 1.75rem); } /* Reduce title size */
    .yp-subtitle { font-size: clamp(1.1rem, 0.9rem + 1vw, 1.35rem); } /* Reduce subtitle size */
    
    .yp-hero { gap: 1.5rem; } /* Reduce gap in hero section */
    .yp-hero__copy { gap: 0.75rem; } /* Reduce gap within hero copy */
    .yp-hero__badges { 
        /*flex-direction: column;*/
        align-items: center;
        gap: 0.25rem; } /* Stack badges vertically */
    .yp-hero__media { min-height: 200px; } /* Reduce min-height for smaller screens */
    .yp-device--front { right: 5%; bottom: 5%; width: 40%; } /* Adjust device positions and sizes */
    .yp-device--side { left: 5%; bottom: 8%; width: 45%; }
    
    .yp-devices__body { gap: 1rem; } /* Reduce gap in devices section */
    .yp-devices__media { padding: 0.75rem; } /* Reduce padding in media section */
    .yp-tabs { flex-wrap: wrap; justify-content: center; gap: 0.25rem; } /* Wrap tabs and center them */
    .yp-tab { padding: 0.4rem 0.7rem; font-size: 0.9rem; } /* Reduce tab padding and font size */
    .yp-specs div { grid-template-columns: 100px 1fr; gap: 0.5rem; padding: 0.25rem; } /* Adjust specs layout */
    
    .yp-grid-2, .yp-grid-4 { grid-template-columns: 1fr; } /* Force single column for grids */
    .yp-card { padding: 1.5rem; } /* Reduce card padding */
    .yp-icon { width: 28px; height: 28px; } /* Reduce icon size */
    
    .yp-marquee__track { gap: 0.5rem; padding: 0.5rem; } /* Reduce marquee padding and gap */
    .yp-logo { min-width: 80px; height: 30px; font-size: 0.8rem; } /* Reduce logo size */
    
    .yp-tap__wrap { gap: 0.75rem; } /* Reduce gap in tap section */
    .yp-tap__media img { max-width: 100%; } /* Ensure tap image scales */
    
    .yp-pt-100 { padding-top: 50px; } /* Reduce top padding for FAQs */
    .yp-pb-100 { padding-bottom: 50px; } /* Reduce bottom padding for FAQs */
    .faq-block-item { margin-bottom: 1rem; } /* Add spacing between FAQ items */
    .faq-block-title h5 { font-size: 1rem; } /* Reduce FAQ title size */
    .faq-block-content p { font-size: 0.9rem; } /* Reduce FAQ content size */
    
    .yp-cmn--btn { padding: 0.5rem 0.75rem; font-size: 0.9rem; } /* Reduce button size */
}
/*End*/
  
  /*tap to page*/
/*tap to pay responsive styles*/
#tapnpay {
  overflow-x: hidden;
}
#tapnpay .container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 2rem 1rem;
  width: 100%;
}
#tapnpay .eyebrow {
  /*font-size: 0.875rem;*/
  /*font-weight: 600;*/
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#tapnpay h2 {
  /*font-size: clamp(1.5rem, 4vw, 2.5rem);*/
  line-height: 1.2;
  margin-bottom: 1rem;
}
#tapnpay p.lead {
  /*font-size: 1.125rem;*/
  line-height: 1.6;
}
#tapnpay .grid {
  display: grid;
  gap: 1.5rem;
}
#tapnpay .grid-2 {
  grid-template-columns: 1fr;
  gap: 2rem;
}
#tapnpay .grid-3 {
  grid-template-columns: 1fr;
  gap: 1rem;
}
#tapnpay .grid-4 {
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  #tapnpay .grid-2 { 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem;
    align-items: center;
  }
  #tapnpay .grid-3 { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem; 
  }
  #tapnpay .grid-4 { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem; 
  }
}
@media (min-width: 1024px) {
  #tapnpay .grid-4 { 
    grid-template-columns: repeat(4, 1fr); 
  }
}
/* Cards */
#tapnpay .card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#tapnpay .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
#tapnpay .card-body {
  /*padding: 0rem;*/
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: anchor-center;
}
#tapnpay .card-image {
  padding: 1.5rem 1.5rem 0;
  text-align: center;
  flex-shrink: 0;
}
#tapnpay .card-image img {
  max-height: 80px;
  width: auto;
}
#tapnpay .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  font-size: 1.5rem;
  background: #f8f9fa;
}
#tapnpay .check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
#tapnpay .check svg {
  flex-shrink: 0;
}
/* Specifications Band */
/*#tapnpay .specs-band {*/
/*  background: #e9efc7;*/
/*  margin: 4rem 0;*/
/*  padding: 3rem 0;*/
/*  border-top: 1px solid #e0e0e0;*/
/*  border-bottom: 1px solid #e0e0e0;*/
/*}*/
#tapnpay .specs-band .container {
  padding: 0 1rem;
}
#tapnpay .specs-note {
  /*font-size: 0.875rem;*/
  margin-top: 1rem;
}
/* Tabs */
#tapnpay [data-tabs] {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}
#tapnpay .tab-list {
  display: flex;
  gap: 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
}
#tapnpay .tab-btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  flex: 1;
  min-width: 120px;
  text-align: center;
}
#tapnpay .tab-btn.is-active {
  background: #fff;
  border-bottom-color: #007bff;
  color: #007bff;
}
#tapnpay .tab-btn:hover:not(.is-active) {
  background: rgba(0,123,255,0.05);
}
#tapnpay .tab-panel {
  padding: 2rem;
  background: #fff;
}
@media (max-width: 767px) {
  #tapnpay .tab-list {
    flex-direction: column;
  }
  #tapnpay .tab-btn {
    border-bottom: 1px solid #e0e0e0;
    border-right: none;
    text-align: left;
  }
  #tapnpay .tab-btn:last-child {
    border-bottom: none;
  }
  #tapnpay .tab-panel {
    padding: 1.5rem;
  }
}
/* CTA Section */
#tapnpay .cta-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
#tapnpay .cta-image img {
  width: 100%;
  height: auto;
  display: block;
}
/* Utilities */
#tapnpay .center { 
  text-align: center; 
}
#tapnpay .mt-2 { 
  margin-top: 0.5rem; 
}
#tapnpay .mt-3 { 
  margin-top: 0.75rem; 
}
#tapnpay .mt-4 { 
  margin-top: 1rem; 
}
#tapnpay .mt-6 { 
  margin-top: 1.5rem; 
}
#tapnpay .mt-8 { 
  margin-top: 2rem; 
}
#tapnpay .mb-3 { 
  margin-bottom: 0.75rem; 
}
#tapnpay .muted { 
  color: #6c757d; 
}
#tapnpay .py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
#tapnpay .ms-lg-3 {
  margin-left: 0;
}
@media (min-width: 992px) {
  #tapnpay .ms-lg-3 {
    margin-left: 1rem;
  }
}
/* Image responsive */
#tapnpay .image-container img,
#tapnpay .media {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* List styles */
#tapnpay ol {
  padding-left: 0;
  list-style: none;
  counter-reset: step-counter;
}
#tapnpay ol li {
  counter-increment: step-counter;
  position: relative;
}
#tapnpay ol li strong::before {
  content: counter(step-counter) ". ";
  font-weight: bold;
}
/*End*/

/*yoop apps*/
  /* Minimal, layout-only CSS. No fonts or colors defined. */
  .section { padding: 56px 0; }
  .container { max-width: 1140px; margin-inline: auto; padding-inline: 16px; }
  .grid { display: grid; gap: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  @media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1.1fr 0.9fr; }
  }
  @media (min-width: 1024px) {
    .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  }

  /*.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 999px; border: 1px solid currentColor; text-decoration: none; }*/
  .badge { display:inline-block; padding: 6px 10px; border-radius: 999px; border: 1px solid currentColor; }

  .card { 
      border: 1px solid #e0e0e0;
      border-radius: 16px;
      padding: 24px;
      }
  .card-soft { border-radius: 16px; padding: 24px; }
  .pill { border-radius: 14px; padding: 14px 16px; border: 1px solid currentColor; }

  .stack { display: grid; gap: 12px; }
  /*.stack-lg { display: grid; gap: 16px; }*/
  .cluster { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }

  .media { position: relative;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    }
  /*.media--phone { aspect-ratio: 3/5; }*/
  /*.media--wide { aspect-ratio: 16/9; }*/
  /*.media--square { aspect-ratio: 1/1; }*/
  .qr { position: absolute; right: 8%; bottom: 6%; width: 34%; aspect-ratio: 1/1; border: 1px solid currentColor; border-radius: 12px; }

  .list { display:grid; gap:10px; }
  .list li { display:flex; gap:10px; align-items:flex-start; }
  .dot { width: 8px; height: 8px; border-radius: 999px; border: 1px solid currentColor; margin-top: 8px; flex: 0 0 auto; }

  .center { text-align: center; }
  .muted { }
  .rounded { 
      border-radius: 20px !important;
      }
  .pad { padding: 16px; }
  .mt-8 { margin-top: 32px; }
  .mt-12 { margin-top: 48px; }
  .mt-16 { margin-top: 64px; }
  .gap-6 { gap: 24px; }
  .gap-8 { gap: 32px; }

  /* Simple faux chart using currentColor only */
  .chart { position: relative; border: 1px solid currentColor; border-radius: 12px; padding: 16px; height: 260px; }
  .bars { position:absolute; bottom:16px; left:16px; right:16px; display:grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 10px; align-items:end; }
  .bar { background: currentColor; height: 40%; border-radius: 6px 6px 0 0; }
  .bar:nth-child(2){ height: 70%; }
  .bar:nth-child(3){ height: 55%; }
  .bar:nth-child(4){ height: 80%; }
  .bar:nth-child(5){ height: 63%; }
/*End*/
/*partner-page*/
    /* Hero section styles (no font imports) */

/* Color tokens: 4 colors total */

.partner-hero__container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 56px 20px;
}

.partner-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 32px;
}

.partner-hero__title {
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 16px 0;
}

.partner-hero__subtitle {
  line-height: 1.6;
  margin: 0 0 24px 0;
  max-width: 60ch;
}

.partner-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* Desktop */
@media (min-width: 960px) {
  .partner-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
  .partner-hero__container {
    padding: 96px 20px;
  }
}

.partner-hero__container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 56px 20px;
}

.partner-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 32px;
}

.partner-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 16px 0;
}

.partner-hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px 0;
  max-width: 60ch;
}

.partner-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: 600;
  transition: transform 120ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn__arrow {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 2px solid var(--fg-dark);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--fg-dark);
  color: var(--white);
}

.btn--primary:hover {
  transform: translateY(-1px);
  background: #000;
}

.btn--secondary {
  background: var(--white);
  color: var(--fg-dark);
  border-color: var(--accent-blue);
}

.btn--secondary:hover {
  transform: translateY(-1px);
  background: #eaf3ff;
  color: var(--fg-dark);
}

.partner-hero__visual {
  justify-self: center;
}

.partner-hero__image {
  width: min(520px, 100%);
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
}

/* Partner opportunities section */
/*.partner-opportunities {*/
/*  background: var(--white);*/
/*  color: var(--fg-dark);*/
/*  border-top: 4px solid var(--brand-lime);*/
/*}*/

.partner-opportunities__container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 56px 20px;
}

.partner-opportunities__title {
  text-align: center;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  margin: 0 0 32px 0;
}

.partner-opportunities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.partner-opportunities__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: start;
}

.partner-opportunities__icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--brand-lime);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.06);
  margin-top: 4px;
  text-align:center;
}

.partner-opportunities__heading {
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 4px 0;
  grid-column: 2 / -1;
}

.partner-opportunities__desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  grid-column: 2 / -1;
  max-width: 60ch;
}

/* Desktop */
@media (min-width: 960px) {
  .partner-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
  .partner-hero__container {
    padding: 96px 20px;
  }
  .partner-opportunities__container {
    padding: 72px 20px;
  }
  .partner-opportunities__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .partner-opportunities__item {
    grid-template-columns: auto 1fr;
  }
}
/* Mobile-specific adjustments for better responsiveness */
  @media (max-width: 767px) {
    /* Reduce padding for sections and containers on mobile */
    .section {
      padding: 32px 0;
    }
    .container {
      padding-inline: 12px;
    }

    /* Adjust font sizes for better readability on smaller screens */
    .partner-hero__title,
    h1,
    h2.title-lg {
      font-size: clamp(24px, 6vw, 32px);
    }
    .partner-hero__subtitle,
    p.lead,
    p.muted {
      font-size: 14px;
      line-height: 1.5;
    }

    /* Ensure images and media elements are full-width and maintain aspect ratio */
    .media,
    .media--phone,
    .media--wide,
    .partner-hero__image {
      width: 100%;
      height: auto;
    }
    .media img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* Adjust grid layouts to stack vertically on mobile */
    .grid,
    .grid-2,
    .partner-hero__grid,
    .partner-opportunities__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    /* Reduce spacing for tighter mobile layout */
    .gap-6 {
      gap: 16px;
    }
    .gap-8 {
      gap: 20px;
    }
    .mt-8 {
      margin-top: 24px;
    }
    .mt-12 {
      margin-top: 32px;
    }
    .mt-16 {
      margin-top: 48px;
    }

    /* Adjust card padding and content for mobile */
    .card,
    .card-soft {
      padding: 16px;
    }
    .card h3.title-lg {
      font-size: 1.1rem;
    }

    /* Ensure buttons and badges are appropriately sized */
    .btn,
    .cmn--btn {
      padding: 10px 14px;
      font-size: 14px;
    }
    .badge {
      padding: 4px 8px;
      font-size: 12px;
    }

    /* Adjust list items for mobile */
    .list li {
      gap: 8px;
    }
    .dot {
      margin-top: 6px;
      width: 6px;
      height: 6px;
    }

    /* Center-align content for better mobile presentation */
    .partner-hero__actions,
    .cluster {
      justify-content: center;
    }

    /* Adjust chart height for mobile */
    .chart {
      height: 200px;
    }

    /* Ensure partner opportunities icons are smaller */
    .partner-opportunities__icon {
      width: 40px;
      height: 40px;
    }
    .partner-opportunities__heading {
      font-size: 18px;
    }
    .partner-opportunities__desc {
      font-size: 14px;
    }
  }

  /* Extra small screens (below 480px) */
  @media (max-width: 479px) {
    .partner-hero__title,
    h1,
    h2.title-lg {
      font-size: clamp(20px, 5vw, 28px);
    }
    .partner-hero__subtitle,
    p.lead,
    p.muted {
      font-size: 13px;
    }
    .btn,
    .cmn--btn {
      padding: 8px 12px;
      font-size: 13px;
    }
    .card,
    .card-soft {
      padding: 12px;
    }
  }
/*End*/