/* Gradient Colors */
.bg-gradient-primary {
    background: linear-gradient(45deg, #4e73df, #224abe);
}

.bg-gradient-light {
    background: linear-gradient(45deg, #f8f9fc, #e3e6f0);
}

.text-gradient-primary {
    background: linear-gradient(45deg, #4e73df, #224abe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-overlay {
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
}

.animated-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.sphere-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #4e73df, #224abe);
    top: -150px;
    right: -150px;
}

.sphere-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #224abe, #4e73df);
    bottom: -100px;
    left: -100px;
}

.sphere-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #4e73df, #224abe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Cards */
.feature-card, .benefit-card, .solution-card, .industry-card, .testimonial-card {
    transition: transform 0.3s ease;
    background: white;
}

.feature-card:hover, .benefit-card:hover, .solution-card:hover, .industry-card:hover {
    transform: translateY(-5px);
}

/* Process Section */
.process-number {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.number-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #4e73df, #224abe);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

/* Testimonials */
.testimonial-card {
    background: white;
}

.testimonial-content {
    position: relative;
}

.testimonial-content i {
    opacity: 0.2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }
    
    .display-5 {
        font-size: 2.5rem;
    }
}

.industry-listing-section .industry-list {
    border-right: 1px solid #e3e6f0;
}

.industry-listing-section .nav-link.active {
    background: #fff !important;
    color: #224abe !important;
    border-radius: 8px;
}

.industry-listing-section .nav-link {
    color: #fff;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
} 