/* Ek Premium Stiller */

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Text Selection */
::selection {
    background: #e74c3c;
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1a1d29 0%, #2c3e50 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e74c3c;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hover Effects for Links */
a {
    transition: all 0.3s ease;
}

/* Input Focus Effects */
.form-control:focus,
.form-select:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.15);
}

/* Enhanced Shadows */
.shadow-premium {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Border */
.border-premium {
    border: 2px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Stats Counter */
.stat-counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
}

/* Image Overlay on Hover */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8) 0%, rgba(243, 156, 18, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-overlay:hover::after {
    opacity: 1;
}

/* Professional Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e74c3c 50%, transparent 100%);
    margin: 3rem 0;
}

/* Floating Animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Premium Table */
.table-premium {
    border-collapse: separate;
    border-spacing: 0;
}

.table-premium thead th {
    background: linear-gradient(135deg, #1a1d29 0%, #2c3e50 100%);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table-premium tbody tr {
    transition: all 0.3s ease;
}

.table-premium tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

