        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1e40af;
            --primary-blue-dark: #1e3a8a;
            --secondary-blue: #3b82f6;
            --accent-purple: #8b5cf6;
            --accent-teal: #06b6d4;
            --text-gray: #475569;
            --bg-light: #f8fafc;
            --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            --bg-light: #f8fafc;
            --bg-light-blue: #e6f0fa;
            --bg-light-gray: #f1f1f1;
            --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            --gradient-dark: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
            --gradient-cta: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-cta2: linear-gradient(135deg, #4f46e5 0%, #0066ff 50%, #06b6d4 100%);
            --gradient-light: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            --text-dark: #1f2937;
            --text-light: #ffffff;
            --accent: #3b82f6;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 25%, #dbeafe 50%, #e0f2fe 75%, #f0f9ff 100%);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 1.5s ease-out forwards;
        }


        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 7rem 4rem;
            overflow: hidden;
            color: #fff;
        }

        /* SLIDES */
        .hero-slideshow {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .hero-slideshow .slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;                 /* hidden by default */
            transform: scale(1.2);      /* start zoomed in */
            will-change: transform;
        }

        /* The active slide: instantly visible, zooms out while shown */
        .hero-slideshow .slide.is-active {
            opacity: 1;                 /* no fade; instant show */
            animation: zoomOut 5s linear both;
        }

        @keyframes zoomOut {
            from { transform: scale(1.2); }
            to   { transform: scale(1.0); }
        }

        /* content */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            text-align: left;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 3vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #fff;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--gradient-cta2);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
        }


        /* Overview Section */
        .overview {
            max-width: 1000px;
            margin: 6rem auto;
            padding: 0 2rem;
            text-align: left;
        }

        .overview-content {
            font-size: 1.25rem;
            line-height: 1.8;
            color: #222;
            position: relative;
        }

        .overview p {
        font-size: 1.25rem;
        color: #333;
        font-weight: 400;
        margin: 0;
        padding-left: 2.5rem; /* pushes text neatly away from quote */
        position: relative;
        }

        .quote-mark {
        font-size: 6rem;
        font-family: "Playfair Display", Georgia, serif;
        color: var(--accent, #ff6600);
        font-weight: 700;
        position: absolute;
        top: -25px;   /* lifts it slightly above the paragraph */
        left: -20px;
        line-height: 0.8;
        }



    /* Sticky Navigation */
        .industry-sticky-nav {
            position: sticky;
            top: 80px;
            z-index: 999;
            background-color: #ffffff;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            /* border-bottom: 1px solid rgba(226, 232, 240, 0.8); */
            transition: background 0.3s ease;
            box-shadow: none;
        }
        .industry-sticky-nav .container {
            background-color: #ffffff;
        }

        .industry-sticky-nav.visible {
            transform: translateY(0);
        }

        .industry-sticky-nav.scrolled {
            background-color: #ffffff;
            box-shadow: var(--shadow-md);
        }

        .industry-nav-content {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 1rem 0;
        }

        .industry-nav-link {
            color: var(--text-gray);
            font-weight: 500;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .industry-nav-link.active {
            color: var(--primary-blue);
            background: rgba(59, 130, 246, 0.2);
            font-weight: 600;
        }
        
        .industry-nav-link:hover {
            color: var(--primary-blue);
            background: rgba(59, 130, 246, 0.1);
        }
        
        


        /* Section Styling */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-blue), var(--accent-purple));
            border-radius: 2px;
        }

       
/* Digital Banking */

        .angled-overview-section {
            position: relative;
            width: 100%;
            min-height: 500px;
            background: url('../../img/industries/banking/corporate-glass-office-sky.png') no-repeat center center;
            background-size: cover;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(6px);
        }

        .angled-overview-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55); /* semi-transparent black overlay */
            z-index: 1;
        }

        .angled-content {
            position: relative; /* ensures it's above the overlay */
            margin-right: auto;
            max-width: 60%;
            z-index: 2;
            margin-left: 2rem;
            padding: 2rem 3rem;
            color: #fff; /* make text white for better contrast */
        }


        .angled-content h2 {
        font-size: 3rem;
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        margin-top: 24px;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #1f1f1f;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
        text-align: center;
        }

        .bold {
        color: #000;
        }

        .highlight {
        color: #fff;
        }

        .angled-content p {
        font-size: 1.1rem;
        color: #f0f9ff;
        line-height: 1.85;
        text-align: center;
      margin-left: 4rem;
        max-width: 700px;
        font-family: 'Inter', sans-serif;
        }


/* Key benefits */
.key-benefits {
    padding-top: 3rem;
    background: var(--bg-light-blue);
}
.digital-heading {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Poppins', 'Arial', sans-serif;
  color: #1a1a1a;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
  margin: 50px 0;
  letter-spacing: 2.5px;
  margin-top: 0%;
  padding-top: 1rem;
  padding-bottom: 0%;
}

.digital-heading.revealed {
  opacity: 1;
  transform: translateY(0);
}

.banking-metrics {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 2rem 2rem;
  font-family: "Segoe UI", sans-serif;
  background: var(--bg-light-blue);
}


/* Left Card */
.metrics-card {
  position: relative;
  flex: 1;
  padding: 0rem 2rem;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.08); */
  overflow: hidden;
}

.metrics-card p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #3f3c3c;
  text-align: justify;
  padding-top: 0rem;
}

/* Subtle background graphic */
.card-bg {
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 50%;
  background: radial-gradient(circle at top left, rgba(59,130,246,0.08), transparent 70%);
  z-index: 0;
}
.metrics-card * {
  position: relative;
  z-index: 1;
}

/* Right Stats */
.metrics-stats {
  flex: 2;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.chart-container {
  position: relative;
  width: 90%;
  height: 200px; /* adjust as per your design */
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #111827;
}

.stat {
  flex: 1;
  text-align: center;
}
.stat h5 {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', 'Arial', sans-serif;
}

canvas {
  width: 100% !important;
  height: 150px !important;
}

/* additional benefits */

.digital-banking-benefits {
  background: var(--bg-light-blue);
  padding: 2rem 1rem;
}

.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 18%;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  color: #121315; /* default icon color */
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.benefit-card:hover .benefit-icon {
  stroke: #527ef9;  /* blue on hover */
  transform: scale(1.1); /* optional pop effect */
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: #121315;
  margin-bottom: 0.5rem;
  position: relative;
}

.benefit-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #527ef9;
  margin: 6px auto 0;
  border-radius: 2px;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #3f3c3c;
  margin-top: 0.5rem;
  text-align: justify;
}


.digital-heading {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin: 40px 0;
  }

/* Banking Services */

.banking-services {
  width: 100%;
  margin: 0;
  padding: 6rem;
  font-family: 'Montserrat', sans-serif;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
  
}

.services-header h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #527ef9; /* blue accent */
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.services-header h2 {
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #121315;
  position: relative;
  display: inline-block;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.1); /* subtle row separator */
}

.service-row:last-child {
  border-bottom: none;
}

.service-image {
  flex: 1 1 50%;
  min-width: 300px;
  overflow: hidden;
}

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

.service-content {
  flex: 1 1 50%;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Blue line under h3 */
.service-content h3 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #121315;
  position: relative;
}

.service-content h3::after {
  content: "";
  display: block;
  width: 6rem; /* adjust length */
  height: 4px;
  background-color: #527ef9; /* blue line */
  margin: 18px 0 16px 0;
  border-radius: 2px;
}
.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Button container for same line */
.service-buttons {
  display: flex;
  flex-wrap: wrap; /* wraps on small screens */
}

/* Explore button styling */
.explore-btn {
  display: inline-block;
  background-color: #527ef9;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #fff;
  color: #527ef9;
  border-color: #527ef9;
}

/* Learn More button styling */
.learn-more-btn {
  display: inline-block;
  background-color: transparent;
  color: #121315;
  padding: 0.5rem 0.7rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  color: #527ef9;
}


/* FINTECH SECTION */
.fintech-section {
  position: relative;
  width: 100%;
  padding: 6rem 2rem;
  color: var(--text-light); /* text color */
  overflow: hidden;
}

.fintech-section .section-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.fintech-section .section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* dark overlay effect */
}

.fintech-section .fintech-title {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}

.fintech-section h5 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-purple); /* subtle accent */
  margin-bottom: 0.5rem;
}

.fintech-section h2 {
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}


.fintech-section p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #f0f0f0;
}


/* SMART BENEFIT SECTION */

.smart-benefits-section {
  padding: 4rem 2rem;
  background: 
    linear-gradient(120deg, #f8fafc 0%, #e0e7ff 100%), /* soft gradient */
    url('https://www.transparenttextures.com/patterns/cubes.png'); /* subtle pattern */
  background-repeat: repeat;
  background-size: 150px;
  position: relative;
}


.smart-benefits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.smart-benefits-left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center */
  padding: 4rem 2rem;      /* top & bottom padding */
}


.smart-benefits-left h5 {
  font-size: 1rem;
  color: #527ef9;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  align-items: center;
  justify-content: center;
}

.smart-benefits-left h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #121315;
}

.smart-benefits-left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.smart-benefits-right {
  flex: 1 1 57%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem; 
}

.smart-benefit-card {
  background: #fff;
  padding: 2.5rem 2.5rem;   /* more horizontal padding for wider look */
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  width: 100%;            /* take full column width */
  max-width: 600px;       /* slightly wider */
  height: auto;           /* let height adjust based on content */
  margin: 0 auto;         /* center within grid */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* keep content starting from top */
}


.smart-benefit-card:hover {
  background: #527ef9;
  color: #fff;
}

.smart-benefit-card:hover h3,
.smart-benefit-card:hover p {
  color: #fff;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 25%;
  background: #527ef9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
    margin-bottom: 1.5rem; /* space between icon and text */
}

.icon-wrapper img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* white icon */
  transition: all 0.3s ease;
}

.smart-benefit-card:hover .icon-wrapper {
  background: #fff;
}

.smart-benefit-card:hover .icon-wrapper img {
  filter: brightness(0); /* icon turns dark */
}

.smart-benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #121315;
}

.smart-benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* real exmples */

.real-banking-examples {
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.section-header h5 {
    font-size: 1rem;
    color: #527ef9;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #121315;
}

/* Container for the cards */
.examples-container {
    display: flex;
    gap: 1.5rem;          /* spacing between cards */
    flex-wrap: nowrap;     /* keep all cards in one row */
    justify-content: space-between;
}

/* Each card */
.example-card {
    display: flex;
    flex: 1 1 0;          /* grow equally */
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    min-width: 0;          /* prevent overflow */
}

/* Number left */
.card-left {
    font-size: 2.5rem;
    font-weight: 900;
    color: #527ef9;
    flex: 0 0 60px;        /* fixed width */
    text-align: center;
}

/* Separator between number and text */
.separator {
    width: 2px;
    background: rgba(0,0,0,0.1);
    height: 100%;
    margin: 0 1.5rem;
    transition: background-color 0.3s ease;
}

/* Right content */
.card-right h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #121315;
}

.card-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Hover Effect */
.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.example-card:hover .separator {
    background-color: #527ef9; /* accent color on hover */
}



/* why choose us section */

.why-choose-us {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 2rem 2rem;
}

.why-choose-us h5 {
  font-size: 1rem;
  color: #121315;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.why-choose-us h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.why-choose-us h2 .highlight {
  color: var(--accent);
  font-weight: 900;
}
.why-choose-us p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 1200px;
  margin: 0 auto;
}


/* solution-portfolio */

.solution-portfolio {
  padding: 2rem 2rem;
  background: #f8fafc;
}

.solution-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left frame: Accordion */
.solution-left {
  flex: 1 1 45%;
  max-height: 500px; /* same as .solution-right height */
  overflow-y: auto;  /* scroll inside left frame */
  padding-right: 1rem; /* avoid scrollbar overlay */
}

.solution-left h5 {
  font-size: 1rem;
  color: #527ef9;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.solution-left h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.6rem;
  line-height: 1.2;
  color: #121315;
  position: relative;
  font-family:'Poppins', 'Arial', sans-serif;

}

.accordion {
  border-radius: 12px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: #f8fafc;
  padding: 1.25rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  margin-bottom: 0.5rem;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  content: "-";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.show {
  padding: 1rem 1.25rem;
  max-height: 500px; /* enough height to show content */
}

/* Right frame: Image */
.solution-right {
  flex: 1 1 50%;
  position: relative;
  min-height: 500px;
}

.solution-right img {
  width: 100%;
  height: 90%;
  object-fit:fill;
}

.overlay-text {
  position: absolute;
  bottom: 3.75rem;
  left: 0rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  background: rgba(0,0,0,0.4);
  padding: 0.5rem 1rem;
  border-radius: 9px;
}

/* -------------------------------------------------------------------------------- */
/* technical approach */
/* -------------------------------------------------------------------------------- */
.tech-approach {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8fafc, #eaf1ff); /* subtle gradient */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tech-approach::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(82, 126, 249, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.tech-approach::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(82, 126, 249, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.tech-approach-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-left: 2rem;
}

.tech-approach-left {
  flex: 1;
}

.tech-approach-left h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #527ef9;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.tech-approach-right {
  flex: 2;
  border-left: 4px solid #527ef9; /* left accent line */
  padding-left: 2rem;
}

.tech-approach-right p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* -------------------------------------------------------------------------------- */
/* AI in Banking */
/* -------------------------------------------------------------------------------- */
.ai-banking {
  padding: 0rem 0 0rem 2rem; /* left + top + bottom padding */
  background: #fff;
}

.ai-banking-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr; /* left smaller, right larger */
  align-items: center;
  max-width: 100%;
  min-height: 80vh;
}

.ai-banking-left {
  margin-left: 25%;
  max-width: 500px; /* keeps text narrow and clean */
}

.ai-banking-left h5 {
  font-size: 0.95rem;
  color: #527ef9;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.ai-banking-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #121315;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', 'Arial', sans-serif;
}

.ai-banking-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
}

.cta-btn:hover {
  background: var(--gradient-light);
  color: var(--accent);
  box-shadow: 0 6px 20px rgba(74, 108, 247, 0.4);
}

/* Right Image to Edge */
.ai-banking-right {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Right Image Background */
.ai-image-bg {
  position: relative;
  background: var(--gradient-cta); /* blue background */
  border-radius: 0 0 0 180px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-image {
  position: relative;
  border-radius: 0 0 0 180px;
  overflow: hidden;
  height: 100%;
  margin-left: 3rem;
}

.ai-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vertical Label */
.ai-label {
  position: absolute;
  top: 40%;
  left: -5px;
  transform: translateY(-50%);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  z-index: 2;
  letter-spacing: 6px;
  
  /* Make text vertical */
  writing-mode: vertical-rl; /* or vertical-lr depending on direction */
}

/* -------------------------------------------------------------------------------- */
/* FAQ Section */
/* -------------------------------------------------------------------------------- */

.faq {
  padding: 5rem 2rem;
  background: #f9f9f9;
  font-family: 'Montserrat', sans-serif;
}

.faq-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
}

.faq-left {
  flex: 1.2;
}

.faq-right {
  flex: 1;
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 1rem;  /* spacing from text */
  flex-shrink: 0;     /* prevent shrinking on smaller screens */
}

.faq-answer {
  display: none;
  padding: 0 0 1rem 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg); /* plus to minus */
}

/* Right Content Styling */

