 /* Animated Background Elements --file name : courses.css*/
.courses-page {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
       
        .courses-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        
        .courses-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 110, 115, 0.03), rgba(255, 222, 89, 0.03));
            animation: float 20s infinite ease-in-out;
        }
        
        .courses-bg-circle-1 {
            width: 500px;
            height: 500px;
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }
        
        .courses-bg-circle-2 {
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -100px;
            animation-delay: 5s;
        }
        
        .courses-bg-circle-3 {
            width: 300px;
            height: 300px;
            top: 40%;
            left: 20%;
            animation-delay: 10s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -20px) rotate(5deg); }
            50% { transform: translate(-20px, 20px) rotate(-5deg); }
            75% { transform: translate(20px, 20px) rotate(3deg); }
        }
        
        /* Page Header */
        .courses-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .courses-header .section-subtitle {
            display: inline-block;
            background: rgba(26, 110, 115, 0.1);
            color: #1a6e73;
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
            backdrop-filter: blur(5px);
        }
        
        .courses-header h1 {
            font-size: 3.5rem;
            color: #1e293b;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .courses-header h1 span {
            color: #ffde59;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            display: inline-block;
        }
        
        .courses-header h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 222, 89, 0.3);
            z-index: -1;
            border-radius: 10px;
        }
        
        .courses-header p {
            color: #64748b;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* Section Header */
        .section-header-courses {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .section-header-courses .subtitle {
            display: inline-block;
            background: rgba(26, 110, 115, 0.1);
            color: #1a6e73;
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .section-header-courses h2 {
            font-size: 2.8rem;
            color: #1e293b;
            margin-bottom: 15px;
        }
        
        .section-header-courses h2 span {
            color: #ffde59;
        }
        
        .section-header-courses p {
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        /* Course Categories */
        .course-categories {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .category-btn {
            padding: 12px 30px;
            border: 2px solid #1a6e73;
            background: transparent;
            color: #1a6e73;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-btn:hover,
        .category-btn.active {
            background: #1a6e73;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 110, 115, 0.3);
        }
        
        /* Courses Grid - Now appears first */
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }
        
        /* Premium Course Card */
        .course-premium-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(26, 110, 115, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(26, 110, 115, 0.05);
        }
        
        .course-premium-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(26, 110, 115, 0.2);
        }
        
        /* Card Badge */
        .card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2;
        }
        
        .badge {
            background: linear-gradient(135deg, #ffde59, #fbbf24);
            color: #1e293b;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(255, 222, 89, 0.3);
            display: inline-block;
        }
        
        .badge.popular {
            background: linear-gradient(135deg, #1a6e73, #0e4a4f);
            color: white;
        }
        
        .badge.offer {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }
        
        /* Card Media */
        .course-media {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/9;
        }
        
        .course-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .course-premium-card:hover .course-media img {
            transform: scale(1.1);
        }
        
        .course-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(26, 110, 115, 0.9) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .course-premium-card:hover .course-overlay {
            opacity: 1;
        }
        
        .course-icon {
            position: absolute;
            bottom: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a6e73;
            font-size: 1.5rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .course-premium-card:hover .course-icon {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Card Content */
        .course-content {
            padding: 30px 25px;
        }
        
        .course-title {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 8px;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .course-premium-card:hover .course-title {
            color: #1a6e73;
        }
        
        .course-subtitle {
            color: #1a6e73;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 15px;
            display: inline-block;
            padding: 5px 15px;
            background: rgba(26, 110, 115, 0.1);
            border-radius: 50px;
        }
        
        .course-description {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Course Features */
        .course-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
            padding: 20px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #1e293b;
            font-size: 0.9rem;
        }
        
        .feature i {
            color: #ffde59;
            font-size: 1rem;
        }
        
        /* Enroll Button - Updated Link */
        .enroll-btn {
            width: 100%;
            background: transparent;
            border: 2px solid #1a6e73;
            color: #1a6e73;
            padding: 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .enroll-btn i {
            transition: transform 0.3s ease;
        }
        
        .enroll-btn:hover {
            background: #1a6e73;
            color: white;
        }
        
        .enroll-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Hero Section with Image and Paragraph - Now appears after courses */
        .courses-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin: 80px 0;
            position: relative;
            z-index: 1;
            align-items: center;
            background: white;
            border-radius: 50px;
            padding: 50px;
            box-shadow: 0 30px 60px rgba(26, 110, 115, 0.15);
            border: 1px solid rgba(26, 110, 115, 0.1);
        }
        
        .hero-content {
            padding-right: 20px;
        }
        
        .hero-tag {
            display: inline-block;
            background: rgba(255, 222, 89, 0.2);
            color: #1a6e73;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }
        
        .hero-content h2 {
            font-size: 2.8rem;
            color: #1e293b;
            margin-bottom: 20px;
            line-height: 1.3;
            font-weight: 700;
        }
        
        .hero-content h2 span {
            color: #1a6e73;
            position: relative;
            display: inline-block;
        }
        
        .hero-content h2 span::before {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 222, 89, 0.4);
            z-index: -1;
            border-radius: 10px;
        }
        
        .hero-content p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(26, 110, 115, 0.05);
            padding: 10px 20px;
            border-radius: 50px;
        }
        
        .hero-feature i {
            color: #ffde59;
            font-size: 1.2rem;
        }
        
        .hero-feature span {
            color: #1e293b;
            font-weight: 500;
        }
        
        .hero-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease;
        }
        
        .hero-image:hover img {
            transform: scale(1.05);
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            z-index: 1;
            pointer-events: none;
        }
        
        .image-caption {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            color: #1a6e73;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 2;
            backdrop-filter: blur(5px);
        }
        
        .image-caption i {
            color: #ffde59;
            margin-right: 8px;
        }
        
        /* Bottom CTA Section */
        .courses-cta {
            background: linear-gradient(135deg, #1a6e73, #0e4a4f);
            border-radius: 50px;
            padding: 60px;
            margin-top: 40px;
            position: relative;
            z-index: 1;
            overflow: hidden;
            text-align: center;
            color: white;
        }
        
        .courses-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content h2 span {
            color: #ffde59;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #ffde59;
            color: #1a6e73;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .cta-btn:hover {
            background: white;
            color: #1a6e73;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .courses-hero {
                grid-template-columns: 1fr;
                padding: 40px;
            }
            
            .hero-content {
                padding-right: 0;
            }
            
            .courses-header h1 {
                font-size: 3rem;
            }
            
            .hero-content h2 {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .courses-page {
                padding: 100px 20px 60px;
            }
            
            .courses-header h1 {
                font-size: 2.5rem;
            }
            
            .courses-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .courses-hero {
                padding: 30px 20px;
            }
            
            .hero-content h2 {
                font-size: 2rem;
            }
            
            .section-header-courses h2 {
                font-size: 2.2rem;
            }
            
            .courses-cta {
                padding: 40px 20px;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .courses-header h1 {
                font-size: 2rem;
            }
            
            .hero-content h2 {
                font-size: 1.8rem;
            }
            
            .course-categories {
                gap: 10px;
            }
            
            .category-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .cta-content h2 {
                font-size: 1.6rem;
            }
            
            .cta-btn {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }