
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #FF5F15;
            --secondary-orange: #FFA802;
            --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            --bg-dark: #0d163e;
            --text-light: #ffffff;
            --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
            --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
            --border-orange: rgba(255, 95, 21, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            line-height: 1.6;
            background: var(--bg-dark);
            color: var(--text-light);
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .container-fluid {
            max-width: 1850px;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            font-weight: 700;
            color: white;
        }

        h3 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            line-height: 1.3;
            font-weight: 700;
            color: white;
        }

        p {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            line-height: 1.6;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
        }

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* Hero Section */
        .hero-education-section {
            position: relative;
            min-height: 75vh;
            display: flex;
            padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
            align-items: center;
            overflow: hidden;
            margin-top: 5rem;
            border-bottom: 4px solid var(--primary-orange);
            border-radius: 0px 0px 30px 30px;
            background: var(--bg-dark);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-primary);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: -5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            left: -3%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 20%;
            animation-delay: 4s;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            border-radius: 0;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 1850px;
            margin: -50px auto -45px auto;
            padding: 0 max(40px, 3vw);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            position: relative;
            z-index: 3;
            margin-top: 0;
            max-width: 700px;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 95, 21, 0.1);
            border: 2px solid rgba(255, 95, 21, 0.3);
            color: var(--secondary-orange);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            animation: slideInLeft 1s ease-out;
        }

        .hero-badge i {
            font-size: 16px;
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: slideInLeft 1.2s ease-out 0.3s both;
        }

        .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 22px;
            color: white;
            line-height: 1.6;
            margin-bottom: 35px;
            animation: slideInLeft 1.2s ease-out 0.6s both;
            text-align: justify;
            text-transform: capitalize;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInLeft 1.2s ease-out 0.9s both;
        }

        .hero-btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-primary);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            color: white;
            text-decoration: none;
        }

        .hero-btn-primary:hover::before {
            left: 100%;
        }

        /* Hero Visual - Educational Dashboard */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            animation: slideInRight 1.2s ease-out 0.6s both;
            height: 100%;
            width: 100%;
            max-width: 700px;
            justify-self: end;
        }

    .education-dashboard {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.95), rgba(13, 22, 62, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 95, 21, 0.4);
    border-radius: 35px;
    padding: 0;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
    animation: dashboardFloat 4s ease-in-out infinite;
    overflow: hidden;
}

.dashboard-top-bar {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-branding {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-orange);
}

.brand-text h5 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.brand-text span {
    font-size: 20px;
    color: white;
}

.dashboard-actions {
    display: flex;
    gap: 10px;
}

.action-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.dashboard-main-content {
    padding: 25px;
}

.welcome-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.welcome-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.welcome-text p {
    font-size: 20px;
    color: white;
    margin: 0;
}

.active-courses {
    display: flex;
    gap: 12px;
    margin: 10px 0;
    overflow-x: auto;
    justify-content: space-between;
    scrollbar-width: none;
}

.active-courses::-webkit-scrollbar {
    display: none;
}

.mini-course-card {
    min-width: 140px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 95, 21, 0.3);
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mini-course-card:hover {
    /* transform: translateY(-5px); */
    border-color: var(--primary-orange);
    background: rgba(255, 95, 21, 0.1);
}

.course-mini-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin: 0 auto 10px;
}

.mini-course-card h6 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}

.mini-course-card span {
    font-size: 19px;
    color: white;
}

.progress-overview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 95, 21, 0.2);
    border-radius: 15px;
    padding: 15px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-header h5 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.overall-percentage {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-orange);
}

.progress-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-item-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 168, 2, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--secondary-orange);
}

.progress-item-details {
    flex: 1;
}

.progress-item-details span {
    font-size: 20px;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.mini-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.quick-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.quick-stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 95, 21, 0.2);
    border-radius: 12px;
    padding: 8px;
    text-align: center;
}

.quick-stat-box i {
    font-size: 22px;
    color: var(--secondary-orange);
    margin-bottom: 5px;
}

.quick-stat-box strong {
    font-size: 22px;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 1px;
}

