/* Custom Premium Design inspired by Modern EdTech (LeadsGuru style) */

:root {
    --primary-gradient: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    --secondary-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-5px);
    --text-dark: #1F2937;
    --text-light: #F9FAFB;
}

/* Glassmorphism Navbar */
header.navbar-sticky {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px !important;
    /* Slightly larger logo */
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4F46E5 !important;
}

/* Hero Section */
/* Assuming the hero section has a class or we target the first section */
section.position-relative.overflow-hidden.pt-5 {
    background: linear-gradient(180deg, #F3F4F6 0%, #FFFFFF 100%);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    /* Modern Font */
    color: #111827;
    letter-spacing: -0.02em;
}

.display-6 {
    font-weight: 800;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Primary Buttons */
.btn-primary,
.btn-dark {
    background: var(--primary-gradient) !important;
    border: none !important;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover,
.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
}

/* Cards (Courses & Features) */
.card,
.bg-body {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 16px !important;
    box-shadow: var(--card-shadow) !important;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover,
.bg-body:hover {
    transform: var(--hover-transform);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Course Card Specifics */
.course-card img {
    border-radius: 16px 16px 0 0;
    height: 148px;
    object-fit: contain;
}

.course-card-body h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Counter Section */
.bg-opacity-15 {
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

/* Features/Upcoming Products */
.bg-primary.bg-opacity-10 {
    background: #EEF2FF !important;
    /* Lighter indigo */
    border-radius: 20px !important;
    padding: 1.5rem !important;
}



/* Shapes & Decorations */
.fill-warning {
    fill: #FBBF24;
}

.fill-primary {
    fill: #4F46E5;
}

.fill-success {
    fill: #10B981;
}

/* Micro-animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-element {
    animation: float 4s ease-in-out infinite;
}

/* Badge Updates */
.badge {
    border-radius: 6px;
    font-weight: 600;
}