/* Skilloxy Branding & Color Scheme */

:root {
    /* Skilloxy Brand Colors - Modern Professional Palette */
    --skilloxy-primary: #4A90E2;      /* Professional Blue */
    --skilloxy-secondary: #50C878;    /* Success Green */
    --skilloxy-accent: #FF6B6B;       /* Vibrant Red/Pink */
    --skilloxy-warning: #FFA726;      /* Warning Orange */
    --skilloxy-purple: #9C27B0;       /* Creative Purple */
    --skilloxy-teal: #26A69A;         /* Tech Teal */
    
    /* Gradient Combinations */
    --skilloxy-gradient-primary: linear-gradient(135deg, #4A90E2 0%, #50C878 100%);
    --skilloxy-gradient-secondary: linear-gradient(135deg, #FF6B6B 0%, #FFA726 100%);
    --skilloxy-gradient-accent: linear-gradient(135deg, #9C27B0 0%, #4A90E2 100%);
    --skilloxy-gradient-hero: linear-gradient(135deg, #4A90E2 0%, #50C878 50%, #9C27B0 100%);
    
    /* Typography */
    --skilloxy-font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --skilloxy-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Neutral Colors */
    --skilloxy-dark: #2C3E50;
    --skilloxy-light: #ECF0F1;
    --skilloxy-gray: #7F8C8D;
    --skilloxy-white: #FFFFFF;
    
    /* Shadows */
    --skilloxy-shadow-soft: 0 4px 15px rgba(74, 144, 226, 0.15);
    --skilloxy-shadow-medium: 0 8px 25px rgba(74, 144, 226, 0.2);
    --skilloxy-shadow-strong: 0 15px 35px rgba(74, 144, 226, 0.25);
}

/* Global Typography Updates */
body {
    font-family: var(--skilloxy-font-primary);
    color: var(--skilloxy-dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--skilloxy-font-heading);
    font-weight: 700;
    color: var(--skilloxy-dark);
}

/* Button Styling Updates */
.btn-primary {
    background: var(--skilloxy-gradient-primary) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--skilloxy-shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--skilloxy-shadow-medium);
    background: linear-gradient(135deg, #3A7BC8 0%, #45B265 100%) !important;
}

.btn-warning {
    background: linear-gradient(135deg, #FFA726 0%, #FF8A65 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #FF9800 0%, #FF7043 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
}

/* Statistics Section */
.dashboard-stat {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--skilloxy-shadow-soft);
    transition: all 0.3s ease;
    border-top: 4px solid var(--skilloxy-primary);
}

.dashboard-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--skilloxy-shadow-medium);
    border-top-color: var(--skilloxy-secondary);
}

.dashboard-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--skilloxy-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.dashboard-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--skilloxy-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section Branding */
.hero-section {
    background: var(--skilloxy-gradient-hero) !important;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Top Header Bar */
.top-header-bar {
    background-color: #000000 !important;
    border-bottom: 2px solid var(--skilloxy-primary);
}

/* Navigation Enhancements */
.modern-navbar {
    background: white;
    box-shadow: 0 2px 20px rgba(74, 144, 226, 0.1);
    padding: 1rem 0;
}

.nav-link-enhanced:hover,
.nav-link-enhanced.active {
    color: var(--skilloxy-primary) !important;
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-1px);
}

/* Course Cards */
.course-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--skilloxy-shadow-strong);
    border-color: var(--skilloxy-primary);
}

.course-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--skilloxy-secondary);
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: var(--skilloxy-shadow-soft);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--skilloxy-shadow-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-stat-number {
        font-size: 2.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .card {
        border-radius: 15px;
    }
    
    .dashboard-stat {
        padding: 1.5rem;
    }
}

/* Testimonials Section Styling */
.testimonial-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--skilloxy-primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--skilloxy-shadow-strong);
}

.testimonial-card .card-body {
    position: relative;
    z-index: 2;
}

.testimonial-card .fst-italic {
    font-style: italic;
    color: var(--skilloxy-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-card .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
}

.testimonial-card .avatar-placeholder {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Success Statistics Animation */
.success-stats .h2 {
    background: var(--skilloxy-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Purple Color Class */
.text-purple {
    color: var(--skilloxy-purple) !important;
}

/* Enhanced Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(80, 200, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonial-card::before {
        font-size: 3rem;
        top: -5px;
        left: 10px;
    }
    
    .testimonial-card .fst-italic {
        font-size: 0.9rem;
    }
}

/* Hover Effects for Star Ratings */
.testimonial-card .text-warning i {
    transition: all 0.2s ease;
}

.testimonial-card:hover .text-warning i {
    transform: scale(1.1);
    color: #ffc107;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
}

/* Animation for testimonials on scroll */
@keyframes testimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: testimonialFadeIn 0.6s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

/* Reduce navigation spacing */
.navbar-nav .nav-item {
    margin-right: 5px;
}

.navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
}

/* Fix logo positioning */
.navbar-brand img {
}

.navbar-brand {
    margin-right: 1rem;
}


/* Force black top header */
.top-header-bar {
}

