/* Font Face Declarations */
@font-face {
  font-family: 'Univers Next for HSBC';
  src: url('../fonts/UniversNextforHSBC-Thin_0.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Univers Next for HSBC';
  src: url('../fonts/UniversNextforHSBC-Light_0.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Univers Next for HSBC';
  src: url('../fonts/UniversNextforHSBC-Regular_2.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Univers Next for HSBC';
  src: url('../fonts/UniversNextforHSBC-Medium_1.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Univers Next for HSBC';
  src: url('../fonts/UniversNextforHSBC-Bold_1.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
    --primary-red: #db0011;
    --primary-red2: #a8000b;
    --white: #fff;
    --black: #000;
    --header-height: 64px;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


  
  html {
    /* scroll-behavior: smooth; */
  }
  
  body {
    font-family: 'Univers Next for HSBC', 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--white);
  }
  button, h1, h2, h3, h4, h5, h6, p, span, a {
    font-family: 'Univers Next for HSBC', 'Helvetica Neue', Arial, sans-serif;
  }
  a{
    text-decoration: none;
    color: inherit;
  }
  
  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    background: var(--white);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 26px
  }
  
  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  
  .logo-main {
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--black);
    font-size: 1.1rem;
  }
  
  .logo-sub {
    font-size: 0.7rem;
    color: var(--primary-red);
    letter-spacing: 0.2em;
    margin-top: 2px;
  }
  
  .main-nav,
  .main-nav ul {
    display: flex;
    gap: 1.5rem;
  }
  
  .main-nav ul {
    list-style: none !important;
  }
  .main-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    transition: color 0.2s;
  }
  .main-nav a.active{
    display: flex;
    align-items: center;
    justify-content: center; font-weight: 600;
  }
  .main-nav a.active,
  .main-nav a:hover {
    color: var(--black);
  }
  
  /* .main-nav a.active::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 16px;
    background: var(--primary-red);
    margin-right: 6px;
    vertical-align: middle;
  }
  .main-nav a.active::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 16px;
    background: var(--primary-red);
    margin-left: 6px;
    vertical-align: middle;
  } */
  
  .hero-banner {
    position: relative;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    object-position: bottom;
  }
  
  .hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5vw;
  }
  
  .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
  }
  
  .hero-divider {
    width: 60px;
    height: 6px;
    background: var(--primary-red);
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 3px;
  }
  
  .hero-text-section {
    background: var(--primary-red2);
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10rem 0;
  }

  /* --- HERO TEXT ANIMATION --- */
.hero-text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  gap: 4rem;
}
.hero-text-bar {
  width: 8px;
  height: 80px;
  background: var(--primary-red);
  transition: transform 1s cubic-bezier(.6,1.5,.6,1), left 1s, right 1s;
  z-index: 2;
}
.hero-text-section .hero-text-bar{
  background: var(--black);
}
.hero-text-anim-content {
  opacity: 0;
  transition: opacity 0.7s 0.3s;
}
/* Initial: bars together in center, content hidden */
.hero-text-wrapper {
  overflow: hidden;
}
.hero-text-bar.left,
.hero-text-bar.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scaleY(1);
}
.hero-text-bar.left {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%) scaleY(1);
}
.hero-text-bar.right {
  right: 50%;
  left: auto;
  transform: translate(50%, -50%) scaleY(1);
}
.hero-text-wrapper.in-view .hero-text-bar.left {
  left: 0;
  transform: translateY(-50%) scaleY(1);
}
.hero-text-wrapper.in-view .hero-text-bar.right {
  right: 0;
  transform: translateY(-50%) scaleY(1);
}
.hero-text-wrapper.in-view .hero-text-anim-content {
  opacity: 1;
  transition-delay: 0.5s;
}
.flip-card-label svg path,
.experience-card .experience-cta svg path,
.blog-card a button.exp-cta.experience-cta svg path,
.carousel-slide.featured-experience-card .exp-cta svg path {
  fill: var(--primary-red);
}
.collapsible-slider-section .access-carousel-slide button.exp-cta,
.experience-card .experience-cta,
.blog-card a button.exp-cta.experience-cta,
.carousel-slide.featured-experience-card .exp-cta {
  background: transparent;
  width: auto !important;
  height: auto !important;
}
.why-cards .why-card:not(:last-child):after,
.how-it-works-steps .how-it-works-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 10px;
  width: 1px;
  height: 90%;
  background: #ddd;
  right: -10px;
}
.how-it-works-steps .how-it-works-step:not(:last-child):after {
  background: #000;
  right: -12px;
}
.why-card, .how-it-works-step {
  border: none !important;
  position: relative;
}
.banking-tabs-container {
  gap: 15px !important;
  position: relative !important;
  width: auto !important;
}
.banking-tabs-container:after {
  width: 100%;
  content: "";
  background: #ddd;
  position: absolute;
  bottom: 0;
  height: 4px;
}
.nrdisclaimer .accordionwrapperbtn a.explore-cta:hover,
a.explore-cta.hsbcindiamembers-cta.hsbcindiamembersbutton:hover,
a.explore-cta.entertainmenthsbcbutton.entertainmenthsbcbuttonpop:hover, a.explore-cta.outlinecta.close:hover {
  background: #f3f3f3 !important;
}
.nrdisclaimer .accordionwrapperbtn a.explore-cta:active,
.nrdisclaimer .accordionwrapperbtn a.explore-cta:focus,
a.explore-cta.hsbcindiamembers-cta.hsbcindiamembersbutton:focus,
a.explore-cta.entertainmenthsbcbutton.entertainmenthsbcbuttonpop:focus,
a.explore-cta.hsbcindiamembers-cta.hsbcindiamembersbutton:active,
a.explore-cta.entertainmenthsbcbutton.entertainmenthsbcbuttonpop:active {
  background: #767676 !important;
  color: #fff !important
}
.nrdisclaimer .accordionwrapperbtn a.explore-cta:active svg path,
.nrdisclaimer .accordionwrapperbtn a.explore-cta:focus svg path,
a.explore-cta.hsbcindiamembers-cta.hsbcindiamembersbutton:focus svg path,
a.explore-cta.entertainmenthsbcbutton.entertainmenthsbcbuttonpop:focus svg path,
a.explore-cta.hsbcindiamembers-cta.hsbcindiamembersbutton:active svg path,
a.explore-cta.entertainmenthsbcbutton.entertainmenthsbcbuttonpop:active svg path {
  fill: #fff !important
}
/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-text-bar {
    height: 70px;
  }
}
@media (max-width: 600px) {
  .hero-text-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-text-wrapper.in-view .hero-text-bar.left {
    left: 40px;
    top: 15px;
    transform: none;
  }
  .hero-text-wrapper.in-view .hero-text-bar.right {
    right: 40px;
    top: 15px;
    transform: none;
  }
}

  .hero-text-content {
    text-align: center;
    color: var(--white);
   
  }

  .hero-text-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .hero-text-content p {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
    width: 80%;
    margin: auto;
  }

  @media (max-width: 900px) {
    .hero-text-wrapper {
      gap: 1rem;
    }
    .hero-text-bar {
      height: 70px;
    }
    .hero-text-content h1 {
      font-size: 1.5rem;
    }
    .hero-text-content p {
      font-size: 1rem;
    }
  }

  @media (max-width: 600px) {
    .hero-text-wrapper {
      flex-direction: column;
      gap: 0.5rem;
    }
    .hero-text-bar {
      width: 4px;
      height: 32px;
    }
  }
  
  /* About Us Hero Banner */
  .hero-banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-banner.about {
    height: 540px;
  }
  
  .hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about-us-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
  }

  
  .hero-banner .section-title-anim-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }
   .hero-banner .hero-banner-bg .section-title-anim-wrapper{
    max-width: 900px;
  }
  .hero-banner .section-bar {
    background: var(--primary-red);
  }
  
  .hero-title-group {
    text-align: center;
    margin: 0 2rem;
  }
  
  .hero-title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    line-height: 1.1;
  }
  
  .hero-desc {
    color: #ccc;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.4;
  }
  
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 3.5rem;
    }
    .hero-desc {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 900px) {
    .hero-banner {
      height: 60vh;
    }
    .hero-title {
      font-size: 3rem;
    }
    .hero-desc {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 700px) {
    .hero-banner {
      height: 50vh;
    }
    .hero-title {
      font-size: 2.5rem;
    }
    .hero-desc {
      font-size: 1.1rem;
    }
    .hero-title-group {
      margin: 0 1rem;
    }
  }
  
  @media (max-width: 500px) {
    .hero-title {
      font-size: 2rem;
    }
    .hero-desc {
      font-size: 1rem;
    }
  }

  @media (max-width: 700px) {
  .main-header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    gap: 0.5rem;
    background: var(--white);
  }
  .main-nav {
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-divider {
    width: 40px;
    height: 4px;
  }
  .hero-overlay {
    padding-bottom: 2rem;
  }
}

/* Mobile-specific styles for the design */
@media (max-width: 768px) {
  .main-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 0 1rem;
    background: var(--white);
    position: relative;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 50%;
  }
  
  .main-nav.show {
    display: flex;
  }
  
  .main-nav a {
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }

  .main-nav a.active::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 16px;
    background: var(--primary-red);
    margin-right: 6px;
    vertical-align: middle;
}
.main-nav ul {
    display: block;
}