.quick-stat-box small {
    font-size: 19px;
    color: white;
}

        @keyframes dashboardFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            gap: 15px;
            /* margin-bottom: 25px; */
            /* padding-bottom: 20px; */
            border-bottom: 2px solid rgba(255, 95, 21, 0.2);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            animation: logoPulse 2s ease-in-out infinite;
        }

        @keyframes logoPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .header-info h4 {
            font-size: 22px;
            font-weight: 700;
            color: white;
            margin: 0 0 5px 0;
        }

        .header-info span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .student-info {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .student-profile {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .profile-avatar {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
        }

        .profile-details h6 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin: 0 0 5px 0;
        }

        .profile-details p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .semester-tag {
            display: inline-block;
            background: rgba(255, 168, 2, 0.2);
            color: var(--secondary-orange);
            padding: 5px 12px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
        }

        .progress-section {
            margin-top: 15px;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
        }

        .progress-bar-custom {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 10px;
            animation: progressFill 2s ease-out;
        }

        @keyframes progressFill {
            from {
                width: 0%;
            }
        }

        .stats-mini-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 20px;
        }

        .stat-mini-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 12px;
            padding: 15px 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-mini-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            background: rgba(255, 95, 21, 0.1);
        }

        .stat-icon {
            font-size: 24px;
            color: var(--secondary-orange);
            margin-bottom: 8px;
        }

        .stat-value {
            font-size: 18px;
            font-weight: 700;
            color: white;
            display: block;
        }

        .stat-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        /* Courses Section */
       .courses-section {
    padding: 80px 0 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13, 22, 62, 0.8) 100%);
}

.courses-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 58, 0.5) 100%);
    pointer-events: none;
}
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 95, 21, 0.1);
            border: 2px solid rgba(255, 95, 21, 0.3);
            color: var(--secondary-orange);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 22px;
            color: white;
            max-width: 700px;
            margin: 0 auto;
            text-transform: capitalize;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .course-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .course-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-orange);
            box-shadow: 0 20px 60px rgba(255, 95, 21, 0.4);
        }

        .course-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            position: relative;
            overflow: hidden;
        }

        .course-card:nth-child(1) .course-image {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .course-card:nth-child(2) .course-image {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .course-card:nth-child(3) .course-image {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
        }

        .course-card:nth-child(4) .course-image {
            background: linear-gradient(135deg, #43e97b, #38f9d7);
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .course-card:hover .course-image img {
            transform: scale(1.1);
        }

        .course-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 60px;
            color: rgba(255, 255, 255, 0.8);
        }

        .course-level {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .course-content {
            padding: 25px;
        }

        .course-title {
            font-size: 22px;
            font-weight: 700;
            color: orange;
            margin-bottom: 10px;
        }

        .course-description {
            font-size: 20px;
            color: white;
            margin-bottom: 20px;
            line-height: 1.6;
            text-align: justify;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .course-duration {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        .course-students {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        .course-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 15px;

        }

       .course-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--secondary-orange);
            /* margin-top: 15px; */
        }

        .enroll-btn {
            background: var(--gradient-primary);
            border: none;
            padding: 8px 28px;
            border-radius: 12px;
            color: white;
            font-weight: 700;
            font-size: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .enroll-btn:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-primary);
        }


        /* Slider Section */
        .courses-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
            margin-top: 40px;
        }

        .slider-container {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 10px;
            overflow-y: hidden;
            user-select: none;
        }

        .slider-container::-webkit-scrollbar {
            display: none;
        }

        .slider-card {
            min-width: 350px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: grab;
        }

        .slider-card:active {
            cursor: grabbing;
        }

        .slider-card:hover {
            transform: scale(1.05);
            border-color: var(--primary-orange);
            box-shadow: 0 20px 60px rgba(255, 95, 21, 0.4);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.5);
        }

/* Benefits Section - Completely New Design */
/* Benefits Section Start Styling */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.8) 0%, rgba(13, 22, 62, 0.95) 50%, rgba(10, 15, 44, 1) 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid rgba(255, 95, 21, 0.3);
    margin-top: -50px;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 95, 21, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.9) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.benefits-container {
    position: relative;
    z-index: 2;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
}

.benefits-left {
    position: relative;
}

.benefit-showcase-card {
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.95), rgba(13, 22, 62, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 95, 21, 0.4);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.benefit-showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.showcase-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    margin-bottom: 30px;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.showcase-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: orange;
    margin-bottom: 15px;
}

.showcase-content p {
    font-size: 20px;
    color: white;
    line-height: 1.7;
    text-align: justify;

    margin-bottom: 25px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showcase-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 95, 21, 0.2);
    transition: all 0.3s ease;
}

