.shroder-home-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.shroder-home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-float {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
.stats-preview-card {
    background: white;
    border-radius: 20px;
    animation: fadeIn 1s ease-in 0.3s backwards;
}
.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.stat-item:hover {
    background: rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.stat-icon {
    font-size: 1.5rem;
}
.feature-card {
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.hover-lift {
    transition: all 0.3s ease;
}
.hover-lift:hover {
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}
.feature-icon {
    display: inline-block;
    padding: 1.5rem;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
}
.text-purple {
    color: #6f42c1 !important;
}
.bg-purple-subtle {
    background-color: rgba(111, 66, 193, 0.1) !important;
}
.bg-primary-subtle {
    background-color: rgba(13, 110, 253, 0.1) !important;
}
.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
}
.bg-danger-subtle {
    background-color: rgba(220, 53, 69, 0.1) !important;
}
.bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.1) !important;
}
.bg-info-subtle {
    background-color: rgba(13, 202, 240, 0.1) !important;
}
.management-dashboard .card {
    transition: all 0.3s ease;
}
.management-dashboard .card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}
.telemetry-stat-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.telemetry-stat-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.telemetry-stat-card .stat-icon {
    font-size: 2rem;
    opacity: 0.7;
}
.kpi-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}
.kpi-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.kpi-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}
.kpi-change {
    font-size: 0.875rem;
    font-weight: 600;
}
.subsystem-list .border-bottom:last-child {
    border-bottom: 0 !important;
}
.network-stats {
    max-height: 200px;
    overflow-y: auto;
}
.company-kpi-grid .row {
    margin: 0 -0.5rem;
}
.company-kpi-grid .col-md-6 {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .shroder-home-hero .display-3 {
        font-size: 2.5rem;
    }
    .stats-preview-card {
        margin-top: 2rem;
    }
    .kpi-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
.progress {
    background-color: rgba(0,0,0,0.1);
}
.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.02);
}
.card-header {
    font-weight: 600;
}
.badge {
    font-weight: 600;
    padding: 0.5em 0.75em;
}
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