.main-nav ul li a {
    display: block;
    text-align: left !important;
    justify-content: left !important;
}
.main-nav a.active::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 16px;
  background: var(--primary-red);
  margin-left: 6px;
  vertical-align: middle;
}
  
  .main-nav a:last-child {
    border-bottom: none;
  }
  
  .main-nav a.active {
    color: var(--black);
  }
  
  
  /* Mobile menu toggle button */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.2s ease;
  }
  
  .mobile-menu-toggle.hide {
    display: none;
  }
  
  /* Mobile menu overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  
  .mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  /* Mobile close button */
  .mobile-close-btn {
    display: block;
    /* background: none; */
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.2s ease;
  }
  
  .mobile-close-btn.hide {
    display: none;
  }
  
  /* Hero banner mobile styles */
  .hero-banner {
    height: calc(100vh - 64px);
    background: var(--black);
    position: relative;
  }
  

  
  /* Loading indicator */
  .mobile-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
    z-index: 2;
  }
  
  .loading-square {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
  }
  
  /* Mobile hero content */
  .mobile-hero-content {
    position: absolute;
    bottom: 2rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
  }
  
  .mobile-hero-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
  }
  
  .mobile-hero-title::before,
  .mobile-hero-title::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 16px;
    background: var(--primary-red);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .mobile-hero-title::before {
    left: -1rem;
  }
  
  .mobile-hero-title::after {
    right: -1rem;
  }
  
  .mobile-hero-description {
    font-size: 1rem;
    color: #ccc;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
  }

  /* .hero-text-section{
    padding: 3rem 0;;
  } */
  /* Mobile typography improvements */
  .hero-text-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero-text-content p {
    font-size: 0.95rem !important;
    line-height: 1.4;
    margin-bottom: 0;
    width: 90%;
  }

  /* Mobile section improvements */
  .experiences-section {
    padding: 2rem 0 1rem 0!important;
  }

  .exp-title {
    font-size: 1.6rem !important;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .exp-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.4;
    margin: 0.8rem 0 0 0;
  }

  /* Mobile flip cards improvements */
  .flip-cards-container {
    grid-template-columns: 1fr 1fr!important;
    grid-template-rows: repeat(6, auto)!important;
    gap: 0.8rem !important;
    padding: 0 1rem !important;
  }
  

  /* .flip-cards-container .flip-card:nth-child(4)  
  {
    grid-column: 1 / span 2 !important;
    grid-row: auto !important;
  } */

  .flip-card {
    height: 180px !important;
  }

  .flip-card-label {
    font-size: 1rem !important;
    bottom: 0.8rem !important;
    left: 0.8rem;
  }

  .flip-card-title {
    font-size: 1.2rem !important;
  }

  /* Mobile slider improvements */
  .slider {
    height: 100px !important;
    margin: 0 1rem;
  }

  .slider__content {
    padding: 0.8rem !important;
    min-height: 35px !important;
  }

  .slider__title {
    font-size: 0.8rem;
  }

  /* Mobile why section improvements */
  .why-section {
    padding: 3rem 0 !important;
  }

  /* .why-title {
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  } */

  .why-desc {
    font-size: 1rem !important;
    line-height: 1.4;
    color: #E9EAEB;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.3rem !important;
    padding: 0 1rem !important;
    margin: 2rem auto 0 auto !important;
  }

  .why-card {
    padding: 1.5rem 1rem 1rem 1rem !important;
    min-height: 160px !important;
  }

  .why-card-title {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem;
  }

  .why-card-desc {
    font-size: 0.75rem !important;
    line-height: 1.4;
    color: #fff !important;
  }

  /* Mobile explore section improvements */
  .explore-section {
    padding: 2rem 0 !important;
  }

  /* .explore-title {
    font-size: 1.8rem !important;
    line-height: 1.2;
  } */

  .explore-image-wrapper {
    margin: 1.5rem 0 !important;
  }

  

  .footer-brand-newsletter {
    min-width: auto !important;
    max-width: none !important;
    gap: 1rem!important;
  }

  


  .footer-payments {
    gap: 0.5rem !important;
  }

  .footer-payments img {
    height: 24px !important;
  }



  .collapsible-slider-section .section-title-anim-wrapper.in-view .section-bar.left, 
  .collapsible-slider-section .section-title-anim-wrapper.in-view .section-bar.right
  {
    top: 0px !important;
  }


  /* Fix mobile title layout to match design */
  .experiences-header .section-title-anim-wrapper {
    position: relative;
    padding: 2rem 1rem !important;
  }


  .experiences-header .section-title-anim-content {
    text-align: center;
    padding: 0 0rem;
  }

  .experiences-header .exp-title {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.02em !important;
    width: 70%;
  }

  .experiences-header .exp-subtitle {
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #666 !important;
    margin: 0 !important;
  }

  /* Ensure proper spacing for mobile */
  .experiences-header .exp-title-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    width: 100%;
  }

  /* Mobile explore more CTA improvements */
  .explore-more-cta-wrapper {
    bottom: 8% !important;
    padding: 0 1rem !important;
  }


  

  .carousel-nav {
    width: 36px !important;
    height: 36px !important;
  }

  .carousel-wrapper {
    gap: 0.8rem !important;
  }

  /* Mobile location CTA improvements */
  .location-cta-section {
    bottom: 10px !important;
    right: 10px !important;
  }

  .location-badge,
  .duration-badge {
    padding: 6px 10px !important;
    font-size: 0.7rem !important;
  }

  .location-badge svg,
  .duration-badge svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* Desktop: Hide mobile location details */
  .mobile-location-details {
    display: none;
  }

/* Additional mobile improvements for smaller screens */
@media (max-width: 480px) {
  .hero-text-content h1 {
    font-size: 1.6rem !important;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .hero-text-content p {
    font-size: 0.9rem !important;
  }

  .exp-title {
    font-size: 1.4rem !important;
  }

  .exp-subtitle {
    font-size: 0.85rem !important;
  }

  .flip-card {
    height: 230px !important;
  }

  .flip-card-label {
    font-size: 0.9rem !important;
  }

  .why-title {
    font-size: 1.6rem !important;
  }

  .why-desc {
    font-size: 0.95rem !important;
  }

  .explore-title {
    font-size: 1.6rem !important;
  }

  .slider {
    height: 80px !important;
  }

  .slider__title {
    font-size: 0.75rem;
  }

  .carousel-slide {
    width: 200px !important;
  }

  .footer-payments img {
    height: 20px !important;
  }
}

/* Mobile menu functionality */
.mobile-menu-toggle,
.mobile-close-btn {
  display: none;
}
}

@media (max-width: 768px) {
  .mobile-menu-toggle,
  .mobile-close-btn {
    display: block;
  }
}

/* How It Works Section */
.how-it-works-section {
  background: #fff;
  padding: 3rem 0;
  max-width: 1280px;
  margin: 0 auto;
}

.how-it-works-header .section-title-anim-wrapper {
  max-width: 400px;
  margin-bottom: 3rem;
}
.access-explained-section .section-title-anim-wrapper{
  max-width: 500px;
}

.how-it-works-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0;
}

.how-it-works-banner {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0 2rem;
}

.how-it-works-banner-image {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
}

.how-it-works-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.mobile-menu-toggle, .mobile-close-btn  {
  display: none;
}
.mobile-menu-toggle:focus, .mobile-close-btn:focus{
  outline: none;
}

.how-it-works-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 0px;
  color: #fff;
  padding: 12px 10px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 
    -1px -1px 0 #c300ff,
    1px -1px 0 #c300ff,
    -1px 1px 0 #c300ff,
    1px 1px 0 #c300ff,
    -1px 0 0 #c300ff,
    1px 0 0 #c300ff,
    0 -1px 0 #c300ff,
    0 1px 0 #c300ff;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0 2rem;
}

.how-it-works-step {
  text-align: left;
  padding: 2rem;
  background: #E9EAEB;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: #333;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.8rem;
}

.step-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design for How It Works */
@media (max-width: 1200px) {
  .how-it-works-steps {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .how-it-works-title {
    font-size: 2rem;
  }
  
  .how-it-works-banner-image {
    height: 300px;
  }
  
  .how-it-works-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .how-it-works-step {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .how-it-works-section {
    padding: 2rem 0;
  }
  
  .how-it-works-title {
    font-size: 1.6rem;
  }
  
  .how-it-works-banner {
    padding: 0 1rem;
  }
  
  .how-it-works-banner-image {
    height: 250px;
  }
  
  .how-it-works-overlay-text {
    bottom: 15px;
    left: 15px;
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-shadow: 
      -1px -1px 0 #c300ff,
      1px -1px 0 #c300ff,
      -1px 1px 0 #c300ff,
      1px 1px 0 #c300ff,
      -1px 0 0 #c300ff,
      1px 0 0 #c300ff,
      0 -1px 0 #c300ff,
      0 1px 0 #c300ff;
  }
  
  .how-it-works-steps {
    padding: 0 1rem;
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .how-it-works-step{
    padding: 1rem;
  }

  /* First two items in same row */
  .how-it-works-step:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .how-it-works-step:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  /* Third item full width */
  .how-it-works-step:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  
  .step-title {
    font-size: 1.2rem;
    width: 77%;
  }
  
  .step-description {
    font-size: 0.8rem;
  }
}

.experiences-section {
  background: #fff;
  padding: 4rem 0 6rem 0;
}

.experiences-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.exp-title-cta {
  display: flex;
  align-items: center;
  gap: 0rem;
  text-align: center;
  flex-direction: column;
}

.exp-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #111;
  margin: 0;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}
.banking-section .exp-title{
  color: var(--primary-red);
}

.exp-cta {
  background: var(--primary-red);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.experience-card .experience-cta{
  width: 50px;
  height: 50px; 
}
.experience-card .experience-cta svg{
  width: 20px;
  height: 20px;
}

.exp-subtitle {
  text-align: center;
  color: #444;
  font-size: 1.1rem;
  margin: 1.2rem 0 0rem 0;
}

/* Flip Cards Container */
.flip-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Flip Card Styles - Exact W3Schools Working Solution */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 472px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  transform-origin: center center;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, 
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  top: 0;
  left: 0;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
  top: 0;
}

/* Style the back side */
.flip-card-back {
  background-color: #000;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 2rem;
}
.flip-card-label-wrapper{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-card-label {
  /* position: absolute; */
  /* bottom: 2rem;
  left: 2rem; */
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  /* background: rgba(0,0,0,0.3); */
  padding: 0.5rem 1rem;
  border-radius: 4px;
  /* backdrop-filter: blur(10px); */
}

.flip-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: white;
}
.explore-cta-wrapper.mt-50{
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .exp-title {
    font-size: 1.8rem;
  }
  .flip-cards-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  .flip-card {
    height: 250px;
  }
  .flip-card-label {
    font-size: 1.3rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }
  .flip-card-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 600px) {
  .experiences-header {
    flex-direction: column;
    gap: 0.7rem;
  }
  .exp-title-cta {
    flex-direction: column;
    gap: 0.7rem;
  }
  .flip-cards-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }
  .flip-card {
    height: 200px;
  }
  .flip-card-label {
    font-size: 1.1rem;
    bottom: 1rem;
    left: 50%;
    /* transform: translate(-50%,0); */
    width: 100%;
  }
  .flip-card-title {
    font-size: 1.4rem;
  }
}

.why-section {
  background: var(--black);
  padding: 4rem 0 4rem 0;
  /* max-width: 1280px; */
  margin: 0 auto;
}
.why-section.interest {
  width: 100%;
  max-width: none;
  margin-bottom: 5rem;
}

.why-section.enquiry {
  width: 100%;
  max-width: none;
  margin-bottom: 5rem;
  background: #F5F5F5;
}
.why-section.about{
  background: #fff;
}
.why-section.enquiry .why-title,.why-section.enquiry .why-desc{
  color: #000;
}


/* Experience Categories Section */
.experience-categories-section {
  background: #fff;
  padding: 0 0 4rem 0;
}

.experience-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 70vh;
}

