.cta-buttons {
    display: flex;
    gap: 20px; /* spacing between buttons */
    margin: 20px 0;
  }

  .cta-buttons a {
    display: inline-block;
    background-color: #d11a2a;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .gq-fonticon-primary{
    color: #ba0007;
  }

  .cta-buttons a:hover {
    background-color: #a81322;
    transform: scale(1.05);
  }


  
  /* === Section Wrapper === */
  .gq-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .gq-section-white {
    background-color: #ffffff;
  }
  
  .gq-section-light {
    background-color: #f8f9fa;
  }
  
  /* === Typography === */
  .gq-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
  }
  
  .gq-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  /* === List Styling === */
  .gq-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .gq-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #333;
  }
  
  .gq-list li::before {

        content: "\f061"; /* Unicode for Font Awesome right arrow (fas fa-arrow-right) */
    position: absolute;
    left: 0px;
    color: #ba0007;
    font-weight: bold;
    font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is loaded */
    font-style: normal;
  }
  
  /* === Image Styling === */
  .gq-img {
    width: 100%;
    border-radius: 0.5rem;
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease;
  }
  
  .gq-img:hover {
    transform: scale(1.02);
  }
  
  /* === Buttons === */
  .gq-btn {
    display: inline-block;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .gq-btn-primary {
    background-color: #ba0007;
    color: #fff;
    border: 2px solid #a30006;
  }
  
  .gq-btn-primary:hover {
    background-color: #a30006;
    border-color: #a30006;
	  color: #FFF;
  }
  
  .gq-btn-outline {
    background-color: transparent;
    color: #0071c5;
    border: 2px solid #0071c5;
  }
  
  .gq-btn-outline:hover {
    background-color: #0071c5;
    color: #fff;
  }
  
  /* === Responsive Tweaks === */
  @media (max-width: 768px) {
    .gq-title {
      font-size: 1.5rem;
    }
  
    .gq-desc,
    .gq-list li {
      font-size: 0.95rem;
    }
  
    .gq-btn {
      width: 100%;
      text-align: center;
      margin-top: 1rem;
    }
  
    /* .row {
      flex-direction: column;
    } */
  }
/* ---------------faq------------------   */

/* === FAQ Section Styling === */
.gq-faq-section {
    background-color: #f8f9fa;
  }
  .gq-faq-section-light {
    background-color: #ffffff;
  }
  
  .gq-faq-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
  }
  
  /* Image styling */
  .gq-faq-img {
    border-radius: 0.5rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  }
  
  /* Card styling */
  .gq-card {
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .gq-card .card-header {
    background-color: #fff;
    padding: 0;
  }

  .gq-faq-section-light .gq-card .card-header {
    background-color: #f8f9fa;
    padding: 0;
  }
  
  /* Toggle button */
  .gq-faq-toggle {
    width: 100%;
    text-align: left;
        padding: 5px 15px 15px 15px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: block;
    background-color: transparent;
    border: none;
    outline: none !important;
    box-shadow: none !important;
  }
.card-header button.btn.btn-link {
    font-size: 18px;
    color: #1B1D25;
    font-weight: 700;
    transition: .5s;
}
  
  /* Red plus/minus icon */
  .gq-faq-toggle::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    top: 55%;
    transform: translateY(-50%);
    color: #dc3545; /* Bootstrap red */
    transition: transform 0.2s;
  }
  
  .gq-faq-toggle[aria-expanded="true"]::after {
    content: "–";
    color: #dc3545;
  }
  
  /* Remove focus outline */
  .gq-faq-toggle:focus {
    outline: none;
    box-shadow: none;
  }
  .gq-faq-toggle:hover{text-decoration: none!important;}
  /* Collapse body */
  .gq-card .card-body {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    color: #555;
  }

  


  /* -------------cta--------- */

  /* === CTA Section === */
.gq-cta-section {
    background-color: #003366;
    color: #fff;
    padding: 4rem 1rem;
  }
  
  .gq-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
  }
  
  .gq-cta-sub {
    font-size: 1.1rem;
    color: #dbe8f5;
    line-height: 1.6;
  }
  
  /* === Buttons === */
  .gq-cta-buttons .gq-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
/*
  .gq-btn-primary {
     background-color: #ba0007;
    color: #fff;
    border: 2px solid #a30006;
  }
  
  .gq-btn-primary:hover {
    background-color: #b52b38;
    border-color: #b52b38;
    color: #fff;
  }
*/
  
  .gq-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
  }
  
  .gq-btn-outline:hover {
    background-color: #ffffff;
    color: #003366;
  }


 
  
  .gq-btn-outline-red {
    background-color: #ffffff;
    border-color: #b52b38;
    color: #b52b38;
    border: 1px solid #b52b38;
  }
  
  .gq-btn-outline-red:hover {
    background-color: #b52b38;
    border-color: #b52b38;
    color: #fff;
    border: 1px solid #b52b38;;
  }
  
  
  
  .gq-faq-toggle {
    width: 100%;
    text-align: left;
    padding: 15px 15px 10px 15px !important;
    font-weight: 600 !important;
    color: #002232 !important;
    font-size: 17px !important;
    position: relative;
    background-color: transparent;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none;
  }

  
  .gq-proof-section {
    background-color: #f8f9fa;
  }
  
  .gq-proof-item {
    padding: 1.5rem 1rem;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .gq-proof-number {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.5rem;
  }
  
  .gq-proof-label {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
  }
  




  /* TWAI Travel Retailing Solutions CSS */

/* Section Styling with Top/Bottom Gaps */
.twai-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;

}