.faq-right h2 {
  font-size: 2.75rem;
  font-weight: 400;
  max-width: 200px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.faq-right h2 span {
  font-style: bold;
  font-weight: 900;
  font-size: 2.5rem;
  font-family: 'Poppins', 'Arial', sans-serif;
}

.faq-right .highlight {
  color: #0066ff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.faq-right .desc {
  color: #444;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Button */
.faq-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #0066ff;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.faq-btn:hover {
  background: #004ecc;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
  }

  /* Make right section come first */
  .faq-right {
    order: -1;   /* moves right frame above left */
    text-align: center; /* optional: center text for smaller screens */
  }

  .faq-right h2 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .faq-left {
    order: 2; /* keeps it below */
  }
}

        /* -------------------------------------------------------------------------------- */
        /* CTA Section */
        /* -------------------------------------------------------------------------------- */

        .cta-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-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 1000 1000"><defs><radialGradient id="b"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23b)"/><circle cx="900" cy="200" r="120" fill="url(%23b)"/><circle cx="300" cy="800" r="100" fill="url(%23b)"/></svg>') no-repeat center;
            background-size: cover;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        /* -------------------------------------------------------------------------------- */
        /* Mobile Responsiveness */
        /* -------------------------------------------------------------------------------- */

      @media (max-width: 1024px) {

          .hero {
            padding: 5rem 2.5rem;
            min-height: 80vh;
          }

          .hero-content {
            max-width: 500px;
          }

          .hero-content h1 {
            font-size: 2.5rem;
          }

          .hero-cta {
            padding: 0.9rem 1.8rem;
            font-size: 0.95rem;
          }

          .digital-heading {
            font-size: 2.5rem;
            letter-spacing: 2px;
            margin: 40px 0;
          }

          .banking-metrics {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
          }

          .metrics-stats {
            width: 100%;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
          }

          .stat {
            flex: 1 1 45%;
          }

          .chart-container {
            height: 180px;
          }

          .benefits-cards {
            justify-content: center;
            gap: 1.5rem;
          }

          .benefit-card {
            flex: 1 1 45%;   /* 2 cards per row */
            max-width: 48%;
          }

          .digital-heading {
            font-size: 2.2rem;
          }

          .banking-services {
            padding: 4rem 2rem;
          }

          .services-header h2 {
            font-size: 2.2rem;
          }

          .service-row {
            flex-direction: column;  /* stack vertically */
            text-align: center;
          }

          .service-image {
            order: 1;   /* image always first */
            margin-bottom: 1.5rem;
          }

          .service-content {
            order: 2;   /* content always second */
            padding: 1.5rem 1rem;
          }

          .service-content h3::after {
            margin: 12px auto 14px auto; /* center the blue line */
          }
          .service-content p {
            font-size: 0.95rem;
          }
          .service-buttons {
              justify-content: center;
              gap: 1rem;
          }

          .fintech-section {
            padding: 4rem 1.5rem;
          }
          .fintech-section h2 {
            font-size: 1.9rem;
          }
          .fintech-section p {
            font-size: 0.95rem;
          }
          .smart-benefits-section {
            padding: 3rem 1.5rem;
          }

          .smart-benefits-container {
            flex-direction: column;
            gap: 2rem;
          }

          .smart-benefits-left {
            flex: 1 1 100%;
            padding: 2rem 1.5rem;
            text-align: center;
          }

          .smart-benefits-left h2 {
            font-size: 2rem;
          }

          .smart-benefits-right {
            grid-template-columns: repeat(2, 1fr); /* still 2 columns */
            gap: 2rem;
          }

          .smart-benefit-card {
            padding: 2rem;
          }

          .examples-container {
              flex-wrap: wrap;
          }
          .example-card {
              flex: 1 1 48%;    /* two cards per row on medium screens */
              margin-bottom: 1rem;
          }

          .solution-portfolio {
            padding: 2rem 1.5rem;
          }

          .solution-left h2 {
            font-size: 2rem;
          }

          .solution-left {
            max-height: unset;  /* allow full expansion */
            padding-right: 0;
          }

          .solution-right {
            min-height: 400px; /* reduce height slightly */
          }

          .overlay-text {
            font-size: 1.5rem;
            bottom: 1.5rem;
            left: 1.5rem;
            padding: 0.5rem 0.9rem;
            max-width: 85%;
          }

          .ai-banking {
            padding: 4rem 1.5rem;
          }

          .ai-banking-container {
            grid-template-columns: 1fr 1fr;
            min-height: auto;
          }

          .ai-banking-left {
            margin-left: 10%;
            max-width: 400px;
          }

          .ai-banking-left h2 {
            font-size: 2.2rem;
          }

          .ai-banking-left p {
            font-size: 1rem;
            line-height: 1.6;
          }

          .ai-label {
            font-size: 1rem;
            left: -3px;
            letter-spacing: 4px;
          }

          .cta-button {
            padding: 0.9rem 2rem;
            font-size: 0.95rem;
          }


      }

      @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }


            .hero {
              padding: 4rem 2rem;
              min-height: 70vh;
              justify-content: center;   /* center content on smaller screens */
              text-align: center;
            }

            .hero-content {
              max-width: 100%;
            }

            .hero-content h1 {
              font-size: 2.2rem;
              line-height: 1.3;
            }

            .hero-cta {
              margin-top: 1rem;
              padding: 0.8rem 1.6rem;
              font-size: 0.9rem;
              justify-content: center;
            } 

            .nav-content {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .industry-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section {
                padding: 3rem 0;
            }

            .industry-sticky-nav {
                top: 70px;

            }
            .industry-nav-content {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
                padding: 0.75rem;
            }

            .industry-nav-link {
                padding: 0.4rem 0.75rem;
                font-size: 0.9rem;
            }

            .angled-overview-section {
                min-height: 400px;
                background-position: center top;
                background-size: cover;
            }
                    
            /* Remove angled shape on mobile */
            .angled-white-overlay {
                padding: 3rem 1.5rem;
                margin: 1rem auto;
                background: rgba(255, 255, 255, 0.75);
                backdrop-filter: blur(2px);
                clip-path: none !important;
                max-width: 90%;
                border-radius: 1.5rem;
            }
            
            .angled-content {
                max-width: 95%;
                font-size: 0.95rem;
            }
            
            .angled-blue-glow {
                display: none;
            }

            /* Content inside white box */
            .angled-content h2 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .angled-content p {
                font-size: 1rem;
                line-height: 1.6;
            }

            .digital-heading {
              font-size: 2rem;
              margin: 30px 0;
              letter-spacing: 1.5px;
              padding-top: 0.5rem;
            }

            .banking-metrics {
              flex-direction: column;
              padding: 1.5rem 1rem;
            }

            .metrics-card {
              padding: 0 1rem;
              text-align: center;
            }

            .metrics-card p {
              font-size: 1rem;
            }

            .metrics-stats {
              flex-direction: column;
              align-items: center;
              gap: 2rem;
            }

            .stat {
              width: 100%;
              max-width: 400px;
            }

            .stat h2 {
              font-size: 2rem;
            }

            .chart-container {
              height: 160px;
            }

            .benefits-cards {
              flex-direction: column;
              align-items: center;
              gap: 1.5rem;
            }

            .benefit-card {
              flex: 1 1 100%;
              max-width: 100%;
              padding: 1.5rem 1rem;
            }

            .digital-heading {
              font-size: 1.8rem;
              margin: 30px 0;
              letter-spacing: 1.5px;
            }

            .benefit-card h3 {
              font-size: 1.1rem;
            }

            .benefit-card p {
              font-size: 0.95rem;
            }

            .banking-services {
              padding: 3rem 1.5rem;
            }

            .services-header h2 {
              font-size: 2rem;
            }

            .service-row {
              display: flex;
              flex-direction: column; /* Force vertical stack */
            }

            .service-image {
              order: 0; /* always first */
            }

            .service-content {
              order: 1; /* always second */
              padding: 1.5rem 1rem; /* already in your base responsive rules */
            }

            .service-content h3 {
              text-align: center;   /* center align heading */
            }

            .service-content h3::after {
              margin-left: auto;    /* center blue line under heading */
              margin-right: auto;
              margin: 12px auto 14px auto; /* center blue line under heading */
            }

            .service-content p {
              text-align: center; /* cleaner look for mobile */
            }

            .service-buttons {
              justify-content: center;
              gap: 1rem;
            }

            .fintech-section {
              padding: 3rem 1rem;
            }
            .fintech-section h2 {
              font-size: 1.6rem;
            }
            .fintech-section p {
              font-size: 0.9rem;
            }

            .smart-benefits-section {
              padding: 2.5rem 1.2rem;
            }

            .smart-benefits-left {
              text-align: center;
              padding: 1.5rem 1rem;
            }

            .smart-benefits-left h2 {
              font-size: 1.8rem;
              margin-bottom: 1rem;
            }

            .smart-benefits-left p {
              font-size: 0.95rem;
            }

            .smart-benefits-right {
              grid-template-columns: 1fr; /* switch to single column */
              gap: 1.5rem;
            }

            .smart-benefit-card {
              padding: 1.8rem 1.5rem;
              max-width: 100%;
            }

            .example-card {
                flex: 1 1 100%;   /* single card per row on mobile */
                flex-direction: column;
                align-items: flex-start;
            }
            .separator {
                display: none;
            }
            .card-left {
                margin-bottom: 1rem;
            }

            .solution-container {
              flex-direction: column;   /* stack vertically */
              gap: 2rem;
            }

            .solution-left, 
            .solution-right {
              flex: 1 1 100%;
              max-width: 100%;
            }

            .solution-left h2 {
              font-size: 1.8rem;
              text-align: center;
            }

            .solution-left h5 {
              text-align: center;
            }

            .solution-right {
              min-height: 300px;
            }

            .overlay-text {
              position: static;     /* remove absolute positioning */
              margin-top: 1rem;     /* space below the image */
              background: none;     /* remove dark background */
              color: #121315;       /* switch to dark text for readability */
              text-align: center;
              font-size: 1.2rem;
              font-weight: 700;
              max-width: 100%;
              padding: 0;
            }

            .tech-approach-container {
              flex-direction: column;
              border-left: none;
              padding-left: 0;
            }

            .tech-approach-right {
              border-left: none;
              padding-left: 0;
              margin-top: 1.5rem;
            }

            .tech-approach-left h2 {
              text-align: center;
            }

            .tech-approach-right p {
              text-align: center;
            }

            .ai-banking {
              padding: 3rem 1rem;
            }

            .ai-banking-container {
              grid-template-columns: 1fr; /* stack vertically */
              gap: 2rem;
            }

            .ai-banking-left {
              margin-left: 0;
              max-width: 100%;
              text-align: center;
            }

            .ai-banking-left h2 {
              font-size: 2rem;
            }

            .ai-banking-left p {
              font-size: 0.95rem;
            }

            .ai-banking-right {
              height: 300px;
            }

            .ai-image {
              margin-left: 0;
              border-radius: 20px; /* soften for mobile */
            }

            .ai-label {
              writing-mode: horizontal-tb;  /* switch to horizontal */
              top: auto;
              bottom: 10px;
              left: 50%;
              transform: translateX(-50%);
              font-size: 0.9rem;
              letter-spacing: 3px;
              background: rgba(0,0,0,0.4);
            }

            .ai-image-bg,
            .ai-image {
              border-radius: 0;   /* remove curves */
            }

            .cta-button {
              padding: 0.8rem 1.8rem;
              font-size: 0.9rem;
              gap: 0.5rem;
            }
        }

         @media (max-width: 480px) {

            .hero {
              padding: 3rem 1.2rem;
              min-height: 65vh;
            }

            .hero-content h1 {
              font-size: 1.8rem;
            }

            .hero-cta {
              width: 100%;              /* full-width button for mobile */
              text-align: center;
              justify-content: center;
              padding: 0.8rem 1.2rem;
              font-size: 0.85rem;
            }
            
            .angled-overview-section {
                min-height: 360px;
                background-size: cover;
                background-position: top;
            }

            .angled-white-overlay {
                padding: 2rem 1rem;
                background: rgba(255, 255, 255, 0.75);
                backdrop-filter: blur(2px);
            }
            
            .angled-content {
                max-width: 95%;
                font-size: 0.95rem;
            }

            .angled-content h2 {
                font-size: 1.5rem;
                margin-bottom: 14px;
                line-height: 1.3;
            }

            .angled-content p {
                font-size: 0.6rem;
                padding: 12px;
                line-height: 1.6;
            }

            .digital-heading {
              font-size: 1.6rem;
              margin: 20px 0;
              letter-spacing: 1px;
              padding-top: 0.25rem;
            }
            
            .banking-metrics {
              padding: 1rem;
              gap: 1.5rem;
            }

            .metrics-card p {
              font-size: 0.9rem;
              line-height: 1.6;
            }

            .metrics-stats {
              gap: 1.5rem;
            }

            .stat h2 {
              font-size: 1.8rem;
            }

            .stat h5 {
              font-size: 0.8rem;
            }

            .chart-container {
              height: 140px;
            }

            .chart-labels {
              font-size: 12px;
            }

            .benefits-cards {
              flex-direction: column;   /* stack vertically like 768px */
              align-items: center;
              gap: 1rem;
            }

            .benefit-card {
              flex: 1 1 100%;
              max-width: 100%;
              padding: 1rem;
              border-radius: 10px;
            }

            .digital-heading {
              font-size: 1.4rem;
              margin: 20px 0;
              letter-spacing: 0.5px;
            }

            .benefit-card h3 {
              font-size: 1rem;
            }

            .benefit-card p {
              font-size: 0.9rem;
              line-height: 1.5;
            }

            .benefit-icon {
              width: 40px;
              height: 40px;
            }

            .banking-services {
              padding: 2rem 1rem;
            }

            .services-header h2 {
              font-size: 1.6rem;
            }

            .service-content h3 {
              font-size: 1.2rem;
              text-align: center;   /* center align heading */
            }

            .service-content h3::after {
              margin-left: auto;    /* center blue line under heading */
              margin-right: auto;
            }

            .service-content p {
              font-size: 0.9rem;
              line-height: 1.5;
            }

            .service-row {
              flex-direction: column;
            }

            .service-image {
              order: 0;
            }

            .service-content {
              order: 1;
            }

            .explore-btn {
              font-size: 0.9rem;
              padding: 0.4rem 1.2rem;
            }

            .learn-more-btn {
              font-size: 0.9rem;
              padding: 0.4rem 0.6rem;
            }

            .smart-benefits-section {
              padding: 2rem 1rem;
            }

            .smart-benefits-left h2 {
              font-size: 1.5rem;
            }

            .smart-benefits-left p {
              font-size: 0.9rem;
              line-height: 1.5;
            }

            .smart-benefits-right {
              grid-template-columns: 1fr; /* stay single column */
              gap: 1rem;
            }

            .smart-benefit-card {
              padding: 1.5rem 1rem;
              border-radius: 10px;
            }

            .smart-benefit-card h3 {
              font-size: 1.1rem;
            }

            .smart-benefit-card p {
              font-size: 0.85rem;
            }

            .icon-wrapper {
              width: 50px;
              height: 50px;
              margin-bottom: 1rem;
            }

            .icon-wrapper img {
              width: 24px;
              height: 24px;
            }

            .solution-portfolio {
              padding: 1.5rem 1rem;
            }

            .solution-left h2 {
              font-size: 1.5rem;
              margin-bottom: 1rem;
            }

            .accordion-header {
              font-size: 1rem;
              padding: 1rem;
            }

            .accordion-content {
              font-size: 0.9rem;
              line-height: 1.5;
            }

            .solution-right {
              min-height: 220px;
            }

            .overlay-text {
              font-size: 1rem;
              margin-top: 0.8rem;
              font-weight: 600;
              line-height: 1.4;
            }

            .ai-banking {
              padding: 2rem 1rem;
            }

            .ai-banking-left h2 {
              font-size: 1.6rem;
              margin-bottom: 1rem;
            }

            .ai-banking-left p {
              font-size: 0.9rem;
              line-height: 1.5;
            }

            .cta-btn {
              font-size: 0.9rem;
              padding: 0.7rem 1.5rem;
            }

            .ai-banking-right {
              height: 220px;
            }

            .ai-label {
              font-size: 0.8rem;
              padding: 0.3rem 0.6rem;
              bottom: 8px;
              letter-spacing: 2px;
            }

            .cta-button {
              width: 100%;                /* full-width button */
              justify-content: center;    /* center text & icon */
              padding: 0.8rem 1.2rem;
              font-size: 0.85rem;
              border-radius: 40px;
            }
        }


        /* Loading Animation */
        .loading {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        /* Scroll animations */
        .scroll-reveal {
          opacity: 0;
          transition: all 0.8s ease-out;
        }

        .scroll-reveal[data-reveal="up"] {
          transform: translateY(50px);
        }
        .scroll-reveal[data-reveal="down"] {
          transform: translateY(-50px);
        }
        .scroll-reveal[data-reveal="left"] {
          transform: translateX(-60px);
        }
        .scroll-reveal[data-reveal="right"] {
          transform: translateX(50px);
        }

        /* Revealed state */
        .scroll-reveal.revealed {
          opacity: 1;
          transform: translateX(0) translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .animate-fadeInUp,
            .scroll-reveal,
            .help-card:hover .card-inner {
                animation: none;
                transform: none;
                transition: none;
            }
        }