/* Left Sidebar */
.experience-sidebar {
  width: 280px;
  background: #fff;
  padding: 0;
  position: sticky;
  top: 80px;
  height: fit-content;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.experience-nav {
  display: flex;
  flex-direction: column;
}



.nav-category-link {
  display: block;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #777;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-category-link:hover {
  background: #f8f8f8;
  color: #333;
}

.nav-category-link.active {
  background: #fff;
  color: #000;
  border-left: 3px solid var(--primary-red);
}

.nav-subcategories {
  display: none;
}

.nav-category-link.active + .nav-subcategories {
  display: block;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

/* Show Lifestyle subcategories by default */
.nav-category:first-child .nav-subcategories {
  display: block;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.nav-subcategory-link {
  display: block;
  padding: 0.8rem 2rem 0.8rem 3rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #a4a7ae;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  text-transform: uppercase;
}

.nav-subcategory-link:hover {
  background: #f0f0f0;
  color: #333;
}

.nav-subcategory-link.active {
  color: var(--primary-red);
  font-weight: 500;
}

/* Right Content Area */
.experience-content {
  flex: 1;
  padding: 2rem 3rem;
  padding-top: 0rem;
  background: #fff;
}

.content-category {
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}
.content-category:last-child {
  border-bottom: none;
}

.content-subcategory {
  margin-bottom: 3rem;
}

.subcategory-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}

.category-header {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.category-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  font-weight: 300;
}

/* Removed section navigation - using scroll spy instead */

/* Experience Cards Grid */
.experience-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.experience-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  /* transform: translateY(-5px); */
  cursor: pointer;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

.experience-card-image {
  width: 100%;
  height: 0;
  padding-bottom: 80%; /* Aspect ratio 462:577.5 = 0.8:1 = 125% padding to maintain exact ratio */
  overflow: hidden;
  position: relative;
}

.experience-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.closed-cta {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #535862;
    color: white;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 2px;
}

/* .experience-card:hover .experience-card-image img {
  transform: scale(1.05);
} */

/* Red Bars for Experience Cards */
.red-bar {
  position: absolute;
  width: 8px;
  height: 80px;
  background: var(--primary-red);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.red-bar.left-bar {
  left: 50%;
  transform: translate(-50%, -50%);
}

.red-bar.right-bar {
  right: 50%;
  transform: translate(50%, -50%);
}

.experience-card:hover .red-bar.left-bar {
  opacity: 1;
  left: 0;
  transform: translate(0, -50%);
}

.experience-card:hover .red-bar.right-bar {
  opacity: 1;
  right: 0;
  transform: translate(0, -50%);
}

/* Experience CTA Button */
.experience-cta {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  opacity: 1;
  transform: scale(1) translate(0px, 0px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
}

.experience-card:hover .experience-cta {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

/* Content shrinking effect */
.experience-card-content {
  padding: 1.5rem 0;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card a .experience-card-text {
  /* padding-right: 5rem;  */
  width: 70%;
}

a .experience-card-title{
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
  line-height: 1.4;
  text-transform: none;
  text-decoration: none;
  
}

a .experience-card-text{
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  font-weight: 300;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .experience-layout {
    max-width: 95vw;
  }
  
  .experience-sidebar {
    width: 250px;
  }
  
  .experience-content {
    padding: 2rem;
  }
}


@media(max-width: 1100px) {

  .image-carousel-section .blog-title-container, .image-carousel-section .carousel-container, .main-footer .footer-top, .main-footer .footer-bottom {
    width: 94%;
  }
  .image-carousel-section .carousel-slide {
    height: 500px !important;
    min-width: auto !important;
    width: auto !important;
    aspect-ratio: auto;
  }
}

@media (max-width: 900px) {
  .experience-layout {
    flex-direction: column;
  }
  
  .experience-sidebar {
    width: 100%;
    position: static;
    border-right: none;
    max-height: none;
    overflow-y: visible;
  }
  
  .nav-subcategories {
    display: block !important;
  }
  
  
  .nav-category-link {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .nav-subcategory-link {
    padding: 0.6rem 1.5rem 0.6rem 2.5rem;
    font-size: 0.8rem;
  }
  
  .experience-content {
    padding: 2rem 1.5rem;
  }
  
  .category-title {
    font-size: 2rem;
  }
  
  .subcategory-title {
    font-size: 1.3rem;
  }
  
  .experience-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .experience-content {
    padding: 1.5rem 1rem;
  }
  .image-carousel-section .carousel-slide {
    height: 360px !important;
    min-width: auto !important;
    width: auto !important;
    aspect-ratio: auto;
  }
  .image-carousel-section .blog-title-container, .image-carousel-section .carousel-container, .main-footer .footer-top, .main-footer .footer-bottom {
    width: 100%;
  }
  .category-title {
    font-size: 1.8rem;
  }
  
  .subcategory-title {
    font-size: 1.2rem;
  }
  
  .nav-category-link {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }
  
  .nav-subcategory-link {
    padding: 0.5rem 1rem 0.5rem 2rem;
    font-size: 0.75rem;
  }
  .flip-card-label-wrapper {
    bottom: -20px;
  }
}

.why-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.why-bar {
  width: 8px;
  height: 64px;
  background: var(--primary-red);
}

.why-title-group {
  text-align: center;
  margin: 0 2rem;
}

.why-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.why-desc {
  color: #ccc;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1800px;
  margin: 3rem auto 0 auto;
  padding: 0 2rem;
}

.why-card {
  background: #232323;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.why-icon {
  margin-bottom: 2rem;
}

.why-card-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.why-card-desc {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .why-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .why-header {
    flex-direction: column;
    gap: 1rem;
  }
  .why-bar {
    height: 32px;
    width: 4px;
  }
  .why-title {
    font-size: 2rem;
  }
  .why-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .why-card {
    padding: 1.5rem 1rem 1rem 1rem;
    min-height: 180px;
  }
  .why-icon {
    margin-bottom: 1rem;
  }
}

.main-footer {
  background: #f4f4f5;
  padding: 0;
  font-size: 1rem;
  color: #222;
  border-top: 1px solid #e0e0e0;
  
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  padding: 3.5rem 0vw 2.5rem 0vw;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand-newsletter {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 320px;
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-newsletter label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 0.7rem;
  display: block;
}

.footer-newsletter-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.1rem;
}

.footer-newsletter input[type="email"] {
  padding: 0.7em 1em;
  font-size: 1rem;
  outline: none;
  flex: 1;
  border: none;
  background: #fff;
}

.footer-newsletter button {
  background: var(--primary-red);
  color: #fff;
  border: none;
  /* border-radius: 0 4px 4px 0; */
  padding: 0 1.5em;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  height: 44px;
}

.footer-newsletter button:hover {
  background: #b71c1c;
}

.footer-links {
  display: flex;
  gap: 4rem;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 140px;
}

.footer-link-title {
  font-size: 1rem;
  font-weight: 400;
  color: #707070;
  margin-bottom: 0.7rem;
  letter-spacing: 0.05em;
}

.footer-link-group a {
  color: #707070;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  height: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: color 0.5s;
}

.footer-link-group a .footer-link-text {
  display: inline-block;
  transition: transform 0.4s;
}

.footer-link-group a::before,
.footer-link-group a::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 16px;
  background: var(--primary-red);
  vertical-align: middle;
  margin-bottom: 0px;
  opacity: 0;
  transition: opacity 0.4s;
}

.footer-link-group a::before {
  margin-right: 3px;
}

.footer-link-group a::after {
  margin-left: 12px;
}

.footer-link-group a:hover::before,
.footer-link-group a:hover::after {
  opacity: 1;
}

.footer-link-group a:hover .footer-link-text {
  transform: translateX(5px);
  color: var(--black);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem 0vw 1.2rem 0vw;
  border-top: 1px solid #e0e0e0;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-copyright {
  color: #888;
  font-size: 1rem;
  font-weight: 300;
}

.footer-payments {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-payments img {
  height: 28px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2rem 1rem 1.5rem 1rem ;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1rem 1rem 1rem;
  }
}

.explore-section {
  background: #fff;
  padding: 4rem 0 3.5rem 0;
}

.explore-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1rem;
  position: relative;
}

.explore-image {
  width: 100%;
  max-width: 1280px;
  height: 400px;
  background-image: url('/images/explore-the-unexplored-v2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.explore-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.explore-title {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
.keep-exploring-section .explore-title{
  color: var(--black);
  margin-bottom: 0rem;
}


/* Explore Section Animated Title Styles */
.explore-section .section-title-anim-wrapper {
  margin-bottom: 2rem;
}

.explore-section .explore-title {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.explore-more-cta-wrapper{
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 2rem;
}
.explore-more-cta-inner svg{
  position: relative;
  top: 3rem;
}

.explore-cta {
  background: var(--primary-red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8em 2.2em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.explore-cta:hover,
.explore-cta:focus {
  background: #b71c1c;
  /* transform: scale(1.05); */
}

.explore-cta-arrow {
  font-size: 1.2em;
  margin-left: 0.2em;
}

@media (max-width: 900px) {
  .explore-title {
    font-size: 2.5rem;
  }
  .explore-content-overlay {
    padding: 2.5rem 1.5rem;
  }
  .explore-image {
    max-width: 100vw;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .explore-image-wrapper {
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
  }
  .explore-section {
    padding: 2rem 0 2rem 0;
  }
  .explore-content-overlay {
    padding: 2rem 1rem;
  }
  .explore-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  /* Use mobile background image for explore section */
  .explore-image {
    background-image: url('/images/explore-mobile-bg.png');
    height: 300px;
  }
}

.collapsible-slider-section {
  background: #fff;
  padding: 2.5rem 0 2.5rem 0;
}

.slider {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 540px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  background: #fff;
}

.slider__item {
  flex: 1 1 0;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: flex 0.7s, filter 0.3s;
  filter: grayscale(1);
  min-width: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0 3px;
}

.slider__item:hover {
  filter: grayscale(0);
}

.slider__item.active {
  flex: 5 1 0;
  filter: grayscale(0);
}

.slider__content {
  color: #fff;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  min-height: 80px;
  justify-content: space-between;
}

.slider__title {
  font-size: 2rem;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin: 0;
  
}

.slider__item:not(.active) .slider__content {
  display: none;
}
.collapsible-slider-section .access-carousel-slide .slider__content {
    position: absolute;
    bottom: 0;justify-content: left;
}

.collapsible-slider-section .access-carousel-slide h2.slider__title {
    font-size: 1.5rem;
}

.collapsible-slider-section .access-carousel-slide button.exp-cta {
    height: 50px;
    width: 50px;
}

.collapsible-slider-section .access-carousel-slide button.exp-cta svg {
    width: 20px;
}

.collapsible-slider-section .access-carousel-container {
    position: relative;
}

.collapsible-slider-section .access-carousel-navigation.desktop-view {
    position: absolute;
    bottom: 46%;
    width: 100%;
    z-index: 0;
    left: -28px;
}
.collapsible-slider-section .access-carousel-slide {
  flex: unset;
  min-width: 540px;
  height: 540px;
  background-size: cover !important;
}
.collapsible-slider-section .access-carousel-container {
    overflow: unset;
}
.collapsible-slider-section .access-carousel-container .access-carousel-containerinner {
    overflow: hidden;
}
.collapsible-slider-section .access-carousel-navigation.desktop-view button {
    border-radius: 0;
}
.collapsible-slider-section .access-carousel-navigation.desktop-view button#accessNextBtn {
    right: -25px;
    position: relative;
}
section.collapsible-slider-section {
    position: relative;
}
@media(max-width: 1025px) {
  .collapsible-slider-section .access-carousel-navigation.desktop-view{
    width: 88%;
    z-index: 0;
    left: -58px;
    margin: 0 auto;
    right: 0;
  }
  .collapsible-slider-section .access-carousel-navigation.desktop-view button#accessNextBtn {
    right: -26px;
    position: relative;
  }
}
@media (max-width: 900px) {
  .slider {
    height: 220px;
  }
  .slider__title {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .slider {
    height: 120px;
    min-width: 0;
  }
  .slider__content {
    padding: 1rem;
    min-height: 40px;
  }
  .slider__title {
    font-size: 0.9rem;
  }
}

/* --- SECTION TITLE ANIMATION (Content Edge, Unified) --- */
.section-title-anim-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1075px;
  width: 100%;
  margin: 0 auto 2.5rem auto;
  gap: 0;
  overflow: visible;
  padding: 0 0rem;
}
.how-it-works-section .section-title-anim-wrapper{
  max-width: 400px;
  margin-bottom: 4rem;
}

/* Our Circle Of Excellence Section */
.circle-of-excellence-section {
  
  padding: 4rem 0;
  max-width: 1280px;
  margin: 0 auto;
}

.circle-of-excellence-header .section-title-anim-wrapper {
  max-width: 600px;
  margin-bottom: 3rem;
}

.banking-section .section-title-anim-wrapper, .banking .section-title-anim-wrapper{
  max-width: 700px;
  /* margin-bottom: 3rem; */
}
.banking-section.page .section-title-anim-wrapper {
  margin-bottom: 4rem;
  max-width: 450px;
}
.banking-section.page.non-banking .section-title-anim-wrapper {
  max-width: 500px;
  margin-bottom: 4rem;
}
.banking-section.page{
  height: 640px;
}

.circle-of-excellence-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0;
}

.brands-grid {
  display: flex;
  gap: 3rem 2rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;justify-content: center;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  width: calc(100% / 5);
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 120px;
}

.brand-item:hover {
  transform: translateY(-3px);
  
}

.brand-item img {
  max-width: 137px;
  max-height: 50px;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
}

/* Responsive Design for Circle of Excellence */
@media (max-width: 1200px) {
  .brands-grid {
    gap: 2rem 1.5rem;
    padding: 0 1.5rem;
  }
  
  .brand-item {
    padding: 1rem;
    min-height: 100px;
  }
  
  .brand-item img {
    max-height: 70px;
  }
}

@media (max-width: 900px) {
  .circle-of-excellence-title {
    font-size: 2rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .brand-item {
    width: calc(100% / 3);
  }
  
  .brand-item {
    min-height: 90px;
  }
}

@media (max-width: 600px) {
  .circle-of-excellence-section {
    padding: 2rem 0;
  }
  
  .circle-of-excellence-title {
    font-size: 1.8rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 1rem;
  }
  
  .brand-item {
    width: calc(100% / 2);
  }
  .brand-item {
    padding: 1rem;
    min-height: 80px;
    background-color: #F9F9F9;
    min-height: 92px;
  }
  
  .brand-item img {
    max-height: 60px;
  }
}

/* Image Carousel Section */
.image-carousel-section {
  background: #fff;
  padding: 4rem 0;
}

/* Blog Title Section */
.blog-title-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-title-content {
  flex: 1;
}

.blog-title-wrapper {
  padding-right: 2rem;
}

.blog-main-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #333;
  margin: 0 0 1rem 0;
  font-family: 'UniversNextforHSBC-Medium', Arial, sans-serif;
}

.blog-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #414651;
  margin: 0;
  font-weight: 300;
  font-family: 'UniversNextforHSBC-Regular', Arial, sans-serif;
}

.blog-share-section {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.blog-share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1.5px solid #A4A7AE;
  padding: 0.75rem 1.25rem;
  color: #333;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'UniversNextforHSBC-Medium', Arial, sans-serif;
}

.blog-share-btn:hover {
  background: #f8f9fa;
  border-color: #bbb;
}



/* Responsive Design for Blog Title */
@media (max-width: 900px) {
  .blog-title-container {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .blog-title-wrapper {
    padding-right: 0;
  }
  
  .blog-main-title {
    font-size: 2rem;
  }
  
  .blog-share-section {
    align-self: flex-end;
  }
}

@media (max-width: 600px) {
  .blog-main-title {
    font-size: 1.2rem;
  }
  
  .blog-subtitle {
    font-size: 0.8rem;
    color: #414651;
  }
  
  .blog-share-btn {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
  .blog-title-container {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
}

.carousel-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.carousel-container .explore-cta-wrapper{
  position: absolute;
  bottom: 15px;
  left: 15px;
}

/* Location CTA Section */
.location-cta-section {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-direction: row;
  gap: 2px;
  z-index: 10;
}

.location-badge,
.duration-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  /* border-radius: 20px; */
  color: white;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'UniversNextforHSBC-Medium', Arial, sans-serif;
  white-space: nowrap;
}

.location-badge svg,
.duration-badge svg {
  flex-shrink: 0;
}

/* Responsive Design for Location CTAs */
@media (max-width: 900px) {
  .location-cta-section {
    bottom: 15px;
    right: 15px;
    gap: 6px;
  }
  
  .location-badge,
  .duration-badge {
    padding: 10px 14px;
    font-size: 0.8125rem;
    border-radius: 18px;
  }
  
  .location-badge svg,
  .duration-badge svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 600px) {
  .location-cta-section {
    bottom: 12px;
    right: 12px;
  }
  
  .location-badge,
  .duration-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
    border-radius: 16px;
  }
  
  .location-badge svg,
  .duration-badge svg {
    width: 16px;
    height: 16px;
  }
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.carousel-nav {
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-nav.carousel-prev{
right: 60px;
top: 50%;
transform: translateY(-50%);
}



.carousel-nav:disabled {
  background: rgba(0, 0, 0, 0.3);
  cursor: not-allowed;
  transform: none;
}

.carousel-nav svg {
  transition: transform 0.2s ease;
}

.carousel-nav:hover:not(:disabled) svg {
  transform: scale(1.1);
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1rem;
  align-items: flex-start;
}

.carousel-slide {
  flex: 0 0 auto;
  min-width: 360px;
  width: 360px;
  aspect-ratio: 480 / 640;
  overflow: hidden;
  position: relative;
}

.image-carousel-section .carousel-slide {
  min-width: auto;
  width: auto !important;
  aspect-ratio: auto;
  height: 640px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  /* transform: scale(1.05); */
}

.carousel-slide:focus-within {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}
.desktop-view{
  display: block;
}
.mobile-view{
  display: none;
}
.flex{
  display: flex;
}
.flex-row{
  flex-direction: row;
}
.justify-between{
  justify-content: space-between;
}
.circle-of-excellence-section .section-title-anim-wrapper{
  max-width: 540px;
}

/* Responsive Design for Carousel */
@media (max-width: 1200px) {
  .carousel-slide {
    flex: 0 0 auto;
    min-width: 320px;
    width: 320px;
    aspect-ratio: 480 / 640;
  }
}

@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 auto;
    min-width: 280px;
    width: 280px;
    aspect-ratio: 480 / 640;
  }
  
  .carousel-nav {
    width: 45px;
    height: 45px;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  
  .carousel-wrapper {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .category-entertainment .carousel-slide {
    min-width: auto;
    width: auto !important;
    aspect-ratio: auto;
    height: 320px;
  }
  .desktop-view{
    display: none;
  }
  .mobile-view{
    display: block;
  }
  .carousel-slide {
    flex: 0 0 auto;
    min-width: 240px;
    width: 240px;
    aspect-ratio: 480 / 640;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  
  .carousel-wrapper {
    gap: 1rem;
  }
  
  .image-carousel-section {
    padding: 1rem 0;
  }
  
  /* Index page carousel mobile fix - ensure slides are visible */
  .index-carousel .carousel-slide {
    min-width: 270px;
    flex-shrink: 0;
  }
  
  .index-carousel .carousel-track-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .index-carousel .carousel-track {
    gap: 1rem;
  }
  
  /* Ensure proper slide visibility on all screen sizes */
  .index-carousel .carousel-track-container {
    scroll-behavior: smooth;
  }
  
  .index-carousel .carousel-slide {
    scroll-snap-align: start;
  }
}



.explore-section .section-title-anim-wrapper{
  margin-bottom: 3.5rem;
}
.experiences-section .section-title-anim-wrapper, .collapsible-slider-section .section-title-anim-wrapper{
  max-width: 500px;
}
.explore-section .section-title-anim-wrapper{
  max-width: 500px;
}
.keep-exploring-section .section-title-anim-wrapper {
  max-width: 600px;
}
.why-section.enquiry .section-title-anim-wrapper {
  max-width: 700px;
}
.contact-section .section-title-anim-wrapper {
  max-width: 300px;
}

.circle-of-excellence-section .section-title-anim-wrapper{
  margin-bottom: 4rem;
}
.section-title-anim-content {
  opacity: 0;
  transition: opacity 0.7s 0.3s;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.section-bar {
  width: 8px;
  height: 80px;
  background: var(--primary-red);
  transition: transform 1s cubic-bezier(.6,1.5,.6,1), left 1s, right 1s;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scaleY(1);
}
.section-bar.left {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%) scaleY(1);
}
.section-bar.right {
  right: 50%;
  left: auto;
  transform: translate(50%, -50%) scaleY(1);
}
.section-title-anim-wrapper.in-view .section-bar.left {
  left: 0;
  transform: translateY(-50%) scaleY(1);
}
.section-title-anim-wrapper.in-view .section-bar.right {
  right: 0;
  transform: translateY(-50%) scaleY(1);
}
.section-title-anim-wrapper.in-view .section-title-anim-content {
  opacity: 1;
  transition-delay: 0.5s;
  text-align: center;
}
@media (max-width: 900px) {
  .section-title-anim-wrapper {
    max-width: 95vw;
    padding: 0 1rem;
  }
  .section-bar {
    height: 32px;
  }
}
@media (max-width: 600px) {
  .section-title-anim-wrapper {
    flex-direction: column;
    gap: 0.5rem;
    max-width: 100vw;
    padding: 0 0.5rem;
  }
  .section-bar {
    width: 4px;
    height: 32px;
    top: 50%;
    transform: translate(-50%, -50%) scaleY(1);
    position: absolute;
  }
  .section-title-anim-wrapper.in-view .section-bar.left {
    left: 60px;
    top: 0;
    transform: none;
  }
  .section-title-anim-wrapper.in-view .section-bar.right {
    right: 60px;
    top: 0;
    transform: none;
  }
  .why-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 60px; 
  }
  .why-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 60px; 
  }
  .explore-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 30px; 
    top: 3px;
  }
  .explore-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 30px; 
    top: 3px;
  }
}


/* --- Explore More CTA Slide-in Animation (fixed for centering) --- */
.explore-more-cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 2rem;
  width: auto;
  z-index: 2;
}
.explore-more-cta-inner {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,2,.6,1), transform 0.7s cubic-bezier(.4,2,.6,1);
  will-change: opacity, transform;
}
.explore-more-cta-wrapper.cta-in-view .explore-more-cta-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

/* Privacy Policy Page Styles */
.privacy-policy-content {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.breadcrumb {
  margin-bottom: 40px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb span {
  color: #666;
  margin: 0 8px;
}

.breadcrumb span:last-child {
  color: #DB0011;
  font-weight: 500;
}

/* Privacy Policy Title Section - Using same structure as hero-text-wrapper */
.privacy-title-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  width: 100%;
  gap: 4rem;
  padding: 40px 0;
  overflow: hidden;
}

.privacy-title-bar {
  width: 8px;
  height: 80px;
  background: var(--primary-red);
  position: absolute;
  top: 50%;
  transition: transform 1s cubic-bezier(.6,1.5,.6,1), left 1s, right 1s;
  z-index: 2;
}
.faqs .privacy-title-bar{
  width: 8px;
  height: 80px;
}
.faqs.privacy-title-wrapper{
  max-width: 720px;
}

/* Initial state: bars together in center */
.privacy-title-bar.left,
.privacy-title-bar.right {
  transform: translateY(-50%);
}

.privacy-title-bar.left {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.privacy-title-bar.right {
  right: 50%;
  left: auto;
  transform: translate(50%, -50%);
}

/* Animated state: bars spread apart */
.privacy-title-wrapper.in-view .privacy-title-bar.left {
  left: 0;
  transform: translateY(-50%);
}

.privacy-title-wrapper.in-view .privacy-title-bar.right {
  right: 0;
  transform: translateY(-50%);
}

.privacy-title-content {
  text-align: center;
  color: #333;
  opacity: 0;
  transition: opacity 0.7s 0.3s;
}

.privacy-title-wrapper.in-view .privacy-title-content {
  opacity: 1;
  transition-delay: 0.5s;
}

.privacy-title-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: #333;
}

.privacy-title-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 50px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #333;
}

.content-section p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for privacy policy */
@media (max-width: 900px) {
  .privacy-title-wrapper {
    gap: 2rem;
  }
  
  .privacy-title-bar {
    height: 60px;
  }
  
  .privacy-title-content h1 {
    font-size: 2rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .privacy-policy-content {
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .privacy-title-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 20px 0;
  }
  
  .privacy-title-bar {
    width: 4px;
    height: 32px;
    position: absolute;
    /* top: 50%;
    transform: translateY(-50%); */
  }

  .privacy-title-wrapper.in-view .privacy-title-bar.left {
    left: 50px;
    top: 40px;
    transform: none;
  }

  .privacy-title-wrapper.in-view .privacy-title-bar.right {
    right: 50px;
    top: 40px;
    transform: none;
  }
  .privacy-title-wrapper.terms .privacy-title-bar.left, .privacy-title-wrapper.terms .privacy-title-bar.right{
    top: 25px;
  }
  
  
  .privacy-title-content h1 {
    font-size: 1.8rem;
    width: 70%;
    margin: 0 auto;
    font-weight: 500;
  }
  
  .privacy-title-content p {
    font-size: 1rem;
  }
  
  .content-section h2 {
    font-size: 1.3rem;
    font-weight: 500;
  }
}

/* FAQ Page Styles */
.faq-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  margin: 0 auto 40px auto;
  position: relative;
}

.faq-tabs::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.faq-tab {
  flex: 1;
  padding: 12px 24px;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 400;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
  position: relative;
}

.faq-tab.active {
  background: transparent;
  color: #000;
  font-weight: 700;
}

.faq-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #DB0011;
  z-index: 1;
}

.faq-tab:hover:not(.active) {
  color: #666;
}

/* Add visual feedback for scrollable tabs */
.faq-tabs.scrollable {
  position: relative;
}

.faq-tabs.scrollable::before,
.faq-tabs.scrollable::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-tabs.scrollable::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.9), transparent);
}

.faq-tabs.scrollable::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
}

