/* Page Banner Styles */
.page-banner {
     position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(67, 97, 238, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: 0;
}

.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.banner-badge i {
    margin-right: 0.5rem;
    color: #4361ee;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.banner-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.banner-cta {
    margin-bottom: 1rem;
}

.banner-shape-divider {
    position: absolute;
    height: 250px; /* Responsive height */
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.banner-shape-divider svg {
    display: block;
    width: 100%;
    height: auto;
}




/* Page-specific banner variations */
.about-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
}

.investments-banner {
    background: linear-gradient(135deg, #0f766e 0%, #0369a1 100%);
}

.performance-banner {
    background: linear-gradient(135deg, #7e22ce 0%, #4f46e5 100%);
}

.testimonials-banner {
    background: linear-gradient(135deg, #b45309 0%, #ea580c 100%);
}

.faq-banner {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
}

.contact-banner {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.calculator-banner {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
}

.crypto-prices-banner {
    background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
}

.risk-management-banner {
    background: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .page-banner {
        padding: 100px 0 80px;
        min-height: 350px;
        display: flex;
  flex-direction: column;
  justify-content: space-between;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }

    .banner-shape-divider {
    position: absolute;
    height: 250px;
    
 
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
}

@media (max-width: 767.98px) {
    .page-banner {
        padding: 80px 0 60px;
        min-height: 300px;
        display: flex;
  flex-direction: column;
  justify-content: space-between;
    }
    
    .banner-title {
        font-size: 2rem;
    }

    .banner-shape-divider {
    position: absolute;
    height: 250px;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-badge {
        font-size: 0.8rem;
    }
}