html {
    scroll-behavior: smooth;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* ===== UTILITY CLASSES ===== */

button {
    border: 0;
    outline: none;
}

.min-h-screen {
    min-height: 100vh;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.pointer-events-none {
    pointer-events: none;
}

.block {
    display: block;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-auto {
    height: auto;
}

/* Container */
.container,
.max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== POSITIONING ===== */
.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.left-2 {
    left: 0.5rem;
}

.right-2 {
    right: 0.5rem;
}

.top-1\/2 {
    top: 50%;
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.-top-1 {
    top: -0.25rem;
}

.-right-1 {
    right: -0.25rem;
}

.-bottom-1 {
    bottom: -0.25rem;
}

.-left-1 {
    left: -0.25rem;
}

/* Z-index */
.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-50 {
    z-index: 50;
}

/* ===== SIZING ===== */
/* Width */
.w-2 {
    width: 0.5rem;
}

.w-3 {
    width: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-7 {
    width: 1.75rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-24 {
    width: 6rem;
}

.w-32 {
    width: 8rem;
}

.w-40 {
    width: 10rem;
}

.w-max {
    width: max-content;
}

/* Height */
.h-2 {
    height: 0.5rem;
}

.h-3 {
    height: 0.75rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-7 {
    height: 1.75rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-24 {
    height: 6rem;
}

.h-32 {
    height: 8rem;
}

.h-40 {
    height: 10rem;
}



/* ===== SPACING ===== */
/* Padding */
.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

/* Margin */
.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* Gap & Space */
.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.space-x-3>*+* {
    margin-left: 0.75rem;
}

.space-x-4>*+* {
    margin-left: 1rem;
}

.space-x-6>*+* {
    margin-left: 1.5rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

/* ===== FLEXBOX & GRID ===== */
.flex-1 {
    flex: 1 1 0%;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* ===== TYPOGRAPHY ===== */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.leading-6 {
    line-height: 1.5rem;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.line-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

/* ===== COLORS ===== */
/* Text Colors */
.text-white {
    color: #ffffff;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-900 {
    color: #111827;
}

.text-blue-600 {
    color: #2563eb;
}

.text-blue-800 {
    color: #1e40af;
}

.text-blue-900 {
    color: #1e3a8a;
}

.text-purple-600 {
    color: #9333ea;
}

.text-purple-700 {
    color: #7c3aed;
}

.text-green-600 {
    color: #16a34a;
}

.text-green-700 {
    color: #15803d;
}

.text-orange-600 {
    color: #ea580c;
}

.text-yellow-800 {
    color: #92400e;
}

.text-yellow-900 {
    color: #78350f;
}

.text-cyan-200 {
    color: #a5f3fc;
}

.text-cyan-300 {
    color: #67e8f9;
}

.text-green-200 {
    color: #bbf7d0;
}

.text-green-300 {
    color: #86efac;
}

.text-purple-200 {
    color: #e9d5ff;
}

.text-purple-300 {
    color: #d8b4fe;
}

.text-orange-200 {
    color: #fed7aa;
}

.text-orange-300 {
    color: #fdba74;
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

/* Background Colors */
.bg-white {
    background-color: #ffffff;
}

.bg-transparent {
    background-color: transparent;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-600 {
    background-color: #4b5563;
}

.bg-gray-700 {
    background-color: #374151;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.bg-purple-100 {
    background-color: #ede9fe;
}

.bg-purple-200 {
    background-color: #ddd6fe;
}

.bg-purple-500 {
    background-color: #8b5cf6;
}

.bg-purple-600 {
    background-color: #7c3aed;
}

.bg-purple-700 {
    background-color: #6d28d9;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-green-500 {
    background-color: #10b981;
}

.bg-pink-100 {
    background-color: #fce7f3;
}

.bg-pink-500 {
    background-color: #ec4899;
}

.bg-indigo-500 {
    background-color: #6366f1;
}

.bg-orange-500 {
    background-color: #f97316;
}

.bg-yellow-400 {
    background-color: #facc15;
}

.bg-yellow-500 {
    background-color: #eab308;
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-white\/60 {
    background-color: rgba(255, 255, 255, 0.6);
}

.bg-white\/80 {
    background-color: rgba(255, 255, 255, 0.8);
}

.bg-white\/90 {
    background-color: rgba(255, 255, 255, 0.9);
}

/* ===== GRADIENTS ===== */
.bg-gradient-to-r {
    background: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-gray-50 {
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.to-white {
    --tw-gradient-to: #ffffff;
}

.from-indigo-50 {
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
}

.via-purple-50 {
    --tw-gradient-stops: var(--tw-gradient-from), #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0));
}

.to-pink-50 {
    --tw-gradient-to: #fdf2f8;
}

.from-blue-50 {
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-indigo-50 {
    --tw-gradient-to: #eef2ff;
}

.to-cyan-50 {
    --tw-gradient-to: #ecfeff;
}

.from-purple-50 {
    --tw-gradient-from: #faf5ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0));
}

.from-green-50 {
    --tw-gradient-from: #f0fdf4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 253, 244, 0));
}

.to-emerald-50 {
    --tw-gradient-to: #ecfdf5;
}

.from-orange-50 {
    --tw-gradient-from: #fff7ed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 247, 237, 0));
}

.to-yellow-50 {
    --tw-gradient-to: #fefce8;
}

.from-yellow-50 {
    --tw-gradient-from: #fefce8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 232, 0));
}

.to-orange-50 {
    --tw-gradient-to: #fff7ed;
}

.from-purple-500 {
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
}

.from-purple-600 {
    --tw-gradient-from: #9333ea;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0));
}

.to-blue-500 {
    --tw-gradient-to: #3b82f6;
}

.to-blue-600 {
    --tw-gradient-to: #2563eb;
}

.from-green-500 {
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
}

.to-emerald-500 {
    --tw-gradient-to: #059669;
}

.from-purple-400 {
    --tw-gradient-from: #a855f7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0));
}

.to-blue-400 {
    --tw-gradient-to: #60a5fa;
}

.from-blue-400 {
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.to-purple-400 {
    --tw-gradient-to: #a855f7;
}

.from-pink-600 {
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
}

.to-pink-400 {
    --tw-gradient-to: #f472b6;
}

.from-white\/90 {
    --tw-gradient-from: rgba(255, 255, 255, 0.9);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.via-white\/60 {
    --tw-gradient-to: rgba(255, 255, 255, 0.6);
    --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 255, 255, 0.6), var(--tw-gradient-to, rgba(255, 255, 255, 0.6));
}

.to-transparent {
    --tw-gradient-to: transparent;
}

.from-purple-100 {
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
}

.via-blue-100 {
    --tw-gradient-to: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
}

.to-indigo-100 {
    --tw-gradient-to: #e0e7ff;
}

.from-purple-600\/10 {
    --tw-gradient-from: rgba(147, 51, 234, 0.1);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0));
}

.to-blue-600\/10 {
    --tw-gradient-to: rgba(37, 99, 235, 0.1);
}

/* Text Gradients */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* ===== BORDERS ===== */
.border {
    border-width: 1px;
}

.border-0 {
    border-width: 0px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top-width: 1px;
}

.border-white {
    border-color: #ffffff;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-800 {
    border-color: #1f2937;
}

.border-blue-200 {
    border-color: #bfdbfe;
}

.border-purple-100 {
    border-color: #f3e8ff;
}

.border-purple-200 {
    border-color: #e9d5ff;
}

.border-purple-200\/50 {
    border-color: rgba(196, 181, 253, 0.5);
}

.border-purple-400 {
    border-color: #a855f7;
}

.border-green-200 {
    border-color: #bbf7d0;
}

.border-green-400 {
    border-color: #4ade80;
}

.border-yellow-200 {
    border-color: #fde68a;
}

.border-orange-400 {
    border-color: #fb923c;
}

.border-cyan-400 {
    border-color: #22d3ee;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-l-3xl {
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}

.rounded-r-3xl {
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

/* ===== SHADOWS & EFFECTS ===== */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.blur-xl {
    filter: blur(24px);
}

/* ===== TRANSFORMS & ANIMATIONS ===== */
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-3 {
    --tw-rotate: 3deg;
}

.-rotate-3 {
    --tw-rotate: -3deg;
}

.rotate-180 {
    --tw-rotate: 180deg;
}

.-translate-y-10 {
    --tw-translate-y: -40px;
}

.translate-x-10 {
    --tw-translate-x: 40px;
}

.translate-y-10 {
    --tw-translate-y: 40px;
}

.-translate-x-10 {
    --tw-translate-x: -40px;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.delay-1000 {
    animation-delay: 1000ms;
}

/* Opacity */
.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

/* Animation */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* ===== HOVER STATES ===== */
.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
}

.hover\:scale-110:hover {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
}

.hover\:-translate-y-1:hover {
    --tw-translate-y: -0.25rem;
}

.hover\:-translate-y-2:hover {
    --tw-translate-y: -8px;
}

.hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}

.hover\:bg-gray-600:hover {
    background-color: #4b5563;
}

.hover\:bg-purple-200:hover {
    background-color: #ddd6fe;
}

.hover\:bg-purple-700:hover {
    background-color: #6d28d9;
}

.hover\:bg-white\/50:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:text-cyan-100:hover {
    color: #cffafe;
}

.hover\:text-green-100:hover {
    color: #dcfce7;
}

.hover\:text-purple-100:hover {
    color: #f3e8ff;
}

.hover\:text-orange-100:hover {
    color: #ffedd5;
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:shadow-cyan-500\/30:hover {
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.3), 0 10px 10px -5px rgba(6, 182, 212, 0.1);
}

.hover\:shadow-green-500\/30:hover {
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.3), 0 10px 10px -5px rgba(34, 197, 94, 0.1);
}

.hover\:shadow-purple-500\/30:hover {
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.3), 0 10px 10px -5px rgba(168, 85, 247, 0.1);
}

.hover\:shadow-orange-500\/30:hover {
    box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.3), 0 10px 10px -5px rgba(249, 115, 22, 0.1);
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.group:hover .group-hover\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* ===== COMPONENT STYLES ===== */

.navbar-nav .nav-link {
    font-size: 16px;
    color: #fff;
}



.navbar-nav .nav-link.active {
    color: #ffffff;
    border-bottom: solid 2px #fbbf24;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #581c87 0%, #1e40af 50%, #312e81 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(88, 28, 135, 0.5) 0%, rgba(30, 64, 175, 0.5) 100%);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.decoration-1 {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.decoration-2 {
    position: absolute;
    top: 160px;
    right: 80px;
    width: 96px;
    height: 96px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.decoration-3 {
    position: absolute;
    bottom: 80px;
    left: 25%;
    width: 160px;
    height: 160px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(88, 28, 135, 0.95) 0%, rgba(30, 64, 175, 0.95) 50%, rgba(49, 46, 129, 0.95) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}




.brand-name {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.nav-link:hover {
    color: white;
}

.mobile-menu-btn {
    display: block;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(88, 28, 135, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 50;
    padding: 24px;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-item {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
    width: 100%;
    text-align: left;
}

.mobile-menu-item:hover {
    color: white;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 16px;
    padding-top: 96px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.hero-text {
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    padding: 0 8px;
}

.hero-title-gradient {
    background: linear-gradient(90deg, #fbbf24 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 16px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    padding: 0 16px;
}

/* Buttons */
.btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fbbf24;
    color: black;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #fcd34d;
    transform: scale(1.05);
}

.btn-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #7c3aed;
    color: white;
}

.btn-primary:hover {
    background-color: #6d28d9;
}

/* Achievement Badge */
.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 48px;
    margin-left: 16px;
    margin-right: 16px;
}

.achievement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fbbf24;
    border-radius: 12px;
    font-size: 18px;
}

.achievement-text {
    text-align: left;
}

.achievement-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.achievement-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* DSA Section */
.dsa-section {
    padding: 48px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 50%, #f3e8ff 100%);
    overflow: hidden;
}

.dsa-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.dsa-header {
    text-align: center;
    margin-bottom: 64px;
}

.title {
    font-size: 32px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
    padding: 0 16px;
}

.title.text-white,
.subtitle.text-white {
    color: #ffffff;
}

.subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 24px;
    padding: 0 16px;
}

.author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    padding: 0 16px;
}

.author-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e0e7ff;
    max-width: 384px;
    margin: 0 auto;
}

.author-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c7d2fe;
}

.author-info {
    flex: 1;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.author-name {
    font-weight: bold;
    color: #1f2937;
    font-size: 18px;
}

.linkedin-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2563eb;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.linkedin-link:hover {
    background: #1d4ed8;
}

.author-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    text-align: left;
}

.dsa-description {
    font-size: 16px;
    color: #4b5563;
    max-width: 1536px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 16px;
}

/* Table Styles */
.table-container {
    max-width: 1536px;
    margin: 0 auto;
}

.table-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid #e0e7ff;
    overflow: hidden;
}

.table-header {
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
    padding: 24px;
}

.table-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.table-scroll {
    overflow-x: auto;
}

.courses-table {
    width: 100%;
    border-collapse: collapse;
}

.table-thead {
    background: linear-gradient(90deg, #eef2ff 0%, #f3e8ff 100%);
}

.table-th {
    padding: 16px 24px;
    text-align: left;
    font-weight: bold;
    color: #1f2937;
    border-bottom: 2px solid #c7d2fe;
}

.table-th.center {
    text-align: center;
}

.table-tr {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.table-tr:hover {
    background: #f9fafb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.table-tr.featured {
    background: linear-gradient(90deg, #fef3c7 0%, #fed7aa 50%, #fecaca 100%);
}

.table-tr.featured:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.table-td {
    padding: 16px 24px;
}

.table-td.center {
    text-align: center;
}

.rank-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rank-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: white;
}

.rank-1 {
    background: linear-gradient(135deg, #fbbf24 0%, #fb923c 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.rank-other {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.course-info {
    display: flex;
    flex-direction: column;
}

.course-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-name {
    font-weight: bold;
    color: #1f2937;
}

.best-choice-badge {
    padding: 4px 8px;
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.course-description {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.duration {
    font-weight: 600;
    color: #374151;
}

.price {
    font-size: 18px;
    font-weight: bold;
}

.price-featured {
    color: #059669;
}

.price-normal {
    color: #7c3aed;
}

.view-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.view-btn:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

button[disabled] {
    background: #ccc;
    color: #666;
    border: 1px solid #aaa;
}

.view-btn-gray {
    background: #4b5563;
}

.view-btn-gray:hover {
    background: #374151;
}

.view-btn-2 {
    border: solid 1px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 8px;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #a855f7, #9333ea) border-box;
}

.table-footer {
    background: linear-gradient(90deg, #eef2ff 0%, #f3e8ff 100%);
    padding: 16px 24px;
    border-top: 2px solid #c7d2fe;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.footer-text {
    font-size: 14px;
    color: #4b5563;
}

.updated-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #34d399;
    border-radius: 50%;
}

/* Icons */
.icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-lg {
    width: 20px;
    height: 20px;
}

.icon-sm {
    width: 0.75rem;
    height: 0.75rem;
    fill: currentColor;
}

/* Tab System */
.tabs-container {
    overflow: hidden;
    padding-left: 2rem;
    padding-right: 2rem;
}

.tabs-list {
    display: flex;
    width: max-content;
    height: auto;
    gap: 0.25rem;
    background: transparent;
    transition: transform 300ms ease-out;
}

.tab-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    transition: all 300ms;
    min-height: 0;
    white-space: nowrap;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.tab-trigger:hover {
    background-color: #f9fafb;
}

.tab-trigger.active {
    background: linear-gradient(to right, #8b5cf6, #3b82f6);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tab-trigger.active .tab-number .text-white {
    color: #000000 !important;
}

.tab-content {
    margin-top: 1.5rem;
    display: none;
}

.tab-content.active {
    display: block;
}

.nested-tabs {
    width: 100%;
}

.nested-tab-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: transparent;
    border-radius: 1rem;
    padding: 0;
    height: auto;
    gap: 0.25rem;
}

@media (max-width:1024px) {
    .nested-tab-list .bg-gradient-to-r {
        display: none;
    }
}

.nested-tab-trigger {
    position: relative;
    padding: 1rem;
    border-radius: 1rem;
    transition: all 300ms;
    background: transparent;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    font-family: inherit;
}

.nested-tab-trigger:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.nested-tab-trigger.active {
    background: linear-gradient(to right, #9333ea, #2563eb);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nested-tab-content {
    margin-top: 2rem;
    display: none;
}

.nested-tab-content.active {
    display: block;
}

/* Company Card */
.company-card {
    position: relative;
}

.company-card:hover .company-card-content {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-0.25rem);
}

.company-card-content {
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 300ms;
    border: 1px solid #e5e7eb;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tab-number {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    transition: all 300ms ease;
}

.tab-trigger.active .tab-number {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: #9333ea !important;
}

.btn-scroll {
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    border: 2px solid white;
    backdrop-filter: blur(4px);
    transition: all 300ms ease;
}

.btn-scroll:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #1d4ed8 100%);
    transform: scale(1.1);
}

/* Salary Slider */
.salary-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(to right, #e5e7eb 0%, #e5e7eb 100%);
    outline: none;
    cursor: pointer;
}

.salary-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.salary-slider::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    -moz-appearance: none;
}

/* Badges */
.badge {
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border: 1px solid;
}

.badge-green {
    background-color: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
    border-color: #bfdbfe;
}

.badge-purple {
    background-color: #f3e8ff;
    color: #7c3aed;
    border-color: #c4b5fd;
}

.badge-orange {
    background-color: #fed7aa;
    color: #c2410c;
    border-color: #fdba74;
}

.badge-red {
    background-color: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
}

.badge-gray {
    background-color: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}

/* Difficulty Classes */
.difficulty-beginner {
    background-color: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.difficulty-all-levels {
    background-color: #f3f4f6;
    color: #1f2937;
    border-color: #e5e7eb;
}

.difficulty-career-change {
    background-color: #fce7f3;
    color: #be185d;
    border-color: #f9a8d4;
}

/* Bullet Points */
.bullet-point {
    width: 0.375rem;
    height: 0.375rem;
    background-color: #8b5cf6;
    border-radius: 50%;
    margin-top: 0.5rem;
}

.bullet-point-yellow {
    width: 0.375rem;
    height: 0.375rem;
    background-color: #eab308;
    border-radius: 50%;
    margin-top: 0.5rem;
}

/* FAQ Styles */
.faq-content {
    display: none;
}

.faq-content.expanded {
    display: block;
}

.chevron-down {
    transition: transform 0.2s ease;
}

.chevron-down.rotated {
    transform: rotate(180deg);
}

/* Success Stories Section */
.success-stories {
    padding: 48px 0 80px;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(251, 146, 60, 0.3) 100%);
    border-radius: 50%;
    transform: translate(64px, -80px);
}

.success-stories::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 192px;
    height: 192px;
    background: linear-gradient(135deg, rgba(254, 240, 138, 0.3) 0%, rgba(251, 191, 36, 0.3) 100%);
    border-radius: 50%;
    transform: translate(-64px, 80px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    padding: 0 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #374151;
    max-width: 896px;
    margin: 0 auto;
    padding: 0 16px;
    margin-bottom: 64px;
}


.story-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid #fef3c7;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card:hover {
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.35);
    transform: translateY(-8px);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.story-avatar-container {
    position: relative;
}

.story-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fef3c7;
}

.verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    color: white;
    font-size: 12px;
}

.story-info {
    flex: 1;
}

.story-name {
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.story-role {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.verified-tag {
    display: inline-block;
    padding: 4px 8px;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    border-radius: 20px;
}

.story-quote {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.story-metrics {
    background: linear-gradient(90deg, #ecfdf5, #d1fae5);
    border-radius: 12px;
    padding: 16px;
    border: 2px solid #bbf7d0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

.metric-label {
    font-size: 12px;
    color: #6b7280;
}

.metric-details {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.metric-company {
    font-size: 12px;
    color: #6b7280;
}

/* Rankings Section */
.rankings-section {
    padding: 48px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}



.rankings-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.rankings-bg-decoration::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.rankings-bg-decoration::after {
    content: '';
    position: absolute;
    top: 160px;
    right: 80px;
    width: 96px;
    height: 96px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.rankings-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    padding: 0 16px;
}

.rankings-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 896px;
    margin: 0 auto;
    padding: 0 16px;
    margin-bottom: 64px;
}



.rank-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid white;
    z-index: 30;
    transition: transform 0.3s ease;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.course-card:hover .rank-badge {
    transform: scale(1.1);
}

.course-card-inner {
    background: linear-gradient(135deg, #0f172a 0%, #374151 50%, #1f2937 100%);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(107, 114, 128, 0.5);
    transition: all 0.5s ease;
    height: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    overflow: hidden;
    position: relative;
}

.course-card:hover .course-card-inner {
    border-color: rgba(147, 51, 234, 0.5);
    transform: translateY(-12px);
    box-shadow: 0 32px 64px -12px rgba(147, 51, 234, 0.25);
}

.course-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, transparent 50%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.course-card:hover .course-card-glow {
    opacity: 1;
}

.course-card-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    transition: opacity 0.5s ease;
}

.course-card:hover .course-card-bg-pattern {
    opacity: 0.1;
}

.course-card-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, transparent 50%, rgba(59, 130, 246, 0.2) 100%);
    transform: rotate(12deg) scale(1.5);
}

.course-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.course-indicator {
    width: 80px;
    height: 12px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899, #3b82f6);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.course-card:hover .course-indicator {
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.5);
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
    backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    fill: currentColor;
}

.rating-value {
    font-weight: 700;
    color: #fed7aa;
}

.course-content {
    position: relative;
    z-index: 10;
}

.course-title {
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.course-card:hover .course-title {
    color: #c084fc;
}

.course-provider-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.provider-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.course-card:hover .provider-dot {
    box-shadow: 0 2px 4px rgba(168, 85, 247, 0.5);
}

.course-provider {
    color: #d1d5db;
    font-weight: 500;
}

.course-description {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.course-card:hover .course-description {
    color: #d1d5db;
}

.course-pricing {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.8), rgba(55, 65, 81, 0.8));
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(75, 85, 99, 0.5);
    transition: all 0.3s ease;
}

.course-card:hover .course-pricing {
    border-color: rgba(147, 51, 234, 0.3);
}

.pricing-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.duration-value {
    font-weight: 600;
    color: white;
    text-align: right;
}

.duration-label {
    font-size: 12px;
    color: #6b7280;
}

.course-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(75, 85, 99, 0.4);
    text-align: center;
    transition: all 0.3s ease;
}

.course-card:hover .feature-item:first-child {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(147, 51, 234, 0.3);
}

.course-card:hover .feature-item:last-child {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-label {
    font-size: 12px;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 4px;
}

.feature-value {
    font-size: 12px;
    font-weight: 500;
}

.feature-value.format {
    color: #a855f7;
}

.feature-value.highlight {
    color: #3b82f6;
}

.course-tags {
    margin-bottom: 24px;
}

.tags-section {
    margin-bottom: 16px;
}

.tags-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.tag-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tag-dot.strengths {
    background: #10b981;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.5);
}

.tag-dot.considerations {
    background: #f59e0b;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.5);
}

.tags-title {
    font-size: 12px;
    font-weight: 700;
    color: #e5e7eb;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.tag.strength {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tag.consideration {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.course-cta {
    width: 100%;
    background: linear-gradient(90deg, #9333ea, #8b5cf6, #3b82f6);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.course-cta:hover {
    background: linear-gradient(90deg, #7c3aed, #7c3aed, #2563eb);
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.5);
}

.course-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%) skewX(-12deg);
    transition: transform 1s ease;
}

.course-cta:hover::before {
    transform: translateX(100%) skewX(-12deg);
}

.cta-text {
    position: relative;
}

/* Custom Gradient Backgrounds */
.bg-gradient-salary {
    background: linear-gradient(to bottom right, #e0e7ff, #f3e8ff, #fce7f3);
}

.bg-gradient-market {
    background: linear-gradient(to bottom right, #0f172a, #581c87, #0f172a);
}

.bg-gradient-overlay {
    background: linear-gradient(to right, rgba(88, 28, 135, 0.5), rgba(30, 58, 138, 0.5));
}

.bg-market-card-1 {
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(16px);
}

.bg-purple-gradient {
    background: linear-gradient(to right, #faf5ff, #f3e8ff);
}

.bg-pink-gradient {
    background: linear-gradient(to right, #f3e8ff, #fce7f3);
}

.bg-green-gradient {
    background: linear-gradient(to bottom right, #f0fdf4, #ecfdf5);
}

.bg-yellow-gradient {
    background: linear-gradient(to right, #fffbeb, #fef3c7);
}

/* Text Gradients */
.text-gradient-cyan {
    background: linear-gradient(to right, #67e8f9, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-green {
    background: linear-gradient(to right, #86efac, #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: linear-gradient(to right, #d8b4fe, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-orange {
    background: linear-gradient(to right, #fed7aa, #fef3c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-salary {
    background: linear-gradient(to right, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Icon Backgrounds */
.icon-bg-cyan {
    background: linear-gradient(to bottom right, #06b6d4, #3b82f6);
}

.icon-bg-green {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.icon-bg-purple {
    background: linear-gradient(to bottom right, #8b5cf6, #ec4899);
}

.icon-bg-orange {
    background: linear-gradient(to bottom right, #f59e0b, #eab308);
}

.icon-bg-salary {
    background: linear-gradient(to bottom right, #8b5cf6, #ec4899);
}

/* Specific border opacity */
.border-opacity-30 {
    border-color: rgba(34, 211, 238, 0.3);
}

/* Min width utility */
.min-w-0 {
    min-width: 0px;
}

/* Object fit */
.object-contain {
    object-fit: contain;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 640px) {
    .sm\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:mb-16 {
        margin-bottom: 4rem;
    }

    .sm\:mb-12 {
        margin-bottom: 3rem;
    }

    .sm\:mb-8 {
        margin-bottom: 2rem;
    }

    .sm\:mb-6 {
        margin-bottom: 1.5rem;
    }

    .sm\:mb-4 {
        margin-bottom: 1rem;
    }

    .sm\:mb-3 {
        margin-bottom: 0.75rem;
    }

    .sm\:mt-8 {
        margin-top: 2rem;
    }

    .sm\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .sm\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .sm\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .sm\:text-xs {
        font-size: 0.75rem;
        line-height: 1rem;
    }

    .sm\:p-6 {
        padding: 1.5rem;
    }

    .sm\:p-4 {
        padding: 1rem;
    }

    .sm\:p-2 {
        padding: 0.5rem;
    }

    .sm\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .sm\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .sm\:rounded-3xl {
        border-radius: 1.5rem;
    }

    .sm\:rounded-2xl {
        border-radius: 1rem;
    }

    .sm\:rounded-xl {
        border-radius: 0.75rem;
    }

    .sm\:border-2 {
        border-width: 2px;
    }

    .sm\:w-10 {
        width: 2.5rem;
    }

    .sm\:h-10 {
        height: 2.5rem;
    }

    .sm\:w-7 {
        width: 1.75rem;
    }

    .sm\:h-7 {
        height: 1.75rem;
    }

    .sm\:w-6 {
        width: 1.5rem;
    }

    .sm\:h-6 {
        height: 1.5rem;
    }

    .sm\:w-5 {
        width: 1.25rem;
    }

    .sm\:h-5 {
        height: 1.25rem;
    }

    .sm\:h-4 {
        height: 1rem;
    }

    .sm\:space-x-4>*+* {
        margin-left: 1rem;
    }

    .sm\:space-x-3>*+* {
        margin-left: 0.75rem;
    }

    .sm\:space-x-2>*+* {
        margin-left: 0.5rem;
    }

    .sm\:space-y-6>*+* {
        margin-top: 1.5rem;
    }

    .sm\:gap-4 {
        gap: 1rem;
    }

    .sm\:gap-3 {
        gap: 0.75rem;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        font-size: 16px;
        padding: 16px 32px;
    }

    .achievement-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .achievement-title {
        font-size: 16px;
    }

    .achievement-subtitle {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 14px;
    }

    .dsa-section {
        padding: 64px 0;
    }

    .title {
        font-size: 48px;
    }

    .table-title {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: row;
    }

    .tabs-container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (min-width: 768px) {
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:space-y-0>*+* {
        margin-top: 0;
    }

    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 20px;
    }


}

@media (min-width: 1024px) {
    .lg\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .lg\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .lg\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .lg\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .lg\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .lg\:p-8 {
        padding: 2rem;
    }

    .lg\:gap-8 {
        gap: 2rem;
    }

    .lg\:gap-4 {
        gap: 1rem;
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:gap-12 {
        gap: 3rem;
    }

    .hero-title {
        font-size: 80px;
    }

    .nav-desktop {
        gap: 32px;
    }

    .nav-link {
        font-size: 16px;
    }

}

@media (min-width: 1280px) {
    .xl\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

}

/* ===== MOBILE RESPONSIVE OVERRIDES ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .rankings-title {
        font-size: 2rem;
    }



}

@media (max-width: 640px) {
    .success-stories {
        padding: 32px 0 48px;
    }

    .rankings-section {
        padding: 32px 0 48px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .rankings-title {
        font-size: 1.5rem;
    }

    .section-subtitle,
    .rankings-subtitle {
        font-size: 1rem;
        margin-bottom: 48px;
    }

    .success-stories::before {
        width: 192px;
        height: 192px;
        transform: translate(32px, -64px);
    }

    .success-stories::after {
        width: 144px;
        height: 144px;
        transform: translate(-32px, 64px);
    }
}

/* carousel start */


.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;

}

.carousel-header {
    text-align: center;
    margin-bottom: 30px;
}

.carousel-header h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 10px;
}

.carousel-blk {
    flex: 0 0 calc(33.333% - 14px);
    background: linear-gradient(135deg, #0b1120, #1e2a47);
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}



.carousel-blk:hover {
    transform: scale(1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.carousel-blk h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.carousel-blk p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.carousel-blk .item-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.carousel-indicate {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.indicator.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.3);
}

.carousel-info {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-blk {
        flex: 0 0 calc(50% - 10px);
    }

}

@media (max-width: 480px) {
    .carousel-blk {
        flex: 0 0 calc(100% - 0px);
    }


    .carousel-header h2 {
        font-size: 2rem;
    }
}

/* carousel end */



/* modal css start */


/* Modal styles */
.modal-overlay {
    position: fixed;
    z-index: 55;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal {
    background: white;
    width: 60%;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    animation: scaleIn 0.3s ease-out;
    overflow-y: auto;
}

@media (max-width:768px){
    .modal { 
    width:100%; 
}
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.show {
    display: flex;
}


/* modal css end */

/* steps css start */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-buttons {
    margin-top: 20px;
}

.wizard-option {
    cursor: pointer;
}

.wizard-option.selected .crd,
.simple-option.selected .crd {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #a855f7, #9333ea) border-box;
}

.wizard-summary {
    margin-top: 20px;
    font-weight: bold;
}

#wizard-restartBtn {
    display: none;
    margin-top: 10px;
}

/* steps css end */


/* compare course modal start */
.simple-step {
    display: none;
}

.simple-step.active {
    display: block;
}

.simple-option {
    cursor: pointer;
}

.simple-static-content {
    margin-top: 20px;
    font-weight: bold;
}

/* compare course modal end */


/* nav menu css start */

.logo {
    font-size: 30px;
}

.menu-icon {
    display: none;
}

@media (max-width:1280px) {
    .navbar-nav {
        display: none;
        position: fixed;
        background: #302f84;
        width: 100%;
        height:440px;
        left: 0;
        right: 0;
        top: 75px;
        bottom: 0;
        overflow-y: scroll;
    }

    .navbar-nav .flex {
        display: block !important;
    }

    .navbar-nav .flex .nav-link {
        display: block !important;
        padding:8px 24px !important;
        margin: 0 !important;
    
    }

    .navbar-nav.open {
        display: block;
    }

    .logo {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .menu-icon {
        display: block;
    }


}

/* nav menu css end */