/* Show scroll indicators when tabs are scrollable */
.faq-tabs.scrollable::before {
  opacity: 1;
}

.faq-tabs.scrollable::after {
  opacity: 1;
}

.faq-content {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-accordion {
  display: none;
}

.faq-accordion.active {
  display: block;
}

.faq-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f8f8;
}

.faq-question::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  transform: rotate(-135deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 30px 30px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Responsive adjustments for FAQ */
@media (max-width: 900px) {
  .faq-tabs {
    flex-direction: row;
    gap: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .faq-tabs::-webkit-scrollbar {
    display: none;
  }

  .faq-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: max-content;
  }
  
  .faq-question {
    padding: 20px 24px;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 24px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
  }
}

@media (max-width: 600px) {
  .faq-tabs {
    max-width: 100%;
    margin: 0 0 30px 0;
    padding: 0 1rem;
    border-bottom: 1px solid #e0e0e0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  .faq-tab {
    padding: 12px 15px;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: none;
  }
  
  .faq-item {
    margin-bottom: 15px;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

/* Contact Page Styles */
.contact-section {
  background: #1a0608 url('../images/contact-bg.png') center/cover;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  flex-direction: column;
}

.contact-section.contact-us {
  background: linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), #1a0608 url('../images/contact-us-bg.png') center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  flex-direction: column;
  position: relative;
}

/* Contact Us Page Specific Styles */
.contact-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  margin-bottom: 1rem;
}

.contact-breadcrumbs a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.contact-breadcrumbs a:hover {
  opacity: 0.8;
}

.breadcrumb-separator {
  color: white;
  font-size: 0.9rem;
}

.current-page {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-content {
  text-align: left;
  max-width: 1280px;
  width: 100%;
  padding: 0 2rem;
  z-index: 5;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: white;
  margin: 0;
  opacity: 0.9;
  font-weight: 300;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  /* max-width: 800px; */
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-start;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 0.75rem 0;
  text-transform: capitalize;
}

.contact-card-description {
  font-size: 1rem;
  color: #A4A7AE;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.contact-detail {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 0;
  word-break: break-word;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-title {
    font-size: 3rem;
  }
  
  .contact-options-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .contact-breadcrumbs {
    top: 1.5rem;
    left: 1.5rem;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
  }
  .contact-content{
    padding: 0 1rem;
  }
  .contact-options-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }
  
  .contact-card {
    padding: 1.75rem 1.25rem;
  }
  
  .contact-card-title {
    font-size: 1.1rem;
  }
  
  .contact-card-description {
    font-size: 0.9rem;
  }
  
  .contact-detail {
    font-size: 0.9rem;
  }
}

.contact-form-container {
  background: #F5F5F5;
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem;
  padding-top: 0rem;
  
}

.contact-form-container .section-title-anim-wrapper {
  margin-bottom: 2.5rem;
}

.contact-form-container h2 {
  color: #1a0608;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form-row {
  display: flex;
  gap: 1rem;
}
.input-box{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-form-row .input-box {
  flex: 1;
}

.contact-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.97rem;
  color: #535862;
}
.input-box .contact-checkbox-label{
  color: #000;
}

.contact-checkbox-label input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #A4A7AE;
  /* border-radius: 4px; */
  background: #FFFFFF;
  cursor: pointer;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-checkbox-label input[type="checkbox"]:checked {
  background: #FFFFFF;
  border-color: #A4A7AE;
  border: 1px solid #000;
}

.contact-checkbox-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #DB0011;
  /* border-radius: 2px; */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select.minimal {
  padding: 0.7em 0.9em;
  border: 1px solid #8C8C97;
  font-size: 1rem;
  height: 48px;
  box-sizing: border-box;
  background: #FFFFFF;
  color: #333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-phone-row input[type="tel"]{
  border: none;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form input[type="tel"]::placeholder {
  color: #A4A7AE;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select.minimal:focus {
  border-color: var(--primary-red);
  outline: none;
  box-shadow: 0 0 0 2px rgba(219, 31, 38, 0.1);
}
.contact-phone-row input[type="tel"]:focus{
  border:none;
  outline: none;
  box-shadow: none;
}

.contact-form input[type="text"]:active,
.contact-form input[type="email"]:active,
.contact-form input[type="tel"]:active,
.contact-form select.minimal:active {
  border-color: var(--primary-red);
}

/* Required asterisk styling */
.required {
  color: #000;
  font-weight: bold;
  margin-left: 2px;
}

.contact-form select.minimal {
  background-image:
    linear-gradient(45deg, transparent 50%, #A4A7AE 50%),
    linear-gradient(135deg, #A4A7AE 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 11px) calc(50% - 2px);
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
  color: #333;
  padding-right: 2.5em;
}

.contact-phone-row select.minimal {
  border: none
}
.contact-phone-row input {
  border: none;
}

.contact-form select.minimal:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary-red) 50%),
    linear-gradient(135deg, var(--primary-red) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 11px) calc(50% - 2px);
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.contact-form select.minimal option {
  color: #333;
  background: #FFFFFF;
}

.contact-form select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Safari, Chrome, Opera */
  -webkit-appearance: none;
}

/* Phone row styling */
.contact-phone-row {
  display: flex;
  align-items: center;
  border: 1px solid #A4A7AE;
  background: #FFFFFF;
  height: 48px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-phone-row:focus-within {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 2px rgba(219, 31, 38, 0.1);
}

.contact-phone-row select {
  border: none;
  background: none;
  padding: 0 8px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  outline: none;
  height: 100%;
  display: flex;
  align-items: center;
  /* border-right: 1px solid #E5E5E5; */
  min-width: 110px;
}

.contact-phone-row input {
  flex: 1;
  border: none;
  background: none;
  padding: 0 12px;
  font-size: 1rem;
  outline: none;
  height: 100%;
  color: #333;
}

.contact-phone-row input::placeholder {
  color: #A4A7AE;
}

/* Eligibility criteria styling */
.eligibility-criteria {
  
  /* padding: 1.5rem; */
  margin-top: 0.5rem;
}

.eligibility-criteria h3 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.eligibility-criteria p {
  color: #555;
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.eligibility-criteria ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.eligibility-criteria li {
  margin-bottom: 0.8rem;
}

.eligibility-criteria li:last-child {
  margin-bottom: 0;
}

/* Terms checkbox styling */
.contact-terms-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terms-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-terms-row input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #A4A7AE;
  background: #FFFFFF;
  cursor: pointer;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.contact-terms-row input[type="checkbox"]:focus {
  border-color: var(--primary-red);
  outline: none;
  box-shadow: 0 0 0 2px rgba(219, 31, 38, 0.1);
}

.contact-terms-row input[type="checkbox"]:checked {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

.contact-terms-row input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

.contact-terms-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* Submit button styling */
.contact-submit-button {
  width: 100%;
  background: #A4A7AE;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.9em 0;
  border: none;
  margin-top: 1rem;
  cursor: not-allowed;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease, cursor 0.2s ease;
}

.contact-form.valid .contact-submit-button,
.contact-submit-button:enabled {
  background: var(--primary-red);
  cursor: pointer;
}

.contact-submit-button:hover:enabled {
  background: #C01A21;
}

/* Form validation */
.contact-form input:invalid:not(:placeholder-shown),
.contact-form select:invalid:not([value=""]) {
  border-color: var(--primary-red);
}

.contact-form input:valid,
.contact-form select:valid {
  border-color: #28A745;
}
.contact-phone-row input:valid,
.contact-phone-row select:valid {
  border: none;
}

/* Empty State Styles */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  min-height: 204px;
  background: #EDEDED;
  margin: 2rem 0;
}

.empty-state-icon {
  margin-bottom: 1rem;
  opacity: 0.6;
}

.empty-state-title {
  font-size: 20px;
  font-weight: 600;
  color: #7D7D7D;
  margin-bottom: 1rem;
}

.empty-state-message {
  font-size: 0.8rem;
  color: #7D7D7D;
  text-align: center;
  line-height: 1.6;
  max-width: 660px;
}

/* Experience Details Section */
.experience-details-section {
  background: #000;
  padding: 5rem 0;
  color: white;
}

.experience-details-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  min-height: 320px;
}

.experience-details-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-title-wrapper {
  text-align: center;
}

.experience-main-title {
  font-size: 2rem;
  font-weight: 600;
  color: #db1f26;
  margin: 0 0 1rem 0;
  font-family: 'UniversNextforHSBC-Medium', Arial, sans-serif;
}

.experience-subtitle {
  font-size: 1.125rem;
  color: #ccc;
  margin: 0;
  font-weight: 300;
  font-family: 'UniversNextforHSBC-Regular', Arial, sans-serif;
}

.experience-details-right {
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.scrollable-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0rem 0;
  position: relative;
}

.experience-item {
  transition: all 0.6s ease;
  /* opacity: 0.4; */
  transform: scale(0.95);
  padding: 0.5rem 0;
}

.experience-item.active {
  opacity: 1;
  /* transform: scale(1); */
}

.experience-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  font-family: 'UniversNextforHSBC-Regular', Arial, sans-serif;
  transition: all 0.6s ease;
}

.experience-item:not(.active) h3 {
  color: #666;
}

.experience-item.active h3 {
  color: white;
}

/* Experience Details Animated Bars */
.experience-details-section .section-bar {
  background: #db1f26;
}

.experience-details-section .section-title-anim-wrapper {
  margin-bottom: 0;
}

.experience-details-section .section-title-anim-content {
  text-align: center;
}

/* Responsive Design for Experience Details */
@media (max-width: 900px) {
  .experience-details-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .experience-main-title {
    font-size: 2rem;
  }
  
  .scrollable-content {
    gap: 1rem;
  }
  
  .experience-item h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .experience-details-section {
    padding: 3rem 0;
  }
  
  .experience-main-title {
    font-size: 1.75rem;
  }
  
  .experience-item h3 {
    font-size: 1.125rem;
  }
  
  .scrollable-content {
    gap: 1.5rem;
  }
}

.experience-details-section .section-title-anim-content {
  text-align: center;
}

/* Your Access Explained Section */
.access-explained-section {
  background: #000;
  padding: 5rem 0;
  color: white;
}

.access-explained-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: white;
  margin: 0;
  text-align: center;
}

.access-carousel-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
  /* Ensure proper spacing for last slide visibility */
  padding-right: 4rem;
}

.access-carousel-track {
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
  transition: transform 0.5s ease;
}

.access-carousel-track::-webkit-scrollbar {
  display: none;
}

.access-carousel-slide {
  flex: 0 0 300px;
  min-width: 300px;
  flex-shrink: 0;
  position: relative;
}
.access-carousel-slide .left-bar{
  width: 6px;
  height: 96px;
  background: #a8000b;
  position: absolute;
  top: 50%;
  left:0;
  transform: translate(0,-50%);
}

.access-slide-content {
  /* background: #2E2E2E; */
  padding: 2rem;
  /* border-left: 4px solid #DB0011; */
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
}
.access-carousel-slide .left-bar {
  display: none;
}
.access-carousel-track .access-carousel-slide:not(:last-child):after{
  content: "";
  background: #fff;
  width: 1px;
  height: 100%;
  right: 1px;
  position: absolute;
  top: 0;
}
.access-slide-content h3 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: white;
  margin: 0;
  font-family: 'UniversNextforHSBC-Regular', Arial, sans-serif;
}

.access-carousel-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.access-carousel-nav-btn {
  width: 48px;
  height: 48px;
  background: #2a2a2a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.access-carousel-nav-btn:hover {
  background: #3a3a3a;
}