.twai-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;  
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 1;
}

.twai-section .container {
  position: relative;
  z-index: 2;
}

/* Header Styling */
.twai-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ba0007;
  margin-bottom: .5rem;
}

.twai-header .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1.5rem;
}

.twai-header p {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Force 3 Columns Layout */
@media (min-width: 992px) {
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

/* Gap Spacing */
.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.g-4 > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* Card Styling */
.twai-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 35, 126, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}




.twai-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ba0007 0%, #ab3941 50%, #c05c5c 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;

}

.twai-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(26, 35, 126, 0.2);
  
}

.twai-card:hover::before {
  transform: scaleX(1);
}

.twai-card h5 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: .5rem;
  line-height: 1.3;
}

.twai-card > p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.5;
}

.twai-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.twai-card li {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.twai-card li:last-child {
  margin-bottom: 0;
}

.twai-card li i {
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Ensure Equal Heights */
.h-100 {
  height: 100% !important;
}

/* Bootstrap Utility Classes */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.text-center {
  text-align: center !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.text-success {
  color: #ba0007 !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .twai-header h1 {
    font-size: 2.5rem;
  }

  .twai-header .lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 991.98px) {
  .twai-section {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .twai-header h1 {
    font-size: 2.2rem;
  }

  .twai-header .lead {
    font-size: 1.1rem;
  }

  .twai-card {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .twai-section {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .twai-header h1 {
    font-size: 1.9rem;
  }

  .twai-header .lead {
    font-size: 1rem;
  }

  .twai-header p {
    font-size: 1rem;
  }

  .twai-card {
    padding: 1.25rem;
  }

  .twai-card h5 {
    font-size: 1.3rem;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 575.98px) {
  .twai-section {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .twai-header h1 {
    font-size: 1.7rem;
  }

  .twai-card {
    padding: 1rem;
  }

  .twai-card h5 {
    font-size: 1.2rem;
  }

  .twai-card li {
    font-size: 0.9rem;
  }

  .g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

/* Animation Enhancement */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.twai-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Staggered Animation */
.col:nth-child(1) .twai-card { animation-delay: 0.1s; }
.col:nth-child(2) .twai-card { animation-delay: 0.2s; }
.col:nth-child(3) .twai-card { animation-delay: 0.3s; }
.col:nth-child(4) .twai-card { animation-delay: 0.4s; }
.col:nth-child(5) .twai-card { animation-delay: 0.5s; } 
.col:nth-child(6) .twai-card { animation-delay: 0.6s; }
.col:nth-child(7) .twai-card { animation-delay: 0.7s; }
.col:nth-child(8) .twai-card { animation-delay: 0.8s; }

/* Accessibility */
.twai-card:focus {
  outline: 2px solid #1a237e;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .twai-card {
    animation: none;
    transition: none;
  }

  .twai-card:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .twai-section {
    background: white;
    margin: 0;
    padding: 20px 0;
  }

  .twai-card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }

  .twai-card::before {
    display: none;
  }
}


.loyalty-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f9fafc;
}

.loyalty-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.loyalty-section .subtitle {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 20px;
}

.loyalty-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.loyalty-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.loyalty-benefits li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 0.98rem;
}

.loyalty-section img {
  max-width: 100%;
  border-radius: 12px;
}

/* Data Table as Div */
.loyalty-data {
  margin-top: 10px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}

.data-row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #dee2e6;
}

.data-row:first-child {
  border-top: none;
}

.data-col {
  flex: 1 1 33.33%;
  padding: 10px 15px;
  font-size: 0.95rem;
  border-left: 1px solid #dee2e6;
}

.data-col:first-child {
  border-left: none;
}

.data-row.header {
  background: #ba0007;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .data-col {
    flex: 1 1 100%;
    border-left: none;
    border-top: 1px solid #dee2e6;
  }

  .data-row.header {
    display: none;
  }

  .data-row {
    border-top: none;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 10px;
    background: #fff;
  }

  .data-row .data-col::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #3949ab;
  }
}




/* Metric Box Styling */
.gq-metric-box {
  padding: 20px 15px;
 
  border-radius: 8px;
  border: 1px solid #ba0007;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.gq-metric-box:hover {
  transform: translateY(-5px);
}

.gq-metric-value {
  font-size: 2rem;
  font-weight: bold;
  color: #ba0007;
  margin-bottom: 10px;
}

.gq-metric-label {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}


@media (max-width: 767px) {
  .gq-title {
    font-size: 1.5rem;
  }

  .gq-metric-value {
    font-size: 1.5rem;
  }

  .gq-metric-box {
    padding: 15px;
  }
}


.custom-title-block {
  text-align: center;
  position: relative;
  margin: 60px auto 40px;
}

.custom-title-block::before,
.custom-title-block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ba0007;
}

.custom-title-block::before {
  top: -20px;
  width: 160px;
  height: 2px;
  border-radius: 2px;
}

.custom-title-block::after {
  top: -14px;
  width: 80px;
  height: 2px;
  border-radius: 1px;
  background-color: #ba0007; /* a slightly lighter red for contrast */
}

.custom-title-block h2 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.fintech-benefits-section i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
    background-color: #ba0007;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #ffff !important;
}

.fintech-benefits-section .icon-hover:hover i {
  transform: scale(1.1);

}

.fintech-benefits-section .rounded {
  transition: box-shadow 0.3s ease;
   border: 1px solid #e5e5e5;
	background: #FFF !important;
}

.fintech-benefits-section .rounded:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);

    border: 1px solid #e5e5e5;
}
