/* Card Background Color Fixes for "What Makes Us" Section */

.ultra-card {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.95) 0%, rgba(20, 20, 40, 0.95) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(102, 126, 234, 0.1) !important;
}

.ultra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(236, 72, 153, 0.15) 100%) !important;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.ultra-card:hover::before {
    opacity: 1;
}

.ultra-card:hover {
    transform: translateY(-15px);
    border-color: rgba(99, 102, 241, 0.6) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(99, 102, 241, 0.3) !important;
    background: linear-gradient(135deg, rgba(40, 40, 80, 0.98) 0%, rgba(30, 30, 60, 0.98) 100%) !important;
}

/* Card Content Text Colors */
.ultra-card .advantage-title {
    color: #ffffff !important;
}

.ultra-card .advantage-description {
    color: rgba(255, 255, 255, 0.85) !important;
}

.ultra-card .advantage-category {
    color: rgba(255, 255, 255, 0.9) !important;
}

.ultra-card .number-text {
    color: rgba(102, 126, 234, 1) !important;
}

/* Expertise Meter Labels */
.ultra-card .meter-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

.ultra-card .meter-percentage {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Tech Stack Badges */
.ultra-card .tech-badge {
    background: rgba(102, 126, 234, 0.2) !important;
    color: #ffffff !important;
    border: 1px solid rgba(102, 126, 234, 0.4) !important;
}

/* Feature Rows */
.ultra-card .feature-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Innovation Metrics */
.ultra-card .metric-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

.ultra-card .metric-value {
    color: #ffffff !important;
}

/* Timeline */
.ultra-card .timeline-year {
    color: rgba(102, 126, 234, 1) !important;
}

.ultra-card .timeline-achievement {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Certifications */
.ultra-card .cert-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Quality Stats */
.ultra-card .stat-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Partnership Features */
.ultra-card .satisfaction-header {
    color: rgba(255, 255, 255, 0.85) !important;
}

.ultra-card .score-number {
    color: #ffffff !important;
}

.ultra-card .score-reviews {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Hologram Effect */
.card-hologram-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899, #6366f1);
    background-size: 400% 400%;
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: gradientShift 8s ease infinite;
}

.ultra-card:hover .card-hologram-effect {
    opacity: 0.2 !important;
}

/* Energy Field */
.card-energy-field {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ultra-card:hover .card-energy-field {
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ultra-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .ultra-card {
        padding: 25px 20px;
    }
}
