/* Hero Section Container */
.hero-section {
    padding: 80px 0 40px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at 10% 20%, rgb(159 32 140 / 14%) 0%, rgba(255, 255, 255, 1) 90%);
}


.hero-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 95%;
}

/* Buttons */
.btn-group-custom {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: #9f208c; /* Primary Color */
    color: #ffffff;
    border: 2px solid #9f208c;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #7d196e; /* Darker shade for hover */
    border-color: #7d196e;
    color: #ffffff;
}

.btn-outline-custom {
    background-color: #ffffff;
    color: #9f208c; /* Primary Color */
    border: 1px solid #9f208c;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: #fcf0fa; /* Light purple tint for hover */
    color: #9f208c;
}

/* --- Mobile View Corrections --- */
@media (max-width: 768px) {
    .btn-group-custom {
        flex-direction: row; 
        align-items: flex-start; 
        gap: 20px;
    }

    /* Optional: If you want them to take full width on mobile, change 'fit-content' to '100%' */
    .btn-primary-custom, 
    .btn-outline-custom {
        width: fit-content; 
    }
}

/* Feature List (Ticks) */
.feature-list {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #4b5563;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature-list svg {
    width: 16px;
    height: 16px;
    fill: #102140;
}

/* Right Side Illustration Container */
.illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.illustration-img {
    max-width: 100%;
    height: auto;
}

/* Logo Carousel Section */
.trusted-section {
    margin-top: 60px;
    text-align: center;
}

.trusted-text {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Carousel Wrapper setup to hide overflow */
.logo-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    position: relative;
}

/* Gradient mask for smooth fade on edges */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f0f7, transparent);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fdfdfd, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    /* Will be animated via JS */
}

.logo-item {
    width: 180px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%) opacity(1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: calc(1.6rem + 1vw) !important;
    }
    .illustration-container {
        margin-top: 50px;
    }
    .hero-section {
        text-align: center;
     
            min-height: 90vh;
            
            padding: 120px 0 0px 0;


        
    }
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
    .btn-group-custom, .feature-list {
        justify-content: center;
    }
}


.btn-group-custom, .feature-list {
        justify-content: left;
    }
    
    
    
    
        /* --- CTA Section --- */
        .cta-section {
            background-color: #ffffff;
            padding-bottom: 80px;
        }

        .cta-box {
            background-color: #10000e;
  background-image: 
    radial-gradient(at 90% 10%, #b54a9d 0px, transparent 50%),
    radial-gradient(at 30% 40%, #5d0a4f 0px, transparent 60%),
    radial-gradient(at 0% 100%, #000000 0px, transparent 50%),
    radial-gradient(at 80% 80%, #31002c 0px, transparent 50%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
            border-radius: 20px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
            padding-right: 0px;
            
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.3;
            pointer-events: none;
        }

        .cta-title {
            color: #ffffff;
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 25px;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }

        .cta-btn {
            background-color: #ffffff;
            color: #0b1528;
            padding: 12px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .cta-btn:hover {
            background-color: #f1f5f9;
            color: #0b1528;
            transform: scale(1.02);
        }

        .cta-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .cta-features li {
            color: #e2e8f0;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .cta-features svg {
            width: 16px;
            height: 16px;
            fill: #ffffff;
        }

        .cta-illustration-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-title { font-size: 1.8rem; }
            .stat-number { font-size: 2.2rem; }
            .cta-box { padding: 40px 30px; text-align: center; }
            .cta-features { justify-content: center; }
            .cta-title { font-size: 2rem; }
            .cta-illustration-container { margin-top: 40px; }
        }
        
        
        
/* Reusable Feature Showcase Styles */
.feature-showcase-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.feature-showcase-title {
    color: #102140;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.feature-showcase-subtitle {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Items List */
.feature-item {
    padding: 24px 30px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

.feature-item:hover {
    background-color: #f8fafc;
}

/* Active State */
.feature-item.active {
    background-color: #f4f7fb;
}

.feature-item-title {
    color: #102140;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

h3 .feature-item-title{
 font-size: 1.1rem !important;
    
}



.feature-item.active .feature-item-title {
    color: #9f208c;
}

.feature-item-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Image Transition Styles (desktop shared image) */
.feature-showcase-image {
    transition: opacity 0.2s ease-in-out;
    opacity: 1;
}

.feature-showcase-image.fading {
    opacity: 0.2;
}

/* Per-item image, hidden on desktop, shown on mobile */
.feature-item-mobile-image {
    display: none;
    width: 100%;
    border-radius: 12px;
    margin-top: 16px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .feature-showcase-title { font-size: 1.8rem; }
    .feature-item { padding: 20px; cursor: default; }
    .feature-item:hover { background-color: transparent; }

    /* Hide the shared swapping image column on mobile */
    .feature-showcase-image {
        display: none;
    }

    /* Show each item's own image right below its content */
    .feature-item-mobile-image {
        display: block;
    }
    
    .feature-item.active .feature-item-title {
    color: black;
}

.feature-item.active{
    
    background-color:#f4f7fb00;
}

}

@media (max-width: 768px) {
    .feature-showcase-title { font-size: 1.8rem; }
    
    
}



/*card section*/

/* Core Section Styling */
.banking-features-section {
  background-color: #10000e;
  background-image: 
    radial-gradient(at 90% 10%, #b54a9d 0px, transparent 50%),
    radial-gradient(at 30% 40%, #5d0a4f 0px, transparent 60%),
    radial-gradient(at 0% 100%, #000000 0px, transparent 50%),
    radial-gradient(at 80% 80%, #31002c 0px, transparent 50%);
  background-size: 100% 100%;
  background-repeat: no-repeat; /* Keep the background dark */
  
}

.section-title {
  color: #ffffff; /* White text for contrast on dark bg */
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: #cbd1d9; /* Muted text for the subtitle */
  font-size: 1.1rem;
}

/* Light Card Layout */
.feature-card {
  background: #ffffff; /* Solid light color for the cards */
  border: 1px solid transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Default subtle shadow */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* Dark text for inside the light cards */
.card-title {
  color: #1e293b; 
}

.card-text {
  color: #475569; 
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Interactive Hover States */
.feature-card:hover {
  transform: translateY(-8px);
  border-color: #7d196e; /* Main accent color border on hover */
  box-shadow: 0 12px 32px rgba(125, 25, 110, 0.25); /* Main accent color glow */
}

/* Icon Styling */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(125, 25, 110, 0.08); /* 8% opacity of #7d196e for the icon background */
  color: #7d196e; /* Main accent color for the icon */
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

/* Invert icon colors on card hover */
.feature-card:hover .icon-wrapper {
  background: #7d196e; 
  color: #ffffff;
  transform: scale(1.05);
}

/* Link Styling */
.learn-more-link {
  color: #7d196e; /* Main accent color */
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 4px;
  transition: color 0.2s ease;
}

.learn-more-link:hover {
  color: #58114d; /* Slightly darker shade of #7d196e for hover effect */
  text-decoration: underline;
}



/* Section Background & Container */
.faq-template-section {
  padding: 80px 20px;
  
}

.faq-template-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-header h2 {
  color: black;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* Individual FAQ Card */
.faq-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0; /* Subtle, clean border for the card */
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* KILLS THE UNPLEASANT BORDER */
.faq-question, 
.faq-question:focus, 
.faq-question:active {
  border: none !important;      /* Overrides any global button borders */
  outline: none !important;     /* Removes the ugly browser focus box */
  box-shadow: none !important;  /* Removes any Bootstrap focus glows */
}

/* The Question Button */
.faq-question {
  width: 100%;
  text-align: left;
  background-color: transparent;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

/* Hover & Active text color */
.faq-question:hover,
.faq-item.active .faq-question {
  color: #7d196e; 
}

/* Font Awesome Icon Base Styling */
.faq-icon {
  font-size: 1.1rem;
  color: #64748b;
  transition: all 0.3s ease; /* Smooth rotation transition */
}

/* When the FAQ is active/open... */
.faq-item.active .faq-icon {
  color: #7d196e;
  transform: rotate(90deg); /* Optional: spins the icon when clicked */
}

/* CSS trick: Swap the Font Awesome Plus (\f067) to a Minus (\f068) */
.faq-item.active .faq-icon::before {
  content: "\f067"; 
}

/* The Answer Container */
.faq-answer-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out; 
}

.faq-answer-content {
  padding: 0 24px 24px 24px;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
}


/*bread crumb*/
.hero-breadcrumb {
    margin-top: 15px;
    margin-bottom: 20px;
}
.hero-breadcrumb .breadcrumb {
    margin-bottom: 0;
    flex-wrap: wrap;
    row-gap: 6px;
    font-size: 0.9rem;
    align-items: center;
}
.hero-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}
.hero-breadcrumb .breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
}
.hero-breadcrumb .breadcrumb-item a:hover {
    color: #7D196E;
}
.hero-breadcrumb .breadcrumb-item.active {
    color: #111827;
    font-weight: 500;
}
.hero-breadcrumb .breadcrumb-item + .breadcrumb-item {
    margin-left: 10px;
}
.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "";
}
.hero-breadcrumb .breadcrumb-divider {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
    font-size: 10px;
    color: #9ca3af;
}
@media (max-width: 576px) {
    .hero-breadcrumb {
        margin-bottom: 14px;
        
    }
    .hero-breadcrumb .breadcrumb {
        font-size: 0.8rem;
    }
    .hero-breadcrumb .breadcrumb-divider {
        margin: 0 6px;
        font-size: 9px;
    }
}



