
        :root {
            --primary-color: #ff8740;
            --secondary-color: #000000;
            --blue-color: #242c50;
            --blue-color-2: #131d3d;
            --dark-color: #101a37;
            --common-color: #666666;
            --gray-color: #bebebe;
            --gray-color-2: #c4c4c4;
            --bg-color: #f5f5f5;
            --white-color: #ffffff;
            --light-white-color: #f3f4f8;
            --black-color: #000000;
            --pink-color-1: #e8cafe;
            --pink-color-2: #d05efc;
            --yellow-color: #ffc107;
            --gradient-color: linear-gradient(-90deg, #186EAB 124%, rgb(241 135 60) 100%);
            --gradient-color-2: linear-gradient(90deg, rgba(164, 68, 253, 1) 0%, rgba(208, 94, 252, 1) 100%);
            --gradient-white-color: linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
        }

        /* Hero Section Styles */
        .courses-hero {
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--black-color) 50%, var(--blue-color-2) 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .courses-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255, 135, 64, 0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255, 135, 64, 0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255, 135, 64, 0.03)"/><circle cx="10" cy="90" r="1" fill="rgba(255, 135, 64, 0.03)"/><circle cx="90" cy="50" r="1" fill="rgba(255, 135, 64, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.8;
        }

        .courses-hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 135, 64, 0.1) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            font-family: var(--title-font);
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 50px;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Filter Section */
        .filter-section {
            background: linear-gradient(135deg, var(--black-color) 0%, var(--dark-color) 100%);
            padding: 60px 0;
            position: relative;
        }

        .filter-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .filter-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .filter-title {
            font-size: 2rem;
            color: white;
            margin-bottom: 15px;
        }

        .filter-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .filter-btn {
            padding: 12px 30px;
            border: 2px solid rgba(255, 135, 64, 0.3);
            background: rgba(255, 135, 64, 0.1);
            color: rgba(255, 255, 255, 0.9);
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(45deg, var(--primary-color), #ff6b1a);
            border-color: var(--primary-color);
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 135, 64, 0.4);
        }

        .filter-btn i {
            font-size: 1rem;
        }

        /* Courses Grid Section */
        .courses-section {
            padding: 80px 0;
          background:black;
            position: relative;
        }

        .courses-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .course-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 135, 64, 0.2);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            cursor: pointer;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), #ff6b1a);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .course-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 35px 70px rgba(255, 135, 64, 0.3);
            border-color: rgba(255, 135, 64, 0.5);
        }

        .course-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .course-card:hover .course-image img {
            transform: scale(1.1);
        }

        .course-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(45deg, var(--primary-color), #ff6b1a);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(255, 135, 64, 0.3);
        }

        .course-duration {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .course-content {
            padding: 30px;
        }

        .course-category {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .course-title {
            font-size: 1.4rem;
            color: white;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
            font-family: var(--title-font);
        }

        .course-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .course-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .feature-item i {
            color: var(--primary-color);
            font-size: 0.9rem;
        }

        .course-instructor {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 25px;
        }

        .instructor-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), #ff6b1a);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .instructor-info {
            flex: 1;
        }

        .instructor-name {
            color: white;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 3px;
        }

        .instructor-title {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        .course-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .course-price {
            display: flex;
            align-items: baseline;
            gap: 10px;
        }

        .current-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .original-price {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: line-through;
        }

        .enroll-btn {
            background: linear-gradient(45deg, var(--primary-color), #ff6b1a);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }

        .enroll-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 135, 64, 0.4);
            color: white;
        }

        /* Featured Course Section */
        .featured-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--black-color) 0%, var(--dark-color) 100%);
        }

        .featured-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(45deg, var(--primary-color), #ff6b1a);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .featured-badge i {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .featured-content {
            padding: 40px;
        }

        .featured-title {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .featured-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .featured-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 135, 64, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .highlight-item:hover .highlight-icon {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .highlight-text {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        .featured-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .featured-image img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
        }

        .featured-image:hover img {
            transform: scale(1.05);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
          background:black;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(255, 135, 64, 0.1) 0%, transparent 70%);
        }

        .cta-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .cta-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .primary-cta {
            background: linear-gradient(45deg, var(--primary-color), #ff6b1a);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .primary-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 135, 64, 0.5);
            color: white;
        }

        .secondary-cta {
            background: transparent;
            color: white;
            padding: 15px 40px;
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .secondary-cta:hover {
            background: var(--primary-color);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 135, 64, 0.3);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-stats {
                gap: 30px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .courses-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .featured-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .featured-highlights {
                grid-template-columns: 1fr;
            }

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

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .filter-buttons {
                gap: 10px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        /* Animations */
        .wow {
            visibility: hidden;
        }

        .wow.animated {
            visibility: visible;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark-color);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, var(--primary-color), #ff6b1a);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }

    

        @media screen and (max-width: 400px) {

             .enroll-btn {
    background: linear-gradient(45deg, var(--primary-color), #ff6b1a);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s 
cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}
        }