/* Banner Styles - Neural Network Theme */
.banner-container {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #0a0a0a 0%, #16213e 40%, #0f3460 100%);
    border-radius: 16px;
    display: flex;
    padding: 0 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 20px 0;
    box-sizing: border-box;
}

/* Neural network background */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    overflow: hidden;
}

.neural-node {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 107, 255, 0.15);
    animation: pulse 4s infinite ease-in-out;
}

.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(74, 107, 255, 0.3), transparent);
    transform-origin: left center;
}

/* Content styling - Enhanced Professional Text */
.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65%; /* Increased width for better text presentation */
    z-index: 3;
    position: relative;
}

.banner-title {
    color: white;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 30%, #818cf8 70%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.banner-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a6bff, #8b5cf6);
    border-radius: 2px;
}

.banner-subtitle {
    color: #c7d2fe;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.5;
}

/* Professional tagline styling */
.banner-tagline {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 16px;
    line-height: 1.4;
    max-width: 480px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(74, 107, 255, 0.5);
}

.banner-cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #4a6bff 0%, #6d28d9 100%);
    color: white;
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(74, 107, 255, 0.4);
    width: fit-content;
    font-family: inherit;
}

.banner-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 107, 255, 0.6);
}

.banner-cta-button i {
    margin-left: 8px;
    font-size: 1rem;
}

/* Visual elements - Moved to the right with minimal padding */
.banner-visual-container {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30%; /* Adjusted width */
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

.banner-neural-visual {
    width: 180px;
    height: 180px;
    position: relative;
}

.banner-network-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(74, 107, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: banner-rotate 20s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-network-circle:nth-child(1) {
    width: 160px;
    height: 160px;
}

.banner-network-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    animation-direction: reverse;
    animation-duration: 15s;
}

.banner-network-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    animation-duration: 10s;
}

.banner-network-node {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4a6bff;
    box-shadow: 0 0 8px #4a6bff;
}

.banner-central-node {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a6bff 0%, #8b5cf6 100%);
    box-shadow: 0 0 15px #4a6bff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.banner-data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
}

.banner-flow-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #8b5cf6;
    animation: banner-flow 3s linear infinite;
    top: 50%;
    left: 50%;
}

/* Accent bar */
.banner-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4a6bff 0%, #8b5cf6 50%, #c084fc 100%);
    z-index: 3;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes banner-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes banner-flow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(50px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(50px) rotate(-360deg);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .banner-container {
        padding: 0 30px;
    }
    
    .banner-title {
        font-size: 2.1rem;
    }
    
    .banner-visual-container {
        right: 8px;
        width: 28%;
    }
    
    .banner-neural-visual {
        width: 150px;
        height: 150px;
    }
    
    .banner-network-circle:nth-child(1) {
        width: 140px;
        height: 140px;
    }
    
    .banner-network-circle:nth-child(2) {
        width: 110px;
        height: 110px;
    }
    
    .banner-network-circle:nth-child(3) {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .banner-container {
        height: 200px;
        padding: 0 20px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-content {
        width: 70%;
    }
    
    .banner-visual-container {
        width: 25%;
        right: 5px;
    }
    
    .banner-neural-visual {
        width: 120px;
        height: 120px;
    }
    
    .banner-network-circle:nth-child(1) {
        width: 110px;
        height: 110px;
    }
    
    .banner-network-circle:nth-child(2) {
        width: 85px;
        height: 85px;
    }
    
    .banner-network-circle:nth-child(3) {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 180px;
        padding: 0 15px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-content {
        width: 100%;
    }
    
    .banner-visual-container {
        display: none;
    }
}