.access-carousel-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.access-carousel-nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Design for Access Explained Section */
@media (max-width: 1200px) {
  .access-carousel-slide {
    flex: 0 0 280px;
    min-width: 280px;
  }
}

@media (max-width: 900px) {
  .access-carousel-slide {
    flex: 0 0 260px;
    min-width: 260px;
  }
  
  .access-slide-content {
    padding: 1.5rem;
    min-height: 100px;
  }
  
  .access-slide-content h3 {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .access-explained-section {
    padding: 2rem 0;
  }
  
  .access-explained-title {
    font-size: 1.5rem;
  }
  
  .access-carousel-slide {
    min-width: 260px;
  }
  
  .access-slide-content {
    padding: 1.25rem;
    min-height: 90px;
  }
  
  .access-slide-content h3 {
    font-size: 0.9rem;
  }
  
  .access-carousel-navigation {
    margin-top: 1.5rem;
  }
}

/* Keep Exploring Section */
.keep-exploring-section {
  background: #fff;
  padding: 5rem 0;
}

.blog-grid-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding-top: 2rem;
}

.blog-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}


/* .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
} */

.blog-card-image {
  width: 100%;
  aspect-ratio: 230.4 / 288;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  /* transform: scale(1.05); */
}

.blog-card-content {
  padding: 1.5rem 0;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.8rem 0;
  line-height: 1.4;
  font-family: 'UniversNextforHSBC-Medium', Arial, sans-serif;
}

.blog-card-text {
  font-size: 0.7rem;
  color: #717680;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
  font-family: 'UniversNextforHSBC-Regular', Arial, sans-serif;
}
.footer-link-group-links {
  list-style: none;
}
.footer-link-group-links a{
  min-height: 32px;
  display: flex;
  align-items: center;
}

/* Responsive Design for Keep Exploring */
@media (max-width: 1200px) {
  .blog-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .blog-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .keep-exploring-section {
    padding: 4rem 0;
  }
  
  .blog-card-title {
    font-size: 1rem;
  }
  
  .blog-card-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .blog-grid-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    margin-left: 1rem;
  }

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

  .blog-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    min-width: 280px;

  }
  
  .keep-exploring-section {
    padding: 3rem 0;
  }
  
  .blog-card-content {
    padding: 1.2rem 0;
  }

  /* Experience Categories Mobile Navigation */
  .experience-categories-section {
    padding: 0;
  }

  .experience-layout {
    flex-direction: column;
  }

  .experience-sidebar {
    width: 100%;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
    border-bottom: 1px solid #E5E5E5;
  }

  .experience-nav {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1rem;
  }

  .experience-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-category {
    flex-shrink: 0;
  }

  .nav-category-link {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: transparent;
    position: relative;
    white-space: nowrap;
  }

  .nav-category-link:hover {
    background: transparent;
    color: #333;
  }

  .nav-category-link.active {
    background: transparent;
    color: #000;
    font-weight: 600;
    border-left: none;
  }

  .nav-category-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
  }

  .experience-content {
    padding: 0.5rem;
    padding-top: 1rem;
  }

  .content-category {
    margin-bottom: 2rem;
    /* border-bottom: none; */
  }

  .category-header {
    margin-bottom: 1.5rem;
  }

  .category-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .category-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .experience-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  a .experience-card-title{
    font-size: 1rem;
    font-weight: 500;
  }
  a .experience-card-text{
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    max-height: 2.6em;
  }

  .experience-card {
    background: white;
    overflow: hidden;
  }

  .experience-card-image {
    aspect-ratio: 16/9;
  }

  .experience-card-content {
    padding: 1rem 0;
  }

  .experience-card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .experience-card-text {
    font-size: 0.85rem;
    color: #666;
  }

  /* Mobile Location Details Styling */
  .mobile-location-details {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0rem;
  }

  .mobile-location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #E9EAEB;
    padding: 0.6rem 1rem;
    flex: 1;
  }

  .mobile-location-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-location-icon svg {
    width: 100%;
    height: 100%;
  }

  .mobile-location-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
  }

  /* Hide desktop location CTA on mobile */
  .location-cta-section {
    display: none;
  }
  .carousel-container{
    padding: 0 1rem;
  }
}

/* Additional mobile improvements for better touch interactions */
@media(max-width: 1025px) {
  .section-title-anim-wrapper, .hero-banner .section-title-anim-wrapper {
    transition: all 0.3s ease;
    max-width: 85%;
  }
}
@media (max-width: 768px) {
  /* Improve touch targets */
  .flip-card,
  .slider__item,
  .carousel-slide,
  .explore-cta,
  .mobile-menu-toggle,
  .mobile-close-btn {
    min-height: 44px; /* Minimum touch target size */
    font-size: 1rem !important;
    /* padding: 0.7em 0.8em !important; */
    line-height: 1rem;
    
  }

  /* Better touch feedback */
  .flip-card:active,
  .slider__item:active,
  .carousel-slide:active,
  .explore-cta:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  /* Improve button accessibility */
  .mobile-menu-toggle,
  .mobile-close-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 54px;
    width: 56px;
    background: white;
  }
  .hero-text-section{
    /* background: #000; */
    padding: 2rem 0rem;
  }

  .hero-text-section .hero-text-bar{
    /* background: var(--primary-red); */
  }
  /* Better focus states for accessibility */
  /* .mobile-menu-toggle:focus,
  .mobile-close-btn:focus,
  .main-nav a:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
  } */



  /* Better spacing for mobile */
  .experiences-section,
  .why-section,
  .explore-section,
  .collapsible-slider-section {
    margin: 0;
    width: 100%;
  }

  /* Improve mobile navigation */
  .main-nav a {
    position: relative;
    overflow: hidden;
  }



  /* Better mobile loading states */
  .loading-square {
    animation: loading-pulse 1.5s ease-in-out infinite;
  }

  @keyframes loading-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  /* Improve mobile scroll behavior */
  .flip-cards-container,
  .why-cards,
  .slider {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Better mobile image handling */
  .flip-card-front,
  .slider__item,
  .explore-image {
    background-attachment: scroll; /* Prevent parallax issues on mobile */
  }

  /* Improve mobile form elements */
  .footer-newsletter input[type="email"],
  .footer-newsletter button {
    min-height: 44px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  

  /* Improve mobile animations */
  .flip-card-inner,
  .slider__item,
  .carousel-slide {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Better mobile spacing for content */
  .hero-text-content,
  .exp-title-cta,
  .why-title-group {
    padding: 0 0rem;
  }

  /* Improve mobile video handling */
  .hero-video {
    object-position: center center;
  }

  /* Better mobile footer layout */
  .footer-link-group {
    /* flex-direction: row; */
    /* flex-wrap: wrap; */
  }

  .footer-link-group a {
    min-height: 32px;
    display: flex;
    align-items: center;
  }
  .footer-link-group-links{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-link-group-links a{
    min-height: 40px;
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  /* Improve mobile carousel navigation */
  .carousel-nav {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 50%;
  }

  .carousel-nav:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  /* Better mobile section transitions */
  .section-title-anim-wrapper, .hero-banner .section-title-anim-wrapper {
    transition: all 0.3s ease;
  }

  /* Improve mobile explore CTA */
  .explore-more-cta-inner {
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }

  /* Better mobile typography hierarchy */
  .hero-text-content h1,
  .exp-title,
  .why-title,
  .explore-title {
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  /* Improve mobile content spacing */
  .flip-card-back {
    padding: 1rem !important;
  }

  .flip-card-back p {
    font-size: 0.9rem !important;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  /* Better mobile slider content */
  .slider__content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  }

  

  /* Better mobile footer newsletter */
  .footer-newsletter-row {
    overflow: hidden;
  }

  

  /* Improve mobile accessibility */
  .flip-card,
  .slider__item,
  .carousel-slide {
    cursor: pointer;
  }

  .flip-card:focus,
  .slider__item:focus,
  .carousel-slide:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
  }
}

/* Additional improvements for very small screens */
@media(max-width: 600px) {
    .section-title-anim-wrapper, .hero-banner .section-title-anim-wrapper {
         max-width: 100%;
    }
}
@media (max-width: 360px) {
  .hero-text-content h1 {
    font-size: 1.4rem !important;
  }

  .exp-title {
    font-size: 1.3rem !important;
  }

  .why-title {
    font-size: 1.4rem !important;
  }

  .explore-title {
    font-size: 1.4rem !important;
  }

  .flip-card {
    height: 140px !important;
  }

  .slider {
    height: 70px !important;
  }

  .carousel-slide {
    width: 220px !important;
  }

  .footer-payments {
    justify-content: center;
  }

  .footer-payments img {
    height: 18px !important;
  }

  /* Additional title improvements for very small screens */
  .experiences-header .exp-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  .experiences-header .exp-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  .experiences-header .section-title-anim-content {
    padding: 0 0rem;
  }

  .experiences-header .section-bar.left {
    left: 0.5rem !important;
  }

  .experiences-header .section-bar.right {
    right: 0.5rem !important;
  }
}

/* Medium mobile screens */
@media (min-width: 481px) and (max-width: 768px) {
  .experiences-header .exp-title {
    font-size: 2rem !important;
  }

  .experiences-header .exp-subtitle {
    font-size: 1.1rem !important;
  }

  .experiences-header .section-title-anim-content {
    padding: 0 0rem;
  }
}



/* Medium mobile screens */
@media (min-width: 481px) and (max-width: 768px) {
  .experiences-header .exp-title {
    font-size: 2rem !important;
  }

  .experiences-header .exp-subtitle {
    font-size: 1.1rem !important;
  }

  .experiences-header .section-title-anim-content {
    padding: 0 4rem;
  }

  /* Hero text section improvements for medium mobile screens */
  .hero-text-section .hero-text-content h1 {
    font-size: 2rem !important;
  }

  .hero-text-section .hero-text-content p {
    font-size: 1.1rem !important;
  }

  .hero-text-section .hero-text-anim-content {
    padding: 0 4rem;
  }
}

/* Banking Section Styles */
.banking-section {
  background: #fff;
  padding: 4rem 0;
  max-width: 1280px;
  margin: 0 auto;
}

/* Banking Tabs */
.banking-tabs {
  display: flex;
  justify-content: center;
  margin: 2rem 0 3rem 0;
  padding: 0 2rem;
}

.banking-tabs-container {
  position: relative;
  background: #f5f5f5;
  padding: 0.5rem;
  display: flex;
  gap: 0;
  width: 415px;
}

.banking-tab {
  color: #666;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  background: transparent;
  text-align: center;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
}

.banking-tab.active {
  color: #fff;
}

.banking-tab:hover {
  color: #333;
}

.banking-tab.active:hover {
  color: #fff;
}

/* Tab Slider Animation */
.banking-tab-slider {
  position: absolute;
  top: 0.5rem;
  left: 0.6rem;
  width: 200px;
  height: calc(100% - 1rem);
  background: #000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.banking-tabs-container[data-active-tab="non-banking"] .banking-tab-slider {
  transform: translateX(110%);
}

/* Banking Content */
.banking-content {
  display: none;
  padding: 0 2rem;
}

.banking-content.active {
  display: block;
}

/* Banking Layout */
.banking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.banking-layout.reverse {
  grid-template-columns: 1fr 1fr;
}

.banking-layout.reverse .banking-accordion {
  order: 2;
}

.banking-layout.reverse .banking-image {
  order: 1;
}

/* Banking Accordion */
.banking-accordion {
  /* padding: 2rem; */
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.banking-item {
  margin-bottom: 0.3rem;
  overflow: hidden;
  background: #F5F5F5;
}

.banking-question {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.banking-question:hover {
  background: #f8f8f8;
}

.accordion-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #8e9094;
}

.banking-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.banking-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #F5F5F5;
}

.banking-item.active .banking-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1rem;
}

.banking-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}

.banking-answer ul {
  color: #666;
  line-height: 1.6;
  margin: 0;
  padding-left: 0;
  font-size: 1rem;
  list-style: none;
}

.banking-answer li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  color: #666;
  font-weight: 400;
  font-size: 14px;
}

.banking-answer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--primary-red);
  border-radius: 0;
}