.showcase-feature-item:hover {
    background: rgba(255, 95, 21, 0.1);
    border-color: var(--primary-orange);
    transform: translateX(10px);
}

.feature-icon-circle {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.feature-text h6 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.benefits-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-mini-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 25px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.6s;
}

.benefit-mini-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(255, 95, 21, 0.4);
}

.benefit-mini-card:hover::before {
    left: 100%;
}

.benefit-mini-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    margin-bottom: 20px;
}

.benefit-mini-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: orange;
    margin-bottom: 12px;
}

.benefit-mini-card p {
    font-size: 20px;
    color: white;
    line-height: 1.6;
    text-align: justify;
}

.benefit-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 168, 2, 0.2);
    color: var(--secondary-orange);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-right {
        grid-template-columns: 1fr;
    }
    
    .active-courses {
        flex-wrap: wrap;
    }
    
    .mini-course-card {
        min-width: calc(50% - 6px);
    }
}

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .benefit-card {
            background: linear-gradient(145deg, rgba(26, 31, 58, 0.9), rgba(13, 22, 62, 0.9));
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
            transition: left 0.6s;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-orange);
            box-shadow: 0 25px 60px rgba(255, 95, 21, 0.4);
        }

        .benefit-card:hover::before {
            left: 100%;
        }

        .benefit-icon-wrapper {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            animation: benefitFloat 3s ease-in-out infinite;
        }

        @keyframes benefitFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .benefit-icon-wrapper::after {
            content: '';
            position: absolute;
            width: 120%;
            height: 120%;
            border: 2px dashed rgba(255, 95, 21, 0.3);
            border-radius: 50%;
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .benefit-icon {
            font-size: 48px;
            color: white;
        }

        .benefit-title {
            font-size: 22px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .benefit-description {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        .benefit-features {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            text-align: left;
        }

        .benefit-features li {
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .benefit-features i {
            color: var(--secondary-orange);
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .courses-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text {
                text-align: center;
                order: 2;
                max-width: 100%;
                justify-self: center;
            }

            .hero-visual {
                order: 1;
                justify-self: center;
            }

            .hero-actions {
                justify-content: center;
            }

            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
       

            .courses-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .slider-card {
                min-width: 300px;
            }

        }

        @media (max-width: 576px) {
        
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .hero-btn-primary {
                width: 100%;
                justify-content: center;
            }

            .courses-section,
            .benefits-section {
                padding: 50px 0;
            }

            .slider-card {
                min-width: 280px;
            }
        }



        /* Responsive Breakpoints */
@media (max-width: 1400px) {
    .education-dashboard {
        max-width: 500px;
    }
    
    .dashboard-top-bar {
        padding: 18px 22px;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .brand-text h5 {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .education-dashboard {
        max-width: 450px;
    }
    
    .dashboard-main-content {
        padding: 20px;
    }
    
    .welcome-banner {
        padding: 18px;
    }
    
    .welcome-text h4 {
        font-size: 16px;
    }
    
    .mini-course-card {
        min-width: 130px;
        padding: 12px;
    }
    
    .course-mini-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .hero-visual {
        justify-content: center;
        max-width: 100%;
        justify-self: center;
    }
    
    .education-dashboard {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .education-dashboard {
        max-width: 420px;
        border-radius: 25px;
    }
    
    .dashboard-top-bar {
        padding: 15px 18px;
    }
    
    .brand-logo {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    
    .brand-text h5 {
        font-size: 14px;
    }
    
    .brand-text span {
        font-size: 10px;
    }
    
    .action-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .dashboard-main-content {
        padding: 18px;
    }
    
    .welcome-banner {
        padding: 15px;
        border-radius: 15px;
    }
    
    .welcome-text h4 {
        font-size: 15px;
    }
    
    .welcome-text p {
        font-size: 12px;
    }
    
    .active-courses {
        gap: 10px;
        margin: 15px 0;
    }
    
    .mini-course-card {
        min-width: 120px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .course-mini-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .mini-course-card h6 {
        font-size: 12px;
    }
    
    .mini-course-card span {
        font-size: 10px;
    }
    
    .progress-overview {
        padding: 15px;
        border-radius: 12px;
    }
    
    .progress-header h5 {
        font-size: 14px;
    }
    
    .overall-percentage {
        font-size: 18px;
    }
    
    .progress-item {
        gap: 10px;
    }
    
    .progress-item-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .progress-item-details span {
        font-size: 11px;
    }
    
    .quick-stats-row {
        gap: 8px;
        margin-top: 15px;
    }
    
    .quick-stat-box {
        padding: 12px;
        border-radius: 10px;
    }
    
    .quick-stat-box i {
        font-size: 20px;
    }
    
    .quick-stat-box strong {
        font-size: 16px;
    }
    
    .quick-stat-box small {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .education-dashboard {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .dashboard-top-bar {
        padding: 12px 15px;
        border-radius: 20px 20px 0 0;
    }
    
    .brand-logo {
        width: 35px;
        height: 35px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .brand-text h5 {
        font-size: 13px;
    }
    
    .brand-text span {
        font-size: 9px;
    }
    
    .dashboard-actions {
        gap: 8px;
    }
    
    .action-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .dashboard-main-content {
        padding: 15px;
    }
    
    .welcome-banner {
        padding: 12px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .welcome-text h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .welcome-text p {
        font-size: 11px;
    }
    
    .active-courses {
        gap: 8px;
        margin: 12px 0;
        flex-wrap: wrap;
    }
    
    .mini-course-card {
        min-width: calc(50% - 4px);
        padding: 10px;
        border-radius: 10px;
    }
    
    .course-mini-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 10px;
        margin-bottom: 6px;
    }
    
    .mini-course-card h6 {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .mini-course-card span {
        font-size: 9px;
    }
    
    .progress-overview {
        padding: 12px;
        border-radius: 10px;
    }
    
    .progress-header {
        margin-bottom: 12px;
    }
    
    .progress-header h5 {
        font-size: 13px;
    }
    
    .overall-percentage {
        font-size: 16px;
    }
    
    .progress-items {
        gap: 10px;
    }
    
    .progress-item {
        gap: 8px;
    }
    
    .progress-item-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .progress-item-details span {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .mini-progress-bar {
        height: 5px;
    }
    
    .quick-stats-row {
        gap: 6px;
        margin-top: 12px;
    }
    
    .quick-stat-box {
        padding: 10px;
        border-radius: 8px;
    }
    
    .quick-stat-box i {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .quick-stat-box strong {
        font-size: 15px;
        margin-bottom: 2px;
    }
    
    .quick-stat-box small {
        font-size: 9px;
    }
}

@media (max-width: 400px) {
    .education-dashboard {
        border-radius: 18px;
    }
    
    .dashboard-top-bar {
        padding: 10px 12px;
    }
    
    .brand-logo {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .brand-text h5 {
        font-size: 12px;
    }
    
    .dashboard-main-content {
        padding: 12px;
    }
    
    .mini-course-card {
        min-width: calc(50% - 4px);
        padding: 8px;
    }
    
    .course-mini-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}



/* Category Filter Section */
.category-filter-section {
    padding: 40px 0 20px 0;
    background: var(--bg-dark);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-tab:hover {
    background: rgba(255, 95, 21, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.category-tab.active {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
}

.category-tab i {
    font-size: 18px;
}

.courses-category-section {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 95, 21, 0.3);
}

.category-icon-large {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.category-title-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.category-title-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0 0 0;
}

/* Responsive for categories */
@media (max-width: 768px) {
    .category-tabs {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 0 20px !important;
        gap: 12px !important;
    }
    
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .category-tab {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Additional CSS for new styling */
.courses-category-section {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 95, 21, 0.3);
}

.category-icon-large {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.category-title-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: orange;
    margin: 0;
}

.category-title-text p {
    font-size: 22px;
    color: white;
    margin: 5px 0 0 0;
}

/* Category Filter Tabs */
.category-filter-section {
    padding: 40px 0 20px 0;
    background: var(--bg-dark);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-tab:hover {
    background: rgba(255, 95, 21, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.category-tab.active {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
}

.category-tab i {
    font-size: 18px;
}

/* Hide categories by default */
.courses-category-section {
    display: block;
}

.courses-category-section[style*="display: none"] {
    display: none !important;
}

/* Responsive for categories */
@media (max-width: 768px) {
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-icon-large {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .category-title-text h3 {
        font-size: 24px;
    }
}
