 :root {
            --orange-primary: #EF7F1A;
            --orange-light: #EF7F1A;
            --orange-dark: #EF7F1A;
            --dark-bg: #0a0a0a;
            --dark-card: #1a1a1a;
            --light-bg: #ffffff;
            --gray-bg: #f8f9fa;
            --text-dark: #2D2C2B;
            --text-muted: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Mulish", sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "Mulish", sans-serif;
            font-weight: 700;
        }

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

        ::-webkit-scrollbar-track {
            background: var(--gray-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--orange-primary);
            border-radius: 10px;
        }

        /* Top Bar - Like Coding Seekho */
        .top-bar {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
            color: white;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-bar a:hover {
            color: var(--orange-primary);
        }

        .top-bar i {
            color: var(--orange-primary);
            margin-right: 0.5rem;
        }

        /* Navigation */
        .navbar {
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.95) !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
           font-family: "Mulish", sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--text-dark) !important;
        }

        .navbar-brand .text-orange {
            color: var(--orange-primary) !important;
        }

        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            padding: 0.6rem 1.2rem !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--orange-primary);
            border-radius: 10px;
            transition: width 0.3s ease;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 80%;
        }

        .btn-enroll {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
        }

        .btn-enroll:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
            color: white;
        }

        /* Hero Section - Inspired by all 3 sites */
        .hero-section {
            min-height: 90vh;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 60%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            animation: pulseGlow 8s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

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

        .hero-badge {
            display: inline-block;
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            color: var(--orange-primary);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 900;
            line-height: 1.15;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
        }

        .hero-stat-item {
            text-align: left;
        }

        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--orange-primary);
            line-height: 1;
        }

        .hero-stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-top: 0.3rem;
        }

        /* Buttons */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border: none;
            color: white;
            padding: 1.1rem 2.8rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            font-size: 1.05rem;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
            color: white;
        }

        .btn-outline-custom {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 1.1rem 2.8rem;
            font-weight: 700;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: white;
            color: white;
        }

        /* Video Player Section - Like Coding Seekho */
        .video-hero {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }

        .video-hero:hover {
            transform: scale(1.02);
        }

        .video-hero img {
            width: 100%;
            display: block;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Company Logos Section - Like Reference Sites */
        .companies-section {
            background: white;
            padding: 4rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .company-logo {
            height: 60px;
            opacity: 0.6;
            filter: grayscale(100%);
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .company-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        /* Stats Cards - Glassmorphism */
        .stats-cards {
            margin-top: -80px;
            position: relative;
            z-index: 10;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.5);
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .stat-label {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 0.8rem;
        }

        /* Features Section - Like Learning Platform */
        .features-section {
            padding: 8rem 0;
            background: var(--gray-bg);
        }

        .feature-card {
            background: white;
            border-radius: 25px;
            padding: 3rem 2.5rem;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
            border-color: rgba(255, 107, 53, 0.2);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 97, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            color: var(--orange-primary);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            color: white;
        }

        /* Course Cards - Premium Design */
        .courses-section {
            padding: 8rem 0;
        }

        .course-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }

        .course-image {
            position: relative;
            height: 240px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .course-image i {
            font-size: 5rem;
            color: white;
            transition: transform 0.5s ease;
        }

        .course-card:hover .course-image i {
            transform: scale(1.2) rotate(10deg);
        }

        .course-badge-top {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .course-rating {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .course-rating i {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .course-content {
            padding: 2rem;
        }

        .course-badge {
            display: inline-block;
            background: rgba(255, 107, 53, 0.1);
            color: var(--orange-primary);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .course-title {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            padding-top: 1.5rem;
            border-top: 2px solid var(--gray-bg);
            margin-top: 1.5rem;
        }

        .course-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .course-meta-item i {
            color: var(--orange-primary);
        }

        .course-price {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--orange-primary);
        }

        /* Live Course Banner - Like Coding Seekho */
        .live-banner {
            background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
            color: white;
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
        }

        .live-badge .pulse {
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

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

        /* Testimonials Section */
        .testimonials-section {
            padding: 8rem 0;
            background: var(--dark-bg);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 3rem;
            height: 100%;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 107, 53, 0.3);
            box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .testimonial-rating {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
          .page-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .breadcrumb-custom {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .breadcrumb-custom a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-custom a:hover {
            color: var(--orange-primary);
        }

        .breadcrumb-custom span {
            color: white;
            font-weight: 600;
        }

        /* Story Section */
        .story-section {
            padding: 8rem 0;
            background: white;
        }

        .story-image {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .story-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }

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

        .story-badge {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            color: white;
            padding: 1rem 2rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .quote-box {
            background: var(--gray-bg);
            border-left: 5px solid var(--orange-primary);
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        /* Mission Vision Values */
        .mvv-section {
            padding: 8rem 0;
            background: var(--gray-bg);
        }

        .mvv-card {
            background: white;
            border-radius: 30px;
            padding: 3rem 2.5rem;
            height: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            text-align: center;
        }

        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
            border-color: var(--orange-primary);
        }

        .mvv-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 3rem;
            color: white;
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
            transition: all 0.4s ease;
        }

        .mvv-card:hover .mvv-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Stats Section */
        .stats-section {
            padding: 8rem 0;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            font-weight: 600;
        }

        .stat-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        /* Team Section */
        .team-section {
            padding: 8rem 0;
            background: white;
        }

        .team-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .team-image {
            height: 350px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
        }

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

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

        .team-social {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.8rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover .team-social {
            opacity: 1;
        }

        .team-social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange-primary);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .team-social-icon:hover {
            background: var(--orange-primary);
            color: white;
            transform: translateY(-3px);
        }

        .team-content {
            padding: 2rem;
            text-align: center;
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .team-role {
            color: var(--orange-primary);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .team-bio {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Journey Timeline */
        .timeline-section {
            padding: 8rem 0;
            background: var(--gray-bg);
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--orange-primary), var(--orange-light));
            border-radius: 10px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 4rem;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 0;
            margin-right: auto;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
            margin-right: 0;
        }

        .timeline-content {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            width: 45%;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.4s ease;
        }

        .timeline-content:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 2rem;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: var(--orange-primary);
            border-radius: 50%;
            border: 6px solid white;
            box-shadow: 0 0 0 4px var(--orange-primary);
            z-index: 2;
        }

        .timeline-year {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--orange-primary);
            margin-bottom: 0.8rem;
        }

        .timeline-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .timeline-description {
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Values Grid */
        .values-section {
            padding: 8rem 0;
            background: white;
        }

        .value-item {
            text-align: center;
            padding: 2.5rem;
            border-radius: 25px;
            background: var(--gray-bg);
            transition: all 0.4s ease;
            height: 100%;
        }

        .value-item:hover {
            background: white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transform: translateY(-10px);
        }

        .value-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin: 0 auto 1.5rem;
        }


        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotateBg 20s linear infinite;
        }

        @keyframes rotateBg {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Newsletter Section - Like Learning Platform */
        .newsletter-section {
            background: var(--gray-bg);
            padding: 5rem 0;
        }

        .newsletter-box {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .newsletter-input {
            padding: 1.2rem 1.5rem;
            border: 2px solid var(--gray-bg);
            border-radius: 50px;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            border-color: var(--orange-primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
        }

        /* Blog Section */
        .blog-section {
            padding: 8rem 0;
            background: white;
        }

        .blog-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }

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

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

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

        .blog-date {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--orange-primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-category {
            display: inline-block;
            background: rgba(255, 107, 53, 0.1);
            color: var(--orange-primary);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 5rem 0 2rem;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .footer h5 {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer a:hover {
            color: var(--orange-primary);
            transform: translateX(5px);
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.4s ease;
            font-size: 1.2rem;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            border-color: transparent;
            color: white;
        }

        /* Section Titles */
        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
        }

        /* Category Pills */
        .category-pill {
            display: inline-block;
            background: white;
            border: 2px solid #000;
            color: var(--text-dark);
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            margin: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .category-pill:hover,
        .category-pill.active {
            background: var(--orange-primary);
            color: white;
            border-color: var(--orange-primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
        }

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

            .hero-stats {
                flex-wrap: wrap;
                gap: 2rem;
            }

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

        @media (max-width: 768px) {
            .top-bar {
                text-align: center;
            }

            .hero-section {
                padding: 100px 0 60px;
            }

            .hero-stats {
                gap: 1.5rem;
            }

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

            .stats-cards {
                margin-top: 0;
            }
        }


        /* Page Header/Hero */
        .page-header {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .page-header::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 60%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
        }

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

        .page-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }


        /* Courses Section */
        .courses-section {
            padding: 6rem 0;
            background: var(--gray-bg);
        }

        /* Filter Sidebar */
        .filter-sidebar {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 100px;
        }

        .filter-title {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .filter-clear {
            color: var(--orange-primary);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .filter-clear:hover {
            opacity: 0.7;
        }

        .filter-group {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--gray-bg);
        }

        .filter-group:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .filter-group-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .filter-option {
            display: flex;
            align-items: center;
            padding: 0.6rem 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-option:hover {
            padding-left: 0.5rem;
        }

        .filter-option input[type="checkbox"],
        .filter-option input[type="radio"] {
            width: 20px;
            height: 20px;
            margin-right: 0.8rem;
            cursor: pointer;
            accent-color: var(--orange-primary);
        }

        .filter-option label {
            cursor: pointer;
            font-weight: 500;
            color: var(--text-dark);
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .filter-count {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Search Bar */
        .search-bar {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .search-input {
            border: 2px solid var(--gray-bg);
            border-radius: 50px;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: var(--orange-primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(241, 126, 31, 0.1);
        }

        /* Sort Bar */
        .sort-bar {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .result-count {
            font-weight: 700;
            color: var(--text-dark);
        }

        .sort-select {
            border: 2px solid var(--gray-bg);
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sort-select:focus {
            border-color: var(--orange-primary);
            outline: none;
        }

        .view-toggle {
            display: flex;
            gap: 0.5rem;
        }

        .view-btn {
            width: 40px;
            height: 40px;
            border: 2px solid var(--gray-bg);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            color: var(--text-muted);
        }

        .view-btn.active,
        .view-btn:hover {
            border-color: var(--orange-primary);
            background: var(--orange-primary);
            color: white;
        }

        /* Course Cards */
        .course-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }

        .course-image {
            position: relative;
            height: 220px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .course-image i {
            font-size: 5rem;
            color: white;
            transition: transform 0.5s ease;
        }

        .course-card:hover .course-image i {
            transform: scale(1.2) rotate(10deg);
        }

        .course-badge-top {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            backdrop-filter: blur(10px);
        }

        .course-rating {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .course-rating i {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .course-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .course-category {
            display: inline-block;
            background: rgba(241, 126, 31, 0.1);
            color: var(--orange-primary);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .course-title {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .course-description {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.7;
            flex: 1;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            padding-top: 1.5rem;
            border-top: 2px solid var(--gray-bg);
            margin-top: auto;
        }

        .course-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .course-meta-item i {
            color: var(--orange-primary);
        }

        .course-instructor {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--gray-bg);
        }

        .instructor-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1rem;
        }

        .instructor-info {
            flex: 1;
        }

        .instructor-name {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .instructor-title {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* List View */
        .course-card.list-view {
            flex-direction: row;
        }

        .course-card.list-view .course-image {
            width: 300px;
            height: auto;
        }

        .course-card.list-view .course-content {
            flex: 1;
        }

        /* Mobile Filter Toggle */
        .filter-toggle-btn {
            display: none;
            width: 100%;
            background: var(--orange-primary);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .filter-toggle-btn:hover {
            background: var(--orange-dark);
        }

        /* Category Pills */
        .category-pills {
            display: block;
            text-align: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .category-pill {
            background: white;
            border: 2px solid rgb(71 75 80 / 18%);
            color: var(--text-dark);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-pill:hover,
        .category-pill.active {
            background: var(--orange-primary);
            color: white;
            border-color: var(--orange-primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(241, 126, 31, 0.3);
        }
/* Stats Bar */
        .stats-bar {
            background: white;
            padding: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: -40px;
            position: relative;
            z-index: 10;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--orange-primary);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 600;
        }

         /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            background: var(--gray-bg);
        }

        /* Contact Info Cards */
        .contact-info-card {
            background: white;
            border-radius: 25px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
            border-color: var(--orange-primary);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
            transition: all 0.4s ease;
        }

        .contact-info-card:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .contact-info-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .contact-info-card p {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .contact-info-card a {
            color: var(--orange-primary);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .contact-info-card a:hover {
            color: var(--orange-dark);
        }

        /* Contact Form Section */
        .contact-form-section {
            background: white;
            border-radius: 30px;
            padding: 4rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-top: 4rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
        }

        .form-label {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }

        .form-control,
        .form-select {
            padding: 1.2rem 1.5rem;
            border: 2px solid var(--gray-bg);
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--orange-primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(241, 126, 31, 0.1);
        }

        .form-control::placeholder {
            color: #adb5bd;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
            width: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(241, 126, 31, 0.5);
            color: white;
        }

        /* Map Section */
        .map-section {
            padding: 6rem 0;
            background: white;
        }

        .map-container {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            height: 500px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: var(--gray-bg);
        }

        .accordion-item {
            border: none;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            background: white;
        }

        .accordion-button {
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1.5rem 2rem;
            background: white;
            color: var(--text-dark);
            border: none;
        }

        .accordion-button:not(.collapsed) {
            background: var(--orange-primary);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem 2rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* Office Hours */
        .hours-box {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }

        .hours-box h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }

        .hours-list {
            list-style: none;
            padding: 0;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 2px solid var(--gray-bg);
            font-weight: 600;
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list .day {
            color: var(--text-dark);
        }

        .hours-list .time {
            color: var(--orange-primary);
        }

        /* Social Media */
        .social-connect {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            color: white;
            margin-top: 2rem;
        }

        .social-connect h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: white;
            color: var(--orange-primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Steps Section */
        .steps-section {
            padding: 6rem 0;
            background: white;
        }

        .step-card {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
        }

        .step-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        /* Path Selection */
        .path-section {
            padding: 6rem 0;
            background: var(--gray-bg);
        }

        .path-card {
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 3px solid transparent;
            cursor: pointer;
        }

        .path-card:hover,
        .path-card.selected {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
            border-color: var(--orange-primary);
        }

        .path-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            margin: 0 auto 2rem;
            box-shadow: 0 15px 40px rgba(241, 126, 31, 0.3);
        }

        .path-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-align: center;
        }

        .path-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .path-features li {
            padding: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .path-features li i {
            color: var(--orange-primary);
            font-size: 1.2rem;
        }

        .btn-select-path {
            width: 100%;
            padding: 1rem;
            background: var(--gray-bg);
            border: 2px solid var(--gray-bg);
            color: var(--text-dark);
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .path-card.selected .btn-select-path,
        .btn-select-path:hover {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-color: var(--orange-primary);
            color: white;
        }

        /* Registration Form */
        .registration-section {
            padding: 6rem 0;
            background: white;
        }

        .form-card {
            background: white;
            border-radius: 30px;
            padding: 4rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
        }

        .form-label {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }

        .form-control,
        .form-select {
            padding: 1.2rem 1.5rem;
            border: 2px solid var(--gray-bg);
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--orange-primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(241, 126, 31, 0.1);
        }

        .form-check-input {
            width: 20px;
            height: 20px;
            margin-top: 0.3rem;
            border: 2px solid var(--gray-bg);
            cursor: pointer;
        }

        .form-check-input:checked {
            background-color: var(--orange-primary);
            border-color: var(--orange-primary);
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
            width: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(241, 126, 31, 0.5);
        }

        /* Benefits Section */
        .benefits-section {
            padding: 6rem 0;
            background: var(--dark-bg);
            color: white;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(241, 126, 31, 0.3);
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--orange-primary);
            margin-bottom: 1.5rem;
        }

          /* Services Overview */
        .services-overview {
            padding: 8rem 0;
            background: white;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
        }

        .service-card-main {
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
        }

        .service-card-main:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
            border-color: var(--orange-primary);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            margin-bottom: 2rem;
            box-shadow: 0 15px 40px rgba(241, 126, 31, 0.3);
            transition: all 0.4s ease;
        }

        .service-card-main:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card-main h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-dark) !important;
        }

        .service-card-main p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 0rem;
        }

        .service-features li {
            padding: 0.8rem 0;
            color: var(--text-dark);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .service-features li i {
            color: var(--orange-primary);
            font-size: 1.2rem;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border: none;
            color: white;
            padding: 1rem 2.5rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(241, 126, 31, 0.5);
            color: white;
        }

        /* Detailed Services Section */
        .service-detail {
            padding: 6rem 0;
            border-bottom: 2px solid var(--gray-bg);
        }

        .service-detail:nth-child(even) {
            background: var(--gray-bg);
        }

        .service-detail-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-badge {
            display: inline-block;
            background: rgba(241, 126, 31, 0.1);
            color: var(--orange-primary);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .service-detail h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .service-detail-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .service-detail-list li {
            padding: 1rem 0;
            border-bottom: 1px solid var(--gray-bg);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .service-detail-list li:last-child {
            border-bottom: none;
        }

        .service-detail-list .number {
            width: 40px;
            height: 40px;
            background: var(--orange-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            flex-shrink: 0;
        }

        .service-detail-list .content h4 {
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .service-detail-list .content p {
            color: var(--text-muted);
            margin-bottom: 0;
        }

        .service-image {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .service-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }

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

        /* Process Section */
        .process-section {
            padding: 8rem 0;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 30% 50%, rgba(241, 126, 31, 0.1) 0%, transparent 50%);
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.4);
        }

        .process-step h4 {
            color: white;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .process-step p {
            color: rgba(255, 255, 255, 0.7);
        }

        .process-arrow {
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            color: var(--orange-primary);
            font-size: 2rem;
        }

        /* Technology Stack */
        .tech-section {
            padding: 8rem 0;
            background: var(--gray-bg);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .tech-item {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .tech-item i {
            font-size: 3rem;
            color: var(--orange-primary);
            margin-bottom: 1rem;
        }

        .tech-item h5 {
            font-weight: 700;
            color: var(--text-dark);
        }

        /* Portfolio/Case Studies */
        .portfolio-section {
            padding: 8rem 0;
            background: white;
        }

        .portfolio-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .portfolio-image {
            height: 250px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            position: relative;
            overflow: hidden;
        }

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

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

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-category {
            color: var(--orange-primary);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .portfolio-content h3 {
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        /* Pricing/Packages (if needed) */
        .pricing-section {
            padding: 8rem 0;
            background: var(--gray-bg);
        }

        .pricing-card {
            background: white;
            border-radius: 30px;
            padding: 3rem 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            text-align: center;
            height: 100%;
        }

        .pricing-card.featured {
            border: 3px solid var(--orange-primary);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .pricing-badge {
            background: var(--orange-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .pricing-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-list li {
            padding: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .pricing-list li i {
            color: var(--orange-primary);
        }

        /* FAQ Section */
        .faq-section {
            padding: 8rem 0;
            background: white;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .accordion-button {
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1.5rem 2rem;
            background: white;
            color: var(--text-dark);
        }

        .accordion-button:not(.collapsed) {
            background: var(--orange-primary);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem 2rem;
        }

         /* Blog Section */
        .blog-section {
            padding: 6rem 0;
            background: var(--gray-bg);
        }

        /* Featured Post */
        .featured-post {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 4rem;
        }

        .featured-post-image {
            height: 450px;
            overflow: hidden;
            position: relative;
        }

        .featured-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .featured-badge {
            position: absolute;
            top: 2rem;
            left: 2rem;
            background: var(--orange-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .featured-post-content {
            padding: 3rem;
        }

        .post-category {
            color: var(--orange-primary);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .featured-post-content h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .featured-post-content h2 a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .featured-post-content h2 a:hover {
            color: var(--orange-primary);
        }

        .post-excerpt {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            padding-top: 1.5rem;
            border-top: 2px solid var(--gray-bg);
        }

        .post-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .post-meta-item i {
            color: var(--orange-primary);
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
        }

        /* Blog Post Card */
        .blog-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }

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

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .blog-date {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-weight: 800;
            font-size: 0.85rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .blog-card-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card-content h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-card-content h3 a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog-card-content h3 a:hover {
            color: var(--orange-primary);
        }

        .blog-card-excerpt {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.7;
            flex: 1;
        }

        .read-more {
            color: var(--orange-primary);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .read-more:hover {
            gap: 1rem;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 25px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }

        .widget-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--orange-primary);
        }

        /* Search Widget */
        .search-form {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 1rem 3.5rem 1rem 1.5rem;
            border: 2px solid var(--gray-bg);
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--orange-primary);
            box-shadow: 0 0 0 4px rgba(241, 126, 31, 0.1);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--orange-primary);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: var(--orange-dark);
            transform: translateY(-50%) scale(1.1);
        }

        /* Categories Widget */
        .category-list {
            list-style: none;
            padding: 0;
        }

        .category-list li {
            margin-bottom: 1rem;
        }

        .category-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 1rem;
            background: var(--gray-bg);
            border-radius: 15px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .category-list a:hover {
            background: var(--orange-primary);
            color: white;
            transform: translateX(5px);
        }

        .category-count {
            background: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        /* Recent Posts Widget */
        .recent-post {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--gray-bg);
        }

        .recent-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .recent-post-image {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-post-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .recent-post-content h4 a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .recent-post-content h4 a:hover {
            color: var(--orange-primary);
        }

        .recent-post-date {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Tags Widget */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .tag {
            padding: 0.5rem 1.2rem;
            background: var(--gray-bg);
            border-radius: 50px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: var(--orange-primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Newsletter Widget */
        .newsletter-form input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid var(--gray-bg);
            border-radius: 15px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--orange-primary);
        }

        .newsletter-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            color: white;
            border: none;
            border-radius: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
        }

        /* Pagination */
        .pagination {
            margin-top: 4rem;
        }

        .page-link {
            border: 2px solid var(--gray-bg);
            color: var(--text-dark);
            font-weight: 700;
            padding: 0.8rem 1.2rem;
            margin: 0 0.3rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .page-link:hover,
        .page-item.active .page-link {
            background: var(--orange-primary);
            border-color: var(--orange-primary);
            color: white;
        }

        /* Service Header */
        .service-header {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
            padding: 150px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .service-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(241, 126, 31, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(241, 126, 31, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .service-header-content {
            position: relative;
            z-index: 2;
        }

        .breadcrumb-custom {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 2rem;
        }

        .breadcrumb-custom a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-custom a:hover {
            color: var(--orange-primary);
        }

        .breadcrumb-custom span {
            color: white;
        }

        .service-category {
            display: inline-block;
            background: var(--orange-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .service-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 3rem;
            max-width: 800px;
        }

        .service-meta {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .meta-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--orange-primary);
        }

        .meta-content h4 {
            color: white;
            font-weight: 800;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }

        .meta-content p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* Overview Section */
        .overview-section {
            padding: 6rem 0;
            background: white;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .feature-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
            border-color: var(--orange-primary);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        /* Process Section */
        .process-section {
            padding: 6rem 0;
            background: var(--gray-bg);
        }

        .process-timeline {
            position: relative;
            padding: 2rem 0;
        }

        .process-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
            position: relative;
            z-index: 2;
        }

        .process-content {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .process-content h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        /* Technologies Section */
        .tech-section {
            padding: 6rem 0;
            background: white;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 2rem;
        }

        .tech-item {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .tech-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            border-color: var(--orange-primary);
        }

        .tech-item i {
            font-size: 3rem;
            color: var(--orange-primary);
            margin-bottom: 1rem;
        }

        .tech-item h5 {
            font-weight: 700;
            color: var(--text-dark);
        }

        /* Pricing Section */
        .pricing-section {
            padding: 6rem 0;
            background: var(--gray-bg);
        }

        .pricing-card {
            background: white;
            border-radius: 30px;
            padding: 3rem 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            text-align: center;
            height: 100%;
            border: 3px solid transparent;
        }

        .pricing-card.featured {
            border-color: var(--orange-primary);
            transform: scale(1.05);
            background: linear-gradient(135deg, rgba(241, 126, 31, 0.05), rgba(243, 144, 63, 0.05));
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .pricing-badge {
            background: var(--orange-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .pricing-amount {
            font-size: 3rem;
            font-weight: 900;
            color: var(--orange-primary);
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .pricing-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-list li {
            padding: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--gray-bg);
        }

        .pricing-list li:last-child {
            border-bottom: none;
        }

        .pricing-list li i {
            color: var(--orange-primary);
            font-size: 1.1rem;
        }

        .btn-pricing {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border: none;
            color: white;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
        }

        .btn-pricing:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(241, 126, 31, 0.5);
        }

        /* Portfolio Section */
        .portfolio-section {
            padding: 6rem 0;
            background: white;
        }

        .portfolio-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

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

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

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

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(241, 126, 31, 0.9), rgba(243, 144, 63, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay a {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange-primary);
            font-size: 1.5rem;
            text-decoration: none;
        }

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-content h3 {
            font-weight: 800;
            margin-bottom: 0.8rem;
        }

        .portfolio-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .portfolio-tag {
            background: var(--gray-bg);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--orange-primary);
        }

        /* Testimonials */
        .testimonials-section {
            padding: 6rem 0;
            background: var(--dark-bg);
            color: white;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 3rem;
            height: 100%;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
        }

        .author-info h4 {
            color: white;
            font-weight: 800;
            margin-bottom: 0.3rem;
        }

        .author-info p {
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .rating {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

         /* Article Header */
        .article-header {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
            padding: 150px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .article-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(241, 126, 31, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(241, 126, 31, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .article-header-content {
            position: relative;
            z-index: 2;
        }

        .breadcrumb-custom {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 2rem;
        }

        .breadcrumb-custom a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-custom a:hover {
            color: var(--orange-primary);
        }

        .breadcrumb-custom span {
            color: white;
        }

        .article-category {
            display: inline-block;
            background: var(--orange-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .article-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            color: white;
            line-height: 1.2;
            margin-bottom: 2rem;
            letter-spacing: -1px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .author-box {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.5rem;
        }

        .author-info h4 {
            color: white;
            font-weight: 800;
            margin-bottom: 0.3rem;
        }

        .author-info p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .article-meta-item i {
            color: var(--orange-primary);
        }

        /* Article Section */
        .article-section {
            padding: 6rem 0;
            background: white;
        }

        /* Featured Image */
        .featured-image {
            margin-bottom: 4rem;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .featured-image img {
            width: 100%;
            display: block;
        }

        /* Article Content */
        .article-content {
            background: white;
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-dark);
        }

        .article-content h2 {
            font-size: 2.2rem;
            font-weight: 900;
            margin: 3rem 0 1.5rem;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .article-content h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin: 2.5rem 0 1.2rem;
            color: var(--text-dark);
        }

        .article-content p {
            margin-bottom: 1.5rem;
        }

        .article-content ul,
        .article-content ol {
            margin-bottom: 2rem;
            padding-left: 2rem;
        }

        .article-content li {
            margin-bottom: 0.8rem;
            line-height: 1.8;
        }

        .article-content blockquote {
            background: var(--gray-bg);
            border-left: 5px solid var(--orange-primary);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 15px;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--text-dark);
        }

        .article-content img {
            width: 100%;
            border-radius: 20px;
            margin: 2rem 0;
        }

        /* Code Block */
        .article-content pre {
            background: var(--dark-bg);
            color: #fff;
            padding: 2rem;
            border-radius: 15px;
            overflow-x: auto;
            margin: 2rem 0;
        }

        .article-content code {
            background: rgba(241, 126, 31, 0.1);
            color: var(--orange-primary);
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            font-family: 'Courier New', monospace;
        }

        .article-content pre code {
            background: none;
            color: #fff;
            padding: 0;
        }

        /* Share Box */
        .share-box {
            background: var(--gray-bg);
            padding: 2rem;
            border-radius: 20px;
            margin: 3rem 0;
            text-align: center;
        }

        .share-box h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .share-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .share-btn.facebook { background: #3b5998; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.linkedin { background: #0077b5; }
        .share-btn.whatsapp { background: #25d366; }
        .share-btn.pinterest { background: #e60023; }

        /* Tags */
        .article-tags {
            margin: 3rem 0;
        }

        .article-tags h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .tag {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: var(--gray-bg);
            border-radius: 50px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            margin: 0.3rem;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: var(--orange-primary);
            color: white;
        }

        /* Author Bio */
        .author-bio {
            background: var(--gray-bg);
            padding: 3rem;
            border-radius: 25px;
            margin: 4rem 0;
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .author-bio-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 3rem;
            flex-shrink: 0;
        }

        .author-bio-content h3 {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }

        .author-bio-content p {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .author-social {
            display: flex;
            gap: 1rem;
        }

        .author-social a {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .author-social a:hover {
            background: var(--orange-primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Related Posts */
        .related-posts {
            margin-top: 6rem;
        }

        .related-posts h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 3rem;
            text-align: center;
        }

        .related-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }

        .related-card-image {
            height: 200px;
            overflow: hidden;
        }

        .related-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .related-card-content {
            padding: 2rem;
        }

        .related-card-content h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .related-card-content h3 a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .related-card-content h3 a:hover {
            color: var(--orange-primary);
        }

        /* Comments Section */
        .comments-section {
            margin-top: 6rem;
            background: var(--gray-bg);
            padding: 4rem;
            border-radius: 25px;
        }

        .comments-section h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 3rem;
        }

        .comment {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
        }

        .comment-author {
            font-weight: 800;
            margin-bottom: 0.2rem;
        }

        .comment-date {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Comment Form */
        .comment-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            margin-top: 3rem;
        }

        .comment-form h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .form-control {
            padding: 1rem 1.5rem;
            border: 2px solid var(--gray-bg);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--orange-primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(241, 126, 31, 0.1);
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            color: white;
            border: none;
            padding: 1rem 3rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(241, 126, 31, 0.5);
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 25px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }

        .widget-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--orange-primary);
        }

        /* Table of Contents */
        .toc-list {
            list-style: none;
            padding: 0;
        }

        .toc-list li {
            margin-bottom: 1rem;
        }

        .toc-list a {
            display: block;
            padding: 0.8rem 1rem;
            background: var(--gray-bg);
            border-radius: 10px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .toc-list a:hover,
        .toc-list a.active {
            background: var(--orange-primary);
            color: white;
            transform: translateX(5px);
        }


    
    /* ========================================== */
    /* ULTRA FIX FOR "YOUR LEARNING JOURNEY" SECTION */
    /* ========================================== */
    
    .process-section {
        background: #1a1a2e !important;
        padding: 5rem 0 !important;
        margin: 0 !important;
    }
    
    /* Force ALL text in process section to white */
    .process-section,
    .process-section *,
    .process-section h1,
    .process-section h2,
    .process-section h3,
    .process-section h4,
    .process-section h5,
    .process-section h6,
    .process-section p,
    .process-section span,
    .process-section div {
        color: var(--text-dark) !important;
    }
    
    /* Section header */
    .process-section .section-title {
        color: white !important;
        font-weight: 800 !important;
        font-size: clamp(2rem, 4vw, 2.5rem) !important;
        margin-bottom: 1rem !important;
    }
    
    .process-section .section-subtitle {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: clamp(1rem, 2vw, 1.1rem) !important;
    }
    
    /* Process step cards */
    .process-step {
        background: rgba(255, 255, 255, 0.08) !important;
        padding: 2.5rem 2rem !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(10px) !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
    }
    
    .process-step:hover {
        background: rgba(255, 255, 255, 0.12) !important;
        transform: translateY(-5px) !important;
        border-color: rgba(241, 126, 31, 0.5) !important;
    }
    
    /* Process numbers */
    .process-number,
    .process-step .process-number {
        background: linear-gradient(135deg, #f17e1f 0%, #ff9a56 100%) !important;
        color: white !important;
        font-weight: 800 !important;
        width: 70px !important;
        height: 70px !important;
        font-size: 2rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        margin: 0 auto 1.5rem auto !important;
        box-shadow: 0 10px 30px rgba(241, 126, 31, 0.3) !important;
    }
    
    /* Step titles */
    .process-step h4 {
        color: white !important;
        font-weight: 700 !important;
        font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
        margin: 0 0 1rem 0 !important;
        line-height: 1.4 !important;
    }
    
    /* Step descriptions */
    .process-step p {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
        line-height: 1.7 !important;
        margin: 0 !important;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .process-section {
            padding: 3rem 0 !important;
        }
        
        .process-step {
            padding: 2rem 1.5rem !important;
        }
        
        .process-number,
        .process-step .process-number {
            width: 60px !important;
            height: 60px !important;
            font-size: 1.5rem !important;
        }
    }

 
        /* SPACING FIXES */
        body { margin: 0; padding: 0; overflow-x: hidden; }
        section { margin: 0 !important; }
        .section-padding { padding: 5rem 0 !important; margin: 0 !important; }
        .stats-cards { padding: 3rem 0 !important; margin: 0 !important; }
        .hero-section { padding: 6rem 0 4rem 0 !important; margin: 0 !important; }
        .courses-section, .features-section, .process-section, 
        .testimonials-section, .cta-section { padding: 5rem 0 !important; margin: 0 !important; }
        .footer { padding: 4rem 0 2rem 0 !important; margin: 0 !important; }

        /* TEXT VISIBILITY ON DARK BACKGROUNDS - FORCE WHITE */
        /* .courses-section, .courses-section * { color: white ; } */
        .process-section, .process-section * { color: white !important; }
        .testimonials-section, .testimonials-section * { color: white !important; }
        .cta-section, .cta-section * { color: white !important; }

        /* COURSE CARDS - ENSURE ALL TEXT IS VISIBLE */
        .courses-section .course-card { background: rgba(255, 255, 255, 0.1) !important; }
        .courses-section .course-title { font-weight: 700 !important; }
        /* .courses-section .course-description { color: rgba(255, 255, 255, 0.9) !important; } */
        /* .courses-section .course-meta-item { color: white !important; } */
        .courses-section .course-badge { background: rgba(241, 126, 31, 0.9) !important; color: white !important; }
        .courses-section .course-badge-top { background: rgba(34, 197, 94, 0.9) !important; color: white !important; }
        .courses-section .course-rating { background: rgba(255, 255, 255, 0.2) !important; color: white !important; }

        /* STATS & NUMBERS */
        .hero-stat-number, .stat-number { color: #f17e1f !important; }
        .courses-section .hero-stat-number { color: #f17e1f !important; }
        .courses-section .hero-stat-label { color: rgba(255, 255, 255, 0.8) !important; }

        /* BUTTONS */
        .btn-primary-custom { background: #f17e1f !important; color: white !important; border: none !important; }

        /* LIGHT SECTIONS TEXT */
        .section-padding:not(.courses-section):not(.process-section):not(.testimonials-section):not(.cta-section) .section-title {
            color: var(--text-primary) !important;
        }
        .section-padding:not(.courses-section):not(.process-section):not(.testimonials-section):not(.cta-section) .section-subtitle {
            color: var(--text-muted) !important;
        }
        .feature-card h3, .feature-card h4, .feature-card h5 { color: var(--text-primary) !important; }
        .feature-card p { color: var(--text-muted) !important; }
        .service-card-main h3 { color: var(--text-primary); }
        .service-card-main p, .service-card-main li { color: var(--text-muted) !important; }
        .blog-card h4 { color: var(--text-primary) !important; }
        .blog-card p { color: var(--text-muted) !important; }

        /* SERVICE CARD WITH GRADIENT */
        .service-card-main[style*="linear-gradient"] * { color: white !important; }

        /* Z-INDEX */
        .container { position: relative; z-index: 2; }
        [style*="position: absolute"] { z-index: 0 !important; }

        /* REMOVE EXTRA MARGINS */
        .blog-card, .service-card-main, .feature-card, .portfolio-card, .course-card { margin-bottom: 0 !important; }
        /* .row { margin-bottom: 0 !important; } */

        /* PROCESS SECTION TEXT VISIBILITY */
        .process-step .process-number { background: #f17e1f !important; color: white !important; }
        .process-step h4 { color: white !important; font-weight: 700 !important; }
        .process-step p { color: rgba(255, 255, 255, 0.9) !important; }

        /* FIX LEARNING JOURNEY TEXT */
        .process-section .section-title { color: white !important; }
        .process-section .section-subtitle { color: rgba(255, 255, 255, 0.8) !important; }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .section-padding, .courses-section, .features-section, .process-section,
            .testimonials-section, .cta-section { padding: 3rem 0 !important; }
            .hero-section { padding: 4rem 0 3rem 0 !important; }
        }

        /* ==== COURSE PAGE VISIBILITY FIX ==== */

/* Agar courses page light background pe hai */
.courses-page .courses-section {
    background: var(--gray-bg) !important;   /* light grey */
    color: var(--text-dark) !important;
}

/* Course cards ka content text dark karo */
.courses-page .course-card {
    background: #ffffff !important;
}

.courses-page .course-content,
.courses-page .course-title,
.courses-page .course-description,
.courses-page .course-meta-item,
.courses-page .course-category,
.courses-page .course-instructor *,
.courses-page .course-rating {
    color: #1a1a1a !important;
}

/* Rating star ka color */
.courses-page .course-rating i {
    color: #ffc107 !important;
}

 /* Hero style reused from your hero-section but slimmer */
        .course-detail-hero {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
            position: relative;
            overflow: hidden;
            padding: 130px 0 80px;
        }
        .course-detail-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                    linear-gradient(rgba(241,126,31,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(241,126,31,0.04) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        .course-detail-hero .hero-inner {
            position: relative;
            z-index: 2;
        }

        .course-badge-main {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            background: rgba(255,255,255,0.08);
            border-radius: 999px;
            padding: 0.45rem 1.3rem;
            color: #fff;
            font-size: .85rem;
            margin-bottom: 1.2rem;
            border: 1px solid rgba(255,255,255,0.25);
        }

        .course-level-pill {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            padding: 0.35rem 1.1rem;
            border-radius: 999px;
            background: rgba(34,197,94,0.12);
            color: #22c55e;
            font-size: .8rem;
            font-weight: 700;
        }

        .course-meta-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 1.4rem;
            margin-top: 1.8rem;
        }

        .course-meta-item {
            display: flex;
            align-items: center;
            gap: .9rem;
            /* color: rgba(255,255,255,0.85); */
        }

        .course-meta-icon {
            width: 46px;
            height: 46px;
            border-radius: 16px;
            background: rgba(255,255,255,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange-primary);
        }

        .course-meta-label {
            font-size: .8rem;
            opacity: .8;
        }
        .course-meta-value {
            font-weight: 800;
        }

        .course-layout {
            padding: 4rem 0 5rem;
        }

        .course-sidebar {
            position: sticky;
            top: 110px;
        }

        .info-chip {
            display: flex;
            align-items: center;
            gap: .7rem;
            padding: .75rem 1rem;
            border-radius: 14px;
            background: var(--gray-bg);
            margin-bottom: .7rem;
            font-size: .9rem;
        }

        .info-chip i {
            color: var(--orange-primary);
        }

        .curriculum-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .curriculum-list li {
            display: flex;
            gap: .7rem;
            padding: .55rem 0;
            border-bottom: 1px solid var(--gray-bg);
            font-size: .95rem;
        }

        .curriculum-list li:last-child {
            border-bottom: none;
        }

        .curriculum-list i {
            color: var(--orange-primary);
            margin-top: .2rem;
        }

        .pill-tag {
            display: inline-block;
            padding: 0.35rem 1rem;
            border-radius: 999px;
            background: rgba(241,126,31,0.06);
            color: var(--text-dark);
            font-size: 0.85rem;
            font-weight: 600;
            margin: 0.2rem .3rem .2rem 0;
        }

        @media (max-width: 991.98px) {
            .course-sidebar {
                position: static;
                margin-top: 2rem;
            }
        }


          .service-detail-hero {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
            position: relative;
            overflow: hidden;
            padding: 130px 0 80px;
        }
        .service-detail-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                    linear-gradient(rgba(241,126,31,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(241,126,31,0.04) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }
        .service-detail-hero .inner {
            position: relative;
            z-index: 2;
        }
        .service-label {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            background: rgba(255,255,255,0.08);
            border-radius: 999px;
            padding: 0.45rem 1.3rem;
            color: #fff;
            font-size: .85rem;
            border: 1px solid rgba(255,255,255,0.25);
            margin-bottom: 1.2rem;
        }
        .service-meta-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 1.4rem;
            margin-top: 1.8rem;
        }
        .service-meta-item {
            display: flex;
            align-items: center;
            gap: .9rem;
            color: rgba(255,255,255,0.85);
        }
        .service-meta-icon {
            width: 46px;
            height: 46px;
            border-radius: 16px;
            background: rgba(255,255,255,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange-primary);
        }
        .service-meta-label {
            font-size: .8rem;
            opacity: .8;
        }
        .service-meta-value {
            font-weight: 800;
        }

        .service-detail-layout {
            padding: 4rem 0 5rem;
            background: #f5f5f7;
        }
        .service-sidebar {
            position: sticky;
            top: 110px;
        }
        .info-chip {
            display: flex;
            align-items: center;
            gap: .7rem;
            padding: .75rem 1rem;
            border-radius: 14px;
            background: var(--gray-bg);
            margin-bottom: .7rem;
            font-size: .9rem;
        }
        .info-chip i {
            color: var(--orange-primary);
        }
        .feature-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .feature-list li {
            display: flex;
            gap: .7rem;
            padding: .5rem 0;
            border-bottom: 1px solid var(--gray-bg);
            font-size: .95rem;
        }
        .feature-list li:last-child {
            border-bottom: none;
        }
        .feature-list i {
            color: var(--orange-primary);
            margin-top: .2rem;
        }
        .pill-tag {
            display: inline-block;
            padding: 0.35rem 1rem;
            border-radius: 999px;
            background: rgba(241,126,31,0.06);
            color: var(--text-dark);
            font-size: .85rem;
            font-weight: 600;
            margin: 0.2rem .3rem .2rem 0;
        }
        @media (max-width: 991.98px) {
            .service-sidebar { position: static; margin-top: 2rem; }
        }

        .page-header-legal {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .page-header-legal::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                    linear-gradient(rgba(241,126,31,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(241,126,31,0.04) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }
        .page-header-legal .inner {
            position: relative;
            z-index: 2;
        }
        .legal-badge {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            background: rgba(255,255,255,0.08);
            border-radius: 999px;
            padding: 0.4rem 1.2rem;
            color: #fff;
            font-size: .85rem;
            border: 1px solid rgba(255,255,255,0.25);
            margin-bottom: 1.2rem;
        }
        .legal-content {
            padding: 4rem 0 5rem;
            background: #f5f5f7;
        }
        .legal-card {
            background: #ffffff;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }
        .legal-section-title {
            font-size: 1.2rem;
            font-weight: 800;
            margin-top: 2rem;
            margin-bottom: .6rem;
            color: var(--text-dark);
        }
        .legal-list {
            padding-left: 1.2rem;
        }
        .legal-list li {
            margin-bottom: .2rem;
        }
        @media (max-width: 767.98px) {
            .legal-card { padding: 2rem; }
        }
    

   
.service-card-image {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Overlay with Icon Badge */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-image:hover .service-overlay {
    opacity: 1;
}

.service-icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(241, 126, 31, 0.4);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.service-card-image:hover .service-icon-badge {
    transform: scale(1);
}

/* Content Section */
.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-label {
    display: inline-block;
    background: rgba(241, 126, 31, 0.1);
    color: var(--orange-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    width: fit-content;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
}

/* Responsive */
@media (max-width: 767.98px) {
    .service-image-wrapper {
        height: 220px;
    }
    .service-content {
        padding: 1.5rem;
    }
}

/* ========================================
   WHY CHOOSE CODING PARTNER (ENHANCED)
======================================== */
.why-coding-partner {
    padding: 6rem 0;
    background: radial-gradient(circle at top left, rgba(241,126,31,0.18), transparent 55%),
                radial-gradient(circle at bottom right, #0a0a0a, #050505);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-coding-partner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.why-coding-partner .container {
    position: relative;
    z-index: 2;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 0.45rem 1.3rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-subtitle {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.why-highlight-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin-right: 1rem;
    box-shadow: 0 15px 40px rgba(241,126,31,0.5);
}

.why-highlight h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #fff;
}

.why-highlight p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.why-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.5rem;
}

.why-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(15,15,15,0.9);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

.why-tag i {
    color: var(--orange-primary);
}

/* right side cards */
.why-card {
    position: relative;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.12), rgba(8,8,8,0.96));
    border-radius: 24px;
    padding: 1.7rem 1.6rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    height: 100%;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(241,126,31,0.22), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
    border-color: rgba(241,126,31,0.6);
}

.why-card:hover::after {
    opacity: 1;
}

.why-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--orange-primary);
    margin-bottom: 0.9rem;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
}

.why-card p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 0.93rem;
    line-height: 1.7;
}

.why-bottom-note {
    margin-top: 1.3rem;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.75);
    border: 1px dashed rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.why-bottom-note i {
    color: var(--orange-primary);
}

/* responsive */
@media (max-width: 991.98px) {
    .why-coding-partner {
        padding: 4.5rem 0;
    }
    .why-bottom-note {
        width: 100%;
        justify-content: center;
    }
}

.services-premium-bento {
    padding: 6rem 0;
    background: #ffffff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(0,0,0,0.18);
}

.bento-large {
    grid-column: span 7;
    grid-row: span 2;
}

.bento-tall {
    grid-column: span 5;
    grid-row: span 1;
}

.bento-wide {
    grid-column: span 5;
    grid-row: span 1;
}

.bento-image {
    position: absolute;
    inset: 0;
}

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

.bento-item:hover .bento-image img {
    transform: scale(1.08);
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 100%);
    color: white;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    box-shadow: 0 15px 40px rgba(241,126,31,0.5);
}

.bento-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.bento-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.bento-link:hover {
    gap: 0.8rem;
}

@media (max-width: 991.98px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    .bento-large, .bento-tall, .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}
.services-split {
    padding: 6rem 0;
    background: #ffffff;
}

.split-row {
    display: flex;
    align-items: center;
    min-height: 540px;
    margin-bottom: 0;
}

.split-row-reverse {
    flex-direction: row-reverse;
}

.split-media {
    flex: 1;
    height: 540px;
    overflow: hidden;
    position: relative;
}

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

.split-row:hover .split-media img {
    transform: scale(1.05);
}

.split-content {
    flex: 1;
    padding: 4rem 5rem;
    background: var(--gray-bg);
}

.split-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.split-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.split-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.split-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.split-features i {
    color: var(--orange-primary);
}

@media (max-width: 991.98px) {
    .split-row, .split-row-reverse {
        flex-direction: column;
    }
    .split-media {
        height: 320px;
        width: 100%;
    }
    .split-content {
        padding: 3rem 2rem;
    }
}


/* ========================================
   FEATURED PROGRAMS - TWO PER ROW
======================================== */
.featured-programs-grid {
    padding: 6rem 0;
    background: #ffffff;
}

.course-card-compact {
    background: #ffffff;
   border: 1px solid rgb(71 75 80 / 18%);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.course-card-compact:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-6px);
}

.course-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-top h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.course-badge {
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-popular {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.badge-trending {
    background: rgba(241, 126, 31, 0.15);
    color: var(--orange-primary);
}

.course-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
}

.course-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    margin-bottom: 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.course-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.course-stats i {
    color: var(--orange-primary);
}

.course-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: var(--gray-bg);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.course-detail-link:hover {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: white;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(241, 126, 31, 0.4);
}

/* Responsive */
@media (max-width: 991.98px) {
    .featured-programs-grid {
        padding: 4.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .course-card-compact {
        padding: 1.5rem;
    }
    
    .course-top {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    .course-badge {
        align-self: flex-start;
    }
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    color: rgba(255, 255, 255, 0.85);
}