/* Banking Image */
.banking-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.image-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(128, 0, 128, 0.8);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
.p-1{
  padding: 1rem;
}
.justify-around{
  justify-content: space-around;
}

/* Customer type toggle and existing customer message (Continue Exploration) */
.customer-type-toggle {
  max-width: 920px;
  margin: 24px auto 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 16px;
}
.custom-choice {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  color: #535862;
  font-size: clamp(16px, 16px, 22px);
}
.custom-choice.emphasis .choice-text {
  font-weight: 400;
}
.custom-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.custom-choice .choice-box {
  width: 20px;
  height: 20px;
  border: 2px solid #8C8C97;
  background: transparent;
  box-shadow: inset 0 0 0 2px transparent;
  transition: all 0.2s ease;
  display: inline-block;
}
.custom-choice input[type="radio"]:checked + .choice-box {
  background: #000;
  box-shadow: inset 0 0 0 4px #fff;
  border: 1px solid #8C8C97;
}

.custom-choice:has(input[type="radio"]:focus-visible) .choice-box {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.custom-choice .choice-text {
  line-height: 1.3;
  font-size: 16px;
}
.existing-message {
  max-width: 920px;
  margin: 8px auto 32px;
  padding: 24px 16px;
  color: #ffffff;
}
.existing-message h3 {
  margin: 0 0 12px 0;
  font-size: clamp(22px, 18px, 32px);
  font-weight: 500;
  color: #000;
}
.existing-message p {
  margin: 0;
  font-size: clamp(16px, 16px, 18px);
  color: #000;
}
.existing-message a {
  color: #a8000b;
  text-decoration: underline;
  font-weight: 500;
}
/* Align the form with toggle */
.contact-form-container {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Page-specific tweaks */
.continue-exploration .section-title-anim-wrapper {
  margin-bottom: 1rem;
}
.customer-type-toggle-container{
  background-color: #F5F5F5;
  padding: 1rem;
  width: 560px;
  margin-top: 2rem;
}
.error-message{
  color: var(--primary-red);
}
.image-carousel-section .carousel-nav, 
.image-carousel-section .carousel-nav.carousel-prev, 
.image-carousel-section .carousel-nav.carousel-next{
  top: 10px;
  transform: none;
}
.banking-tabs-container .banking-tab {
  width: 220px;
  border: 4px solid #f5f4f4;
  padding: 12px 10px;
}
.banking-tabs-container {width: 440px;padding: 0 !important;}

.banking-tabs-container .banking-tab.active {
  border: 4px solid #000;
}

.banking-tab-slider {
    display: none;
}

.banking-tabs-container .banking-tab {
    border: none !important;
    color: rgba(0,0,0,0.6) !important;
    background: #fff;
    width: auto;
    padding-left: 0;
    padding-right: 0;
}

.banking-tabs-container {
    justify-content: center;
    background: transparent;
}

.banking-tabs-container .banking-tab.active:after {
    background: #db0011;
}

.banking-tabs-container .banking-tab:after {
    content: "";
    width: 100%;
    background: #ddd;
    height: 4px;
    position: absolute;
    bottom: 0px;
    left: 0;
}
div[data-ad-curtain="container"] {
    height: auto !important;
} 
@media screen and (max-width: 768px) and (min-width: 600px) {
    html {
        font-size: 10px;
    }    
    .flip-card, .slider__item, .carousel-slide, .explore-cta, .mobile-menu-toggle, .mobile-close-btn {
      height: 4rem;
      min-height: 4rem !important;
    }
}
/* Responsive Design */
@media (max-width: 900px) {
  .banking-section {
    padding: 3rem 0;
  }
  
  .banking-tabs {
    margin: 1.5rem 0 2rem 0;
  }
  
  .banking-tabs-container {
    padding: 0.4rem;
    width: 380px;
  }
  
  .banking-tab {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    width: 180px;
  }
  
  .banking-tab-slider {
    top: 0.4rem;
    left: 0.4rem;
    width: 180px;
    height: calc(100% - 0.8rem);
  }
  
  .banking-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .banking-layout.reverse {
    grid-template-columns: 1fr;
  }
  
  .banking-layout.reverse .banking-accordion,
  .banking-layout.reverse .banking-image {
    order: unset;
  }
  
  .banking-accordion {
    padding: 1.5rem;
  }
  
  .banking-image {
    height: 300px;
  }
  
  .banking-question {
    padding: 1.2rem;
    font-size: 1rem;
  }
  
  .banking-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .banking-item.active .banking-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
    max-height: 500px;
  }
}

@media (max-width: 600px) {
  .banking-section {
    padding: 2rem 0;
  }
  
  .banking-tabs {
    margin: 1rem 0 1.5rem 0;
  }
  
  .banking-tabs-container {
    flex-direction: row;
    padding: 0.3rem;
    gap: 0.2rem;
    width: 100%;
  }
  
  .banking-tab {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    text-align: center;
    width: auto;
  }
  
  .banking-tab-slider {
    display: none;
  }
  
  .banking-content {
    padding: 0 1rem;
  }
  
  .banking-accordion {
    padding: 0rem;
  }
  
  .banking-image {
    height: 250px;
  }
  
  .banking-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .banking-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .banking-item.active .banking-answer {
    padding: 0 1rem 1rem 1rem;
    max-height: 500px;
  }
  
  .image-overlay {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .logo svg{
    width: 170px;
    height: auto;
  }
  .logo {
    padding-top: 5px;
  }
  .banking-tab.active {
    background: #000;
  }
  .banking-tab {
    font-size: 14px;
  }

  /* Reverse column order for mobile - image on top, accordion below */
  .banking-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .banking-layout .banking-image {
    order: 1;
    grid-row: 1;
  }

  .banking-layout .banking-accordion {
    order: 2;
    grid-row: 2;
  }

  /* Ensure reverse layout also follows mobile order */
  .banking-layout.reverse .banking-image {
    order: 1;
    grid-row: 1;
  }

  .banking-layout.reverse .banking-accordion {
    order: 2;
    grid-row: 2;
  }
  .banking-accordion .explore-cta-wrapper{
    width: 100%;
    margin-top: 1rem;
  }
  .banking-accordion .explore-cta-wrapper .explore-cta{
    width: 100%;
    justify-content: center;
  }
  .explore-more-cta-wrapper.cta-in-view{
    display: none;
  }
  .hero-banner {   
    height: calc(100vh - 280px);
  }
  .banking-section.page{
    height: auto;
  }
  .why-section.interest{
    margin-bottom: 1rem;
  }
  .banking-section.page .section-title-anim-wrapper{
    margin-bottom: 2rem;
  }
  .banking-section.page .section-title-anim-wrapper{
    margin: 0 auto;
    margin-bottom: 2rem;
  }
  .banking-section.page.non-banking .section-title-anim-wrapper{
    margin-bottom: 2rem;
  }
  .main-header{
    z-index: auto;
  }
  .why-section.banking .section-title-anim-wrapper.in-view .section-bar.left {
    left: 35px;
    top: 22px;
  }
  .why-section.banking .section-title-anim-wrapper.in-view .section-bar.right {
    right: 35px;
    top: 22px;
  }
  .hero-banner.about .section-title-anim-wrapper.in-view .section-bar.left{
    left: 40px;
    top: 3px;
  }
  .hero-banner.about .section-title-anim-wrapper.in-view .section-bar.right{
    right: 40px;
    top: 3px;
  }
  .about-us-page .why-section .section-title-anim-wrapper.in-view .section-bar.left {
    left: 25px;
    top: 35px;
  }
  .about-us-page .why-section.enquiry .section-title-anim-wrapper.in-view .section-bar.right {
    right: 25px;
    top: 0px;
  }
  .about-us-page .why-section.enquiry .section-title-anim-wrapper.in-view .section-bar.left {
    left: 25px;
    top: 0px;
  }
  .about-us-page .why-section .section-title-anim-wrapper.in-view .section-bar.right {
    right: 25px;
    top: 35px;
  }
  .how-it-works-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 70px;
    top: 3px;
  }
  .how-it-works-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 70px;
    top: 3px;
  }
  .how-it-works-section .section-title-anim-wrapper{
    margin-bottom: 2.5rem;
  }
  .circle-of-excellence-header.section-title-anim-wrapper.in-view .section-bar.left {
    left: 30px;
    top: 5px;
  }
  .circle-of-excellence-header.section-title-anim-wrapper.in-view .section-bar.right {
    right: 30px;
    top: 5px;
  }
  .circle-of-excellence-title{
    font-size: 1.6rem;
  }
  .keep-exploring-section .explore-title{
    width: 55%;
    font-weight: 500;
  }
  .keep-exploring-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 70px;
    top: 20px;
  }
  .keep-exploring-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 70px;
    top: 20px;
  }
  .why-section.about{
    background: #FAFAFA;
  }
  .why-section.enquiry{
    margin-bottom: 0rem;
  }
  .main-footer{
    border-top: none;
  }
  .experiences-page .why-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 30px;
    top: 35px;
  }
  .experiences-page .why-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 30px;
    top: 35px;
  }
  .contact-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 30px;
    top: 15px;
  }
  .contact-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 30px;
    top: 15px;
  }
  .access-carousel-navigation{
    display: none;
  }
  .access-carousel-container{
    padding: 0 1rem;
  }
  .access-carousel-track {
    gap: 0.5rem;
    padding: 0rem 0;
  }
  .blog-title-container {
    padding: 0 1rem;
  }
  .breadcrumb{
    display: flex;
    justify-content: center;
  }
  .faq-tabs::after {
    display: none;
  }
  .faq-question:hover {
    background: none;
  }
  .experiences-section .section-title-anim-wrapper.in-view .section-bar {
    top: 15px;
  }
  .banking-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 55px;
    top: 15px;
  }
  .banking-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 55px;
    top: 15px;
  }
  .faqs .privacy-title-bar {
    width: 4px;
    height: 32px;
}
.contact-section{
  min-height: 50vh;
  justify-content: flex-start;
  gap: 2rem;
}
.customer-type-toggle{
  width: 100%;
  margin: 24px auto 0px;
}
.contact-form-container{
  background: none;
  padding: 2.5rem 1rem;
}
.contact-form-row{
  flex-direction: column;
}
.input-box .contact-checkbox-label{
  color: #fff;
  font-weight: 500;
}
.contact-terms-text{
  color: #D5D7DA;
}
.eligibility-criteria h3{
  color: #fff;
}
.eligibility-criteria p, .eligibility-criteria ul{
  color: #E9EAEB;
}
.customer-type-toggle-container{
  background: none;
  width: 100%;
  margin-top: 0rem;
}
.custom-choice{
  color: #fff;
}
.custom-choice .choice-box {
  border: 2px solid #ffffff;
}
.custom-choice input[type="radio"]:checked + .choice-box{
  border: none;
}
.existing-message h3, .existing-message p{
  color: #fff;
}
.existing-message{
  padding-left: 0rem;
}
.carousel-slide.featured-experience-card .slider__content{
  position: absolute;
  bottom: 0;
  left: 0px;
}
.carousel-slide.featured-experience-card .exp-cta{
  width: 48px;
  height: 48px;
}
.carousel-slide.featured-experience-card .exp-cta svg{
  width: 20px;
  height: 20px;
}
.carousel-slide.featured-experience-card .slider__title{
  font-size: 16px;
  font-weight: 500;
}
.flip-card:hover .flip-card-inner {
  transform: none;
}
.footer-link-group a::before,
.footer-link-group a::after{
  opacity: 0!important;
}

