/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0e27;
    overflow-x: hidden;
    color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Override Bootstrap classes for dark theme */
.bg-light {
    background: transparent !important;
}

.text-primary {
    color: rgba(255, 255, 255, 0.95) !important;
}

.text-primary i {
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.5));
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.display-1, .display-2, .display-3, .display-4, .display-5 {
    text-shadow: 0 4px 20px rgba(0, 86, 179, 0.5);
}

.lead {
    color: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.navbar {
    background-color: #0056b3 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Slide Styles - Dark Theme */
.slide {
    min-height: 100vh;
    padding: 10px 0 20px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1328 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.slide::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.2) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
    pointer-events: none;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15) 0%, transparent 70%);
    animation: pulse 7s ease-in-out infinite reverse;
    pointer-events: none;
}

.slide .container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

/* Hero Slide */
.hero-slide {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1328 100%);
}

.hero-content {
    padding: 20px 0;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 86, 179, 0.6),
                 0 0 40px rgba(0, 123, 255, 0.4);
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 86, 179, 0.4),
                 0 0 30px rgba(0, 123, 255, 0.3);
}

.hero-content .lead {
    font-size: 1.5rem !important;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(0, 86, 179, 0.3);
    letter-spacing: 0.3px;
}

.hero-content .fs-4 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-content .fs-4 strong {
    color: white;
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

/* Phone Mockup */
.phone-mockup {
    display: inline-block;
    position: relative;
    perspective: 1000px;
}

.demo-caption {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;
    opacity: 0.8;
}

.phone-mockup small::before {
    display: none;
}

.phone-mockup.small {
    transform: scale(1);
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.phone-screen > .hero-app,
.phone-screen > .app-screen {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* App Screen Styles */
.app-home, .app-screen {
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Hero App Styles - Modern Banking Design */
.hero-app {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 70px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    position: relative;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
    gap: 10px;
    position: relative;
}

.hero-header > i:first-child {
    flex: 0 0 auto;
}

.hero-header h4 {
    flex: 1;
    text-align: center;
    margin: 0;
}

.hero-header > i:last-child,
.hero-header .hero-notification-icon {
    flex: 0 0 auto;
}

.hero-notification-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    border: 2px solid #0056b3;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-header i {
    color: white;
    font-size: 1.5rem;
}

.hero-header h4 {
    color: white;
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.hero-balance-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-balance-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-balance-amount {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.hero-balance-info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 0.75rem;
}

.hero-balance-info span {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
    padding: 5px 10px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
}

.hero-balance-info i {
    margin-right: 4px;
}

.hero-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.hero-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.hero-action-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.hero-recent-section {
    margin-top: 15px;
}

.hero-section-title {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-transaction-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 6px;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-trans-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.hero-trans-details {
    flex: 1;
    min-width: 0;
}

.hero-trans-details strong {
    display: block;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-trans-details small {
    color: rgba(255,255,255,0.7);
    font-size: 0.65rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-trans-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.hero-trans-date {
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 500;
    white-space: nowrap;
}

.hero-trans-amount {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Hero App Footer */
.hero-app-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 10px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -70px;
    margin-top: auto;
    border-radius: 0 0 25px 25px;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    width: calc(100% + 40px);
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0, 86, 179, 0.3),
                0 -1px 10px rgba(0, 123, 255, 0.2);
}

.hero-app > *:not(.hero-app-footer) {
    flex-shrink: 0;
}

.hero-app-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.hero-app .hero-recent-section {
    flex-shrink: 0;
    overflow: visible;
    padding-bottom: 10px;
}

.hero-app .hero-transfer-form {
    flex-shrink: 0;
    overflow: visible;
    padding-bottom: 10px;
}

.hero-balance-card,
.hero-quick-actions,
.hero-app-header,
.hero-header {
    flex-shrink: 0;
}

.hero-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    padding: 5px;
    border-radius: 8px;
}

.hero-footer-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-footer-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.hero-footer-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.hero-footer-item span {
    font-weight: 500;
    font-size: 0.7rem;
}

/* Hero Transfer Form Styles */
.hero-transfer-form {
    padding: 10px 0;
}

.hero-form-group {
    margin-bottom: 15px;
}

.hero-form-group label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-select-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 12px 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    cursor: pointer;
}

.hero-select-box i {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
}

.hero-amount-input {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
}

.hero-currency {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 12px;
    font-weight: 600;
    font-size: 0.85rem;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.hero-amount-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.hero-amount-input input::placeholder {
    color: rgba(255,255,255,0.5);
}

.hero-payment-gateways {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hero-gateway-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-gateway-item:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

.hero-gateway-item.active {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.hero-gateway-item i {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.hero-gateway-item span {
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-balance-info-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.hero-balance-info-card span {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
}

.hero-balance-info-card strong {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-submit-btn {
    width: 100%;
    background: white;
    color: #0056b3;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-submit-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-header h5 {
    color: white !important;
    margin: 0;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.app-header i {
    font-size: 2rem;
}

.app-header h4, .app-header h5 {
    margin: 0;
    color: #0056b3;
    font-weight: 700;
}

.hero-app .app-header h4,
.hero-app .app-header h5 {
    color: white;
}

.balance-display {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 15px;
}

.balance-display p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

.balance-display h2, .balance-display h3 {
    margin: 10px 0 0 0;
    font-size: 2rem;
    font-weight: 700;
}

.quick-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.action-btn {
    flex: 1;
    padding: 15px;
    background: white;
    border: 2px solid #0056b3;
    border-radius: 10px;
    color: #0056b3;
    font-weight: 600;
    cursor: pointer;
}

.action-btn:hover {
    background: #0056b3;
    color: white;
}

.recent-transactions {
    margin-top: 20px;
}

.recent-transactions h6 {
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Savings Form */
.savings-form, .transfer-form {
    padding: 10px 0;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #f8f9fa;
}

.form-group select {
    cursor: pointer;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #004494;
}

/* History List */
.history-list {
    padding: 10px 0;
}

.history-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #f0f0f0;
}

.history-icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.history-details {
    flex: 1;
}

.history-details strong {
    display: block;
    color: #333;
    font-size: 0.9rem;
}

.history-details small {
    color: #999;
    font-size: 0.75rem;
}

.history-amount {
    font-weight: 700;
    font-size: 1rem;
}

.total-summary {
    margin-top: 15px;
    padding: 15px;
    background: #0056b3;
    color: white;
    border-radius: 10px;
    text-align: center;
}

/* Customer List */
.customer-list {
    padding: 10px 0;
}

.customer-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #f0f0f0;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0056b3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
}

.customer-info {
    flex: 1;
}

.customer-info strong {
    display: block;
    color: #333;
    margin-bottom: 3px;
}

.customer-info small {
    color: #999;
    font-size: 0.8rem;
}

.customer-balance {
    font-weight: 700;
    color: #0056b3;
    font-size: 1.1rem;
}

/* Profile Content */
.profile-content {
    text-align: center;
    padding: 10px 0;
}

.profile-avatar-large {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0056b3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 15px;
}

.profile-info {
    text-align: left;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #f0f0f0;
}

.profile-info p {
    margin: 8px 0;
    color: #666;
    font-size: 0.9rem;
}

.profile-balance {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.profile-balance p {
    margin: 0;
    opacity: 0.9;
}

.profile-balance h3 {
    margin: 10px 0 0 0;
}

/* Transaction List */
.transaction-list {
    padding: 10px 0;
}

.transaction-item-detailed {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #f0f0f0;
}

.transaction-item-detailed i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.transaction-details {
    flex: 1;
}

.transaction-details strong {
    display: block;
    color: #333;
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.transaction-details small {
    color: #999;
    font-size: 0.75rem;
}

.balance-info {
    padding: 10px;
    background: #e3f2fd;
    border-radius: 8px;
    color: #0056b3;
    font-weight: 700;
    text-align: center;
}

/* Problem Cards - Dark Theme */
.section-title-wrapper {
    display: inline-block;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.8));
    margin: 8px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 86, 179, 0.3),
                0 0 20px rgba(0, 123, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.4),
                0 0 30px rgba(0, 123, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.problem-card:hover::before {
    opacity: 1;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5),
                0 0 40px rgba(0, 86, 179, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.problem-card:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.7),
                0 0 50px rgba(0, 86, 179, 0.5);
}

.problem-card h3 {
    margin: 12px 0 12px !important;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.problem-card .lead {
    margin-bottom: 0 !important;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Feature Cards - Dark Theme */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 86, 179, 0.3),
                0 0 20px rgba(0, 123, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.4),
                0 0 30px rgba(0, 123, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon i {
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.5));
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px !important;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Flow Section - Dark Background with Glowing Effects */
.flow-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1328 100%);
    position: relative;
    overflow: hidden;
}

.flow-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.3) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.flow-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.title-underline-light {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    margin: 8px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.flow-step {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 86, 179, 0.3),
                0 0 20px rgba(0, 123, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.4),
                0 0 30px rgba(0, 123, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.flow-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.3), rgba(0, 123, 255, 0.3));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5),
                0 0 40px rgba(0, 86, 179, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.7),
                0 0 50px rgba(0, 86, 179, 0.5),
                inset 0 0 25px rgba(255, 255, 255, 0.2);
}

.flow-icon i {
    font-size: 1.8rem !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.flow-step h5 {
    color: white;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.flow-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.flow-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
}

.flow-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(0, 123, 255, 0.2);
    border: 1px solid rgba(0, 123, 255, 0.4);
    border-radius: 12px;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.flow-payment-badge i {
    font-size: 0.85rem;
    opacity: 0.9;
}

.flow-payment-badge:hover {
    background: rgba(0, 123, 255, 0.3);
    border-color: rgba(0, 123, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.flow-arrow {
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
    transition: all 0.3s ease;
}

.flow-arrow:hover {
    color: white;
    text-shadow: 0 0 25px rgba(0, 123, 255, 1);
}

.flow-arrow i {
    font-size: 1.8rem !important;
}

.flow-details {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 86, 179, 0.3),
                0 0 20px rgba(0, 123, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.4),
                0 0 30px rgba(0, 123, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.detail-card i {
    color: white;
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.5));
}

.detail-card h6 {
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.detail-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Benefit Cards - Dark Theme */
.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 86, 179, 0.3),
                0 0 20px rgba(0, 123, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.4),
                0 0 30px rgba(0, 123, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-card i {
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.5));
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
}

.benefit-card h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.benefit-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* CTA Slide - Enhanced Dark Theme with Glowing Effects */
.cta-slide {
    background: linear-gradient(135deg, #0a1a3a 0%, #1a2f5a 50%, #0d1f3f 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(0, 123, 255, 0.3);
}

.cta-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.4) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite;
    pointer-events: none;
}

.cta-slide::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.3) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite reverse;
    pointer-events: none;
}

.cta-slide .container {
    position: relative;
    z-index: 1;
}

.cta-slide h2,
.cta-slide h3,
.cta-slide .lead,
.cta-slide .text-white,
.cta-slide .text-white-50 {
    text-shadow: 0 2px 20px rgba(0, 86, 179, 0.6),
                 0 0 40px rgba(0, 123, 255, 0.4);
}

.footer-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact a {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 0 25px rgba(0, 123, 255, 0.9);
}

.footer-contact i {
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.6));
    opacity: 0.9;
}

.footer-contact p {
    font-size: 1rem;
    margin-bottom: 8px;
}

.cta-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Badge styling for dark theme */
.badge.bg-light {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.3);
    color: white !important;
}

.badge.bg-white {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.3);
    color: white !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Adjustments - Mobile First */
@media (max-width: 992px) {
    .slide {
        padding: 50px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 40px 0 25px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem !important;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem !important;
    }
    
    .hero-content .lead {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-content .fs-4 {
        font-size: 0.9rem !important;
    }
    
    .display-1 {
        font-size: 2.5rem !important;
    }
    
    .display-3 {
        font-size: 2rem !important;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .phone-mockup {
        transform: scale(0.7);
        margin: 20px 0;
    }
    
    .phone-mockup.small {
        transform: scale(0.65);
    }
    
    .flow-diagram {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .flow-step {
        min-width: 100%;
        max-width: 100%;
    }
    
    .cta-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-badges .badge {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .hero-payment-gateways {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-card,
    .feature-card,
    .benefit-card {
        margin-bottom: 15px;
    }
    
    .mb-3 {
        margin-bottom: 1rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .section-title-wrapper {
        margin-bottom: 1rem;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
    }
}

/* Prevent text overflow on mobile */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 576px) {
    .slide {
        padding: 30px 0 20px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.25rem;
    }
    
    .hero-content .lead {
        font-size: 0.9rem !important;
    }
    
    .display-1 {
        font-size: 2rem !important;
    }
    
    .display-3 {
        font-size: 1.75rem !important;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
    
    .display-5 {
        font-size: 1.25rem;
    }
    
    .phone-mockup {
        transform: scale(0.6);
    }
    
    .phone-mockup.small {
        transform: scale(0.55);
    }
    
    .phone-frame {
        width: 260px;
        height: 520px;
    }
    
    .problem-card,
    .feature-card,
    .benefit-card,
    .detail-card {
        padding: 15px;
    }
    
    .hero-balance-card {
        padding: 15px;
    }
    
    .hero-transfer-form {
        padding: 5px 0;
    }
    
    .hero-form-group {
        margin-bottom: 12px;
    }
    
    .footer-contact {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
    }
    
    .h1, .h2, .h3, .h4, .h5, .h6 {
        font-size: 1.1rem;
    }
    
    .lead {
        font-size: 0.95rem;
    }
}

/* Landscape orientation optimizations */
@media (orientation: landscape) and (max-height: 600px) {
    .slide {
        min-height: auto;
        padding: 60px 0;
    }
    
    .phone-mockup.small {
        transform: scale(0.7);
    }
}

