/* Premium Dark Theme for AIKEY-SOFT */

/* Glassmorphism Effects */
.glass {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Premium Card Effects */
.feature-card,
.service-card,
.mission-card,
.vision-card,
.hero-feature-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(249, 115, 22, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.service-card::before,
.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.feature-card:hover::before,
.service-card:hover::before,
.mission-card:hover::before,
.vision-card:hover::before {
    left: 100%;
}

/* Glowing Effects */
.glow-border {
    box-shadow: 
        0 0 20px rgba(249, 115, 22, 0.3),
        0 0 40px rgba(249, 115, 22, 0.1),
        inset 0 0 20px rgba(249, 115, 22, 0.05);
}

.feature-card:hover,
.service-card:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(249, 115, 22, 0.4),
        0 0 60px rgba(249, 115, 22, 0.2);
    transform: translateY(-15px) scale(1.02);
}

/* Premium Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.btn-secondary:hover {
    background: #f97316;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.5);
}

/* Premium Icons */
.feature-icon,
.hero-feature-icon {
    position: relative;
}

.feature-icon::before,
.hero-feature-icon::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before,
.hero-feature-card:hover .hero-feature-icon::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

/* Text Gradients */
.gradient-text {
    background: linear-gradient(135deg, #1e3a8a 0%, #f97316 50%, #1e3a8a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
    to {
        background-position: 200% center;
    }
}

/* Premium Shadows */
.card-shadow {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Animated Background Orbs */
.orb-1,
.orb-2,
.orb-3 {
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    animation-delay: 0s;
}

.orb-2 {
    animation-delay: -7s;
}

.orb-3 {
    animation-delay: -14s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Premium Navbar */
.navbar {
    background: #0f172a !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000 !important;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98) !important;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.nav-wrapper {
    background: transparent;
}

/* Stats Section Premium */
.stats {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.2), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.2), transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.stat-icon {
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

/* Hero Features Premium */
.hero-feature-card {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    position: relative;
}

.hero-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent 70%);
    transition: all 0.5s ease;
}

.hero-feature-card:hover::after {
    top: -20%;
    right: -20%;
}

/* Premium Form Inputs */
.form-group input,
.form-group textarea {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    background: rgba(15, 23, 42, 1);
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f97316, #1e3a8a);
}

/* Premium Selection */
::selection {
    background: rgba(249, 115, 22, 0.3);
    color: #fff;
}

/* Carousel Premium */
.feature-card.active {
    box-shadow: 
        0 0 40px rgba(249, 115, 22, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.indicator.active {
    background: linear-gradient(135deg, #f97316, #1e3a8a);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

/* Page Header Premium */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.2), transparent 50%);
    animation: float 10s ease-in-out infinite;
}

/* Premium Footer */
.footer {
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.footer-logo img {
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.5));
}

/* Premium Contact Icons */
.contact-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-item:hover .contact-icon::before {
    width: 120%;
    height: 120%;
}

/* Premium Services */
.service-card.featured {
    border: 2px solid #f97316;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 
        0 0 40px rgba(249, 115, 22, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

.badge {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
    animation: pulse 2s infinite;
}

/* Premium Animations */
@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-slide-in {
    animation: slideInFade 0.8s ease-out;
}

/* Premium Loading Effect */
.skeleton-loader {
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to {
        background-position: 200% 0;
    }
}

/* Responsive Premium Adjustments */
@media (max-width: 768px) {
    .feature-card:hover,
    .service-card:hover {
        transform: translateY(-8px) scale(1);
    }
}

/* Premium Focus States */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}