/* Error message styling */
.error-message {
  color: var(--primary-red);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  min-height: 1.2rem;
  display: none;
}

.error-message.show {
  display: block;
}

/* Error state styling for inputs */
.contact-form input.error,
.contact-form select.error {
  border-color: var(--primary-red);
}

.contact-phone-row.error {
  border-color: var(--primary-red);
}

/* Error state styling for phone row */
.contact-phone-row.error input,
.contact-phone-row.error select {
  border: none;
}

/* Focus state for error inputs */
.contact-form input.error:focus,
.contact-form select.error:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 2px rgba(219, 31, 38, 0.1);
}

.contact-phone-row.error:focus-within {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 2px rgba(219, 31, 38, 0.1);
}

/* Banking Page Accordion Styles - Separate from index.html to avoid conflicts */
.banking-page-accordion {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.banking-page-item {
  margin-bottom: 0.3rem;
  overflow: hidden;
  background: #F5F5F5;
}

.banking-page-question {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.banking-page-question:hover {
  background: #f8f8f8;
}

.banking-page-item .accordion-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #8e9094;
}

.banking-page-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.banking-page-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #F5F5F5;
}

.banking-page-item.active .banking-page-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1rem;
}

.banking-page-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}

.banking-page-answer ul {
  color: #666;
  line-height: 1.6;
  margin: 0;
  padding-left: 0;
  font-size: 1rem;
  list-style: none;
}

.banking-page-answer li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.banking-page-answer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--primary-red);
  border-radius: 0;
}

/* Banking Page Layout Styles */
.banking-section.page .banking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.banking-section.page .banking-layout .banking-page-accordion {
  order: 1;
}

.banking-section.page .banking-layout .banking-image {
  order: 2;
}

.banking-section.page .banking-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Mobile Responsiveness for Banking Page */
@media (max-width: 768px) {
  .banking-section.page .banking-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .banking-section.page .banking-layout .banking-page-accordion {
    order: 2;
  }
  
  .banking-section.page .banking-layout .banking-image {
    order: 1;
  }
}
.experience-cta{
  right: 0;
  bottom: 10px;
}
.experience-card .experience-cta {
  width: 35px;
  height: 35px;
}
.experience-card .experience-cta svg{
  width: 12px;
  height: 12px;
}
.experience-card .red-bar.right-bar {
  opacity: 1;
  right: 0;
  transform: translate(0, -50%);
  width: 4px;
  height: 32px;
}
.experience-card .red-bar.left-bar {
  opacity: 1;
  left: 0;
  transform: translate(0, -50%);
  width: 4px;
  height: 32px;
}
.experience-card .experience-cta {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}
.experience-card a .experience-card-text {
  
  width: 70%;
}


}

@media (max-width: 400px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-item {
    width: calc(100% / 2);
  }
  .hero-text-wrapper.in-view .hero-text-bar.left {
    left: 30px;
  }
  .hero-text-wrapper.in-view .hero-text-bar.right {
    right: 30px;
  }
  .why-section.banking .section-title-anim-wrapper.in-view .section-bar.left {
    left: 20px;
    top: 22px;
  }
  .why-section.banking .section-title-anim-wrapper.in-view .section-bar.right {
    right: 20px;
    top: 22px;
  }
  .section-title-anim-wrapper.in-view .section-bar.left {
    left: 30px;
  }
  .section-title-anim-wrapper.in-view .section-bar.left, .why-section .section-title-anim-wrapper.in-view .section-bar.left {
    left: 40px;
  }
  .section-title-anim-wrapper.in-view .section-bar.right, .why-section .section-title-anim-wrapper.in-view .section-bar.right {
    right: 40px;
  }
  .explore-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 15px;
    top: 3px;
  }
  .explore-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 15px;
    top: 3px;
  }
  .experiences-header .exp-title{
    width: 78%;
  }
  .banking-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 45px;
    top: 10px;
  }
  .banking-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 45px;
    top: 10px;
  }
  .non-banking .section-title-anim-wrapper.in-view .section-bar.left{
    left: 35px;
  }
  .non-banking .section-title-anim-wrapper.in-view .section-bar.right{
    right: 35px;
  }
  .hero-banner.about .section-title-anim-wrapper.in-view .section-bar.left{
    left: 15px;
    top: 3px;
  }
  .hero-banner.about .section-title-anim-wrapper.in-view .section-bar.right{
    right: 15px;
    top: 3px;
  }
  .about-us-page .why-section .section-title-anim-wrapper.in-view .section-bar.left {
    left: 20px;
    top: 35px;
  }
  .about-us-page .why-section .section-title-anim-wrapper.in-view .section-bar.right {
    right: 20px;
    top: 35px;
  }
  .how-it-works-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 60px;
    top: 3px;
  }
  .how-it-works-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 60px;
    top: 3px;
  }
  .circle-of-excellence-title{
    font-size: 1.5rem;
  }
  .circle-of-excellence-header.section-title-anim-wrapper.in-view .section-bar.left {
    left: 25px;
    top: 2px;
  }
  .circle-of-excellence-header.section-title-anim-wrapper.in-view .section-bar.right {
    right: 25px;
    top: 2px;
  }
  .experiences-page .why-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 20px;
    top: 35px;
  }
  .experiences-page .why-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 20px;
    top: 35px;
  }
  .keep-exploring-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 60px;
    top: 20px;
  }
  .keep-exploring-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 60px;
    top: 20px;
  }
  .flex{
    display: flex;
  }
  .access-explained-section .section-title-anim-wrapper.in-view .section-bar.left{
    left: 40px;
  }
  .access-explained-section .section-title-anim-wrapper.in-view .section-bar.right{
    right: 40px; 
  }
  .access-carousel-container{
    padding: 0 1rem;
  }
  .access-carousel-track {
    gap: 0.5rem;
    padding: 0rem 0;
  }
  .privacy-title-wrapper.in-view .privacy-title-bar.left {
    left: 40px;
    top: 40px;
    transform: none;
  }

  .privacy-title-wrapper.in-view .privacy-title-bar.right {
    right: 40px;
    top: 40px;
    transform: none;
  }
  .privacy-title-wrapper.terms .privacy-title-bar.left, .privacy-title-wrapper.terms .privacy-title-bar.right{
    top: 25px;
  }
  .experiences-section .section-title-anim-wrapper.in-view .section-bar {
    top: 15px;
  }
  .faqs .privacy-title-bar {
    width: 4px;
    height: 32px;
  }
}


@media (min-width: 992px) {
  .customer-type-toggle {
    gap: 24px;
  }

}

@media (max-width: 767px) {
  .customer-type-toggle {
    padding-left: 0px;
    padding-right: 20px;
  }
  .custom-choice {
    font-size: 18px;
  }

  /* Mobile overlay on contact backgrounds */
  .contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), #1a0608 url('../images/contact-bg.png') center/cover;
  }
  .contact-section.contact-us {
    background: linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), #1a0608 url('../images/contact-us-bg.png') center/cover;
  }
  .hero-banner.about {
      height: 250px;
  }
  .section-title-anim-wrapper.hero-header.in-view {
        margin-bottom: 0;
    }
    .mobile-location-item {
        flex: 0;
    }
    span.datetime {
        font-size: 11px !important;
        padding: 4px 6px 6px !important;
    }
    .mobile-location-details {
        flex-wrap: wrap;
    }
    .carousel-slide:hover img, .carousel-slide {
        transform: none !important;
    }
    .image-carousel-section .carousel-nav, .image-carousel-section .carousel-nav.carousel-prev, .image-carousel-section .carousel-nav.carousel-next {
    top: 10px;
    transform: none;
    display: block !important;
    border-radius: 0px;
    }
    .image-carousel-section .flex.flex-row.justify-around.p-1 {
        justify-content: left;
    }
    .main-header {
      height: auto;
      padding: 18px;
    }
    .main-header .logo{
      padding-top: 0;
    }
}
section.circle-of-excellence-section {
    display: none;
}
.image-carousel-section a.explore-cta {
    text-transform: capitalize;
}
.hero-banner.about p.hero-desc, .why-section.interest p.why-desc {
  color: #fff !important;
}
  .home .banking-answer p, .home .banking-answer li{
    color: #fff !important;
  }

  @media(max-width: 600px) {
    .collapsible-slider-section .index-carousel .carousel-slide {
      min-width: 320px;
      flex-shrink: 0;
      aspect-ratio: unset !important;
    }
    .banking-content .how-it-works-steps {
      display: block;
      gap: 10px;
    }

    .banking-content .how-it-works-step {
      margin-bottom: 10px;
    }
    .why-cards .why-card:nth-child(2):after {
      display: none;
    }
    .why-cards .why-card:not(:last-child):after {
      right: 0;
    }
    .how-it-works-steps .how-it-works-step:not(:last-child):after {
      width: 100%;
      height: 1px;
      top: auto;
      bottom: -5px;
      display: block !important;
    }
  }
  
.section-bar.right, .section-bar.left, .red-bar,.hero-text-bar, .footer-link-group a::before, .footer-link-group a::after, .privacy-title-bar {
  display: none !important;
  visibility: hidden !important;
}
    .main-nav a.active::before,     .main-nav a.active::after {
      display: none !important
    }
    
@media(min-width: 600px) {
  .main-nav a.active::after {
    content: "";
    background: var(--primary-red);
    width: 100%;
    height: 1.5px;
    position: absolute;
    bottom: -5px;
    display: block !important;
    left: 0;
  }
  .main-nav a {
    position: relative;
  }
}