        :root {
            --primary-color: #1e3a8a;
            --secondary-color: #3b82f6;
            --text-dark: #1f2937;
            --text-gray: #6b7280;
            --border-color: #e5e7eb;
            --top-nav-bg: #2d3748;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Container Variants */
        .nav-container,
        .header-container,
        .hero-container,
        .category-container,
        .courses-container,
        .featured-container,
        .recent-container,
        .instructor-section-container,
        .instructors-container,
        .companies-container,
        .stats-container,
        .footer-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Top Navigation Bar Styles */
        .top-nav {
            background-color: var(--top-nav-bg);
            padding: 0.75rem 0;
        }

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

        .top-nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .top-nav-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 400;
            transition: color 0.3s;
        }

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

        .top-nav-link.active {
            color: white;
            font-weight: 500;
        }

        .top-nav-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .top-nav-selector {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9375rem;
            cursor: pointer;
            padding: 0;
        }

        .top-nav-selector:focus {
            outline: none;
        }

        /* Main Header/Navbar Styles */
        .main-header {
            background-color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .navbar-brand {
            margin: 0;
            padding: 0;
            flex-shrink: 0;
        }

        .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-dark);
            cursor: pointer;
            padding: 0.5rem;
        }

        .browse-dropdown {
            position: relative;
        }

        .browse-btn {
            background-color: white;
            border: 1px solid var(--border-color);
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.9375rem;
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .browse-btn:hover {
            border-color: var(--secondary-color);
            color: var(--secondary-color);
        }

        .search-bar-wrapper {
            flex: 1;
            max-width: 500px;
        }

        .search-bar {
            display: flex;
            align-items: center;
            background-color: white;
            border: 1px solid var(--border-color);
            padding: 0.5rem 1rem;
            transition: border-color 0.3s;
        }

        .search-bar:focus-within {
            border-color: var(--secondary-color);
        }

        .search-bar input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
            font-size: 0.9375rem;
            padding: 0.25rem 0.5rem;
            color: var(--text-dark);
        }

        .search-bar input::placeholder {
            color: #9ca3af;
        }

        .search-bar .search-icon {
            background: transparent;
            border: none;
            color: var(--text-gray);
            cursor: pointer;
            padding: 0;
            font-size: 1rem;
            margin-right: 0.5rem;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-left: auto;
        }

        .header-icon {
            color: var(--text-dark);
            font-size: 1.25rem;
            text-decoration: none;
            position: relative;
            transition: color 0.3s;
        }

        .header-icon:hover {
            color: var(--secondary-color);
        }

        .header-buttons {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-create-account {
            background-color: white;
            border: 1.5px solid var(--primary-color);
            color: var(--primary-color);
            padding: 0.5rem 1.25rem;
            font-weight: 500;
            font-size: 0.9375rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-create-account:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-sign-in {
            background-color: var(--primary-color);
            border: none;
            color: white;
            padding: 0.5rem 1.75rem;
            font-weight: 500;
            font-size: 0.9375rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-sign-in:hover {
            background-color: #1e40af;
            color: white;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.5rem 1.5rem;
            font-weight: 500;
        }

        .btn-primary:hover {
            background-color: #1e40af;
            border-color: #1e40af;
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: white;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 2000;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-dark);
            cursor: pointer;
        }

        .mobile-menu-content {
            padding: 1.5rem;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.75rem 0;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-nav-link:hover {
            color: var(--secondary-color);
        }

        .mobile-selectors {
            padding: 1rem 0;
            border-top: 1px solid var(--border-color);
        }

        .mobile-selector-group {
            margin-bottom: 1rem;
        }

        .mobile-selector-label {
            font-size: 0.875rem;
            color: var(--text-gray);
            margin-bottom: 0.5rem;
            display: block;
        }

        .mobile-selector {
            width: 100%;
            padding: 0.5rem;
            border: 1px solid var(--border-color);
            font-size: 0.9375rem;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1999;
        }

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

        /* Hero Section */
        .hero-section {
            background-color: white;
            padding: 2rem 0;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .hero-text {
            font-size: 1.125rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-image {
            width: 100%;
            height: auto;
        }

        /* Category Section */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }

        .category-card {
            background: white;
            /* padding: 1.5rem;
            margin-bottom: 1.5rem; */
            /* border: 1px solid var(--border-color); */
            transition: all 0.3s;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .category-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 1rem;
        }

        .category-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .category-count {
            font-size: 0.875rem;
            color: var(--text-gray);
        }

        /* Course Card */
        .course-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #eef0f3;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .course-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
        }

        .become_course-card {
            background: white;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            height: 100%;
        }


        .course-image {
            width: 100%;
            height: 190px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .course-image {
                height: 160px;
            }
        }


        .course-body {
            padding: 16px;
        }


        .course-category {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 6px;
            letter-spacing: 0.4px;
        }


        .course-title {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            margin-top: 6px;
            color: var(--text-dark);

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

        @media (max-width: 768px) {
            .course-title {
                font-size: 15px;
            }
        }

        .course-rating {
            color: #fbbf24;
            font-size: 0.875rem;
        }

        .course-meta {
            font-size: 13px;
            color: #6b7280;
        }

        @media (max-width: 768px) {
            .course-meta {
                font-size: 12px;
            }
        }

        .course-price {
            font-size: 15px;
            font-weight: 700;
            color: #2563eb;
        }

        @media (max-width: 768px) {
            .course-price {
                font-size: 14px;
            }
        }


        /* Feature Course Card */
        .feature-course-card {
            background: white;
            /* padding: 1.25rem; */
            border: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
            display: flex;
            gap: 1.5rem;
            transition: all 0.3s;
        }

        .feature-course-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-course-image {
            width: 200px;
            /* height: 140px; */
            object-fit: cover;
            flex-shrink: 0;
        }

        .feature-course-content {
            flex: 1;
        }

        .feature-course-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .course-info-item {
            display: inline-flex;
            align-items: center;
            margin-right: 1.5rem;
            color: var(--text-gray);
            font-size: 0.875rem;
        }

        .course-info-item i {
            margin-right: 0.25rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            padding: 2.7rem;
            color: white;
            /* margin: 4rem 0; */
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Steps Section */
        .steps-section {
            background: white;
            padding: 3rem;
            border: 1px solid var(--border-color);
        }

        .step-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .step-text {
            font-size: 1rem;
            font-weight: 500;
        }

        /* Instructor Card */
        .instructor-card {
            text-align: center;
            /* padding: 1.5rem; */
        }

        .instructor-image {
            width: 120px;
            height: 120px;
            object-fit: cover;
            /* margin: 0 auto 1rem; */
        }

        .instructor-name {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .instructor-title {
            font-size: 0.875rem;
            color: var(--text-gray);
            margin-bottom: 0.5rem;
        }

        .instructor-rating {
            color: #fbbf24;
            font-size: 0.875rem;
        }

        /* Company Logos */
        .company-logo {
            height: 40px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s;
        }

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

        /* Stats Section */
        .stats-section {
            background-color: #111827;
            color: white;
            padding: 4rem 0;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* Footer */
        .footer {
            background-color: #111827;
            color: white;
            padding: 3rem 0 1.5rem;
        }

        .footer-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

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

        .social-icon {
            width: 40px;
            height: 40px;
            /* border-radius: 50%; */
            background-color: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.5rem;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        .app-badge {
            height: 40px;
            margin-right: 0.5rem;
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        .bg_selling {
            background-color: #e9ecef !important;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .top-nav-links {
                gap: 1.5rem;
            }

            .search-bar-wrapper {
                max-width: 350px;
            }

            .header-actions {
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .top-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
                order: 3;
                margin-left: auto;
            }

            .mobile-menu {
                display: block;
            }

            .header-content {
                flex-wrap: nowrap;
            }

            .browse-dropdown {
                display: none;
            }

            .search-bar-wrapper {
                max-width: 100%;
                flex: 1;
            }

            .header-actions {
                display: none;
            }

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

            .hero-section {
                padding: 3rem 0;
            }

            .feature-course-card {
                flex-direction: column;
            }

            .feature-course-image {
                width: 100%;
                height: 200px;
            }

            .cta-section {
                padding: 2rem;
            }

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

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.75rem;
            }

            .hero-text {
                font-size: 1rem;
            }

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

        .category-text {
            padding: 10px;
            margin: inherit;
        }

        .instructor-section {
            background-color: #f1f5f9;
        }

        .bg-light {
            --bs-bg-opacity: 1;
            background-color: rgb(241 245 249) !important;
        }

        .st_dash_tody {
            background-color: rgb(255 238 232) !important;

        }



        .instructors-container {
            background-color: white;
            /* margin-top: 5px; */
            padding: 34px;
        }

        .recent-container {
            background-color: white;
        }

        .featured-container {

            background-color: white;
            padding: 55px;
        }

        .main_logo {
            max-width: 100px;
        }

        .browse_all {
            background-color: #35353b;
            color: white;
        }

        .logo-card {
            background: #fff;
            padding: 30px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            /* Slight round corners */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            /* Soft shadow like image */
            height: 120px;
            transition: transform 0.3s ease;
        }

        .logo-card:hover {
            transform: translateY(-5px);
        }

        .logo-card img {
            max-width: 100%;
            height: auto;
            max-height: 50px;
            /* Logos ki height ek jaisi rakhta hai */
            object-fit: contain;
        }

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



        /* detail page */

        .breadcrumb {
            font-size: 0.875rem;
            background: transparent;
            padding: 1rem 0;
        }

        .breadcrumb-item+.breadcrumb-item::before {
            content: ">";
            color: var(--text-light);
        }



        .course-subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

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

        .instructor-avatars {
            display: flex;
            margin-right: 0.5rem;
        }

        .instructor-avatars img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
        }

        .instructor-avatars img:first-child {
            margin-left: 0;
        }

        .instructor-names {
            font-size: 0.875rem;
            color: var(--text-dark);
        }

        .rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fef3c7;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.875rem;
        }

        .star-rating {
            color: #f59e0b;
        }

        .video-container {
            position: relative;
            background: linear-gradient(135deg, #ffc0cb 0%, #ffc0cb 50%, #e0b0d5 50%, #e0b0d5 100%);
            border-radius: 8px;
            overflow: hidden;
            margin: 2rem 0;
        }

        .video-placeholder {
            position: relative;
            padding-top: 56.25%;
            background-size: cover;
            background-position: center;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .play-button i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-left: 5px;
        }

        .nav-tabs {
            border-bottom: 2px solid #e2e8f0;
        }

        .nav-tabs .nav-link {
            color: var(--text-light);
            border: none;
            padding: 1rem 1.5rem;
            font-weight: 500;
        }

        .nav-tabs .nav-link.active {
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
            background: transparent;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 2rem 0 1rem 0;
        }

        .learning-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background: #f7fafc;
            border-radius: 6px;
        }

        .learning-item i {
            color: #10b981;
            font-size: 1.25rem;
            flex-shrink: 0;
        }



        .curriculum-section {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .curriculum-header {
            background: #f7fafc;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #e2e8f0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .curriculum-stats {
            display: flex;
            gap: 2rem;
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .sidebar-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 1.5rem;
            position: sticky;
            top: 20px;
        }

        .price-section {
            margin-bottom: 1.5rem;
        }

        .current-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .original-price {
            font-size: 1.125rem;
            color: var(--text-light);
            text-decoration: line-through;
            margin-left: 0.5rem;
        }

        .discount-badge {
            display: inline-block;
            background: #fef3c7;
            color: #92400e;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        .time-left {
            color: #ef4444;
            font-size: 0.875rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .btn-add-cart {
            width: 100%;
            padding: 0.875rem;
            font-size: 1rem;
            font-weight: 600;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            margin-bottom: 0.75rem;
        }

        .btn-buy-now {
            width: 100%;
            padding: 0.875rem;
            font-size: 1rem;
            font-weight: 600;
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 6px;
            margin-bottom: 1.5rem;
        }

        .guarantee-text {
            text-align: center;
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .course-includes {
            margin-bottom: 1.5rem;
        }

        .course-includes h6 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .includes-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
        }

        .includes-item i {
            color: var(--text-dark);
            font-size: 1rem;
        }

        .share-section h6 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            color: var(--text-dark);
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--secondary-color);
        }

        .btn-wishlist {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.875rem;
        }

        .course-img {
            max-width: 82px;
            max-height: 73px;
        }

        .payment-option {
            border: 1px solid #e9ecef;
            border-radius: 4px;
            padding: 15px 20px;
            margin-bottom: 12px;
            background-color: #fff;
            transition: all 0.2s ease-in-out;
        }

        /* Active state with green border */
        .payment-option.active {
            border: 1.5px solid #2ecc71 !important;
        }

        .payment-text {
            font-size: 15px;
            color: #495057;
        }

        .payment-meta {
            font-size: 14px;
            color: #6c757d;
        }

        .paypal-info {
            font-size: 13px;
            color: #adb5bd;
        }

        /* Main Section Styling */
        .watch_course_comment_section {
            background-color: #fff;
            padding: 20px 0;
        }

        /* Header */
        .watch_course_comment_title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1e293b;
        }

        /* User Avatar */
        .watch_course_comment_avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Comment Body */
        .watch_course_comment_name {
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
            margin-right: 10px;
        }

        .watch_course_comment_time {
            font-size: 12px;
            color: #94a3b8;
        }

        .watch_course_comment_text {
            font-size: 14px;
            color: #475569;
            margin-top: 5px;
            line-height: 1.6;
        }

        /* Reply Link & Box */
        .watch_course_comment_reply_btn {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 8px;
            cursor: pointer;
        }

        .watch_course_comment_reply_btn:hover {
            color: #0f172a;
        }

        /* Nested Replies (Thread) */
        .watch_course_comment_thread {
            border-left: 2px solid #f1f5f9;
            margin-left: 22px;
            padding-left: 25px;
            margin-top: 15px;
        }

        /* Badge for Admin */
        .watch_course_comment_badge {
            font-size: 10px;
            background-color: #4f46e5;
            color: #fff;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: bold;
            text-transform: uppercase;
        }

        /* Input Area */
        .watch_course_comment_input_wrapper {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            display: flex;
            align-items: center;
            padding: 5px 15px;
            margin-top: 15px;
        }

        .watch_course_comment_input {
            border: none;
            flex-grow: 1;
            padding: 10px;
            font-size: 14px;
            outline: none;
        }

        .watch_course_comment_submit {
            background-color: #0f172a;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
        }

        /* Load More Button */
        .watch_course_comment_load_more {
            background-color: #fff1f0;
            color: #1e293b;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            width: 150px;
            display: block;
            margin: 40px 0;
        }

        .watch_course_container {
            background-color: #fcfcfc;
            padding-top: 30px;
        }

        /* Video Section */
        .watch_course_video_wrapper {
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        /* Navigation Tabs */
        .watch_course_nav_tabs {
            border-bottom: 1px solid #eee;
            margin-top: 20px;
        }

        .watch_course_nav_link {
            color: #666;
            text-decoration: none;
            padding: 10px 20px;
            display: inline-block;
            font-size: 14px;
        }

        .watch_course_nav_link.active {
            color: #000;
            border-bottom: 2px solid #000;
            font-weight: bold;
        }

        /* Payment Option Box */
        .watch_course_payment_item {
            border: 1px solid #eee;
            border-radius: 4px;
            padding: 15px 20px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            background: #fff;
        }

        .watch_course_payment_item.active {
            border: 1.5px solid #4ade80;
        }

        .watch_course_card_info {
            color: #555;
            font-size: 15px;
        }

        .watch_course_meta_text {
            color: #888;
            font-size: 14px;
        }

        /* Sidebar Course Content */
        .watch_course_sidebar {
            background: #fff;
            border-left: 1px solid #eee;
            height: 100%;
        }

        .watch_course_accordion_btn {
            font-weight: 600;
            font-size: 14px;
            color: #333;
            text-decoration: none;
        }

        .watch_course_lesson_item {
            font-size: 13px;
            padding: 8px 0;
            color: #555;
        }

        /* Navbar Main Wrapper */
        .watch_course_navbar {
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            padding: 12px 20px;
        }

        /* Back Button Circle */
        .watch_course_navbar_back {
            width: 45px;
            height: 45px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #334155;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .watch_course_navbar_back:hover {
            background: #eee;
        }

        /* Course Info Styling */
        .watch_course_navbar_title {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 4px;
        }

        .watch_course_navbar_meta {
            font-size: 13px;
            color: #64748b;
        }

        .watch_course_navbar_meta i {
            color: #6366f1;
            /* Icon color from image */
            margin-right: 4px;
        }

        /* Buttons */
        .watch_course_btn_review {
            background: #fff;
            color: #1e293b;
            border: 1px solid #e2e8f0;
            padding: 8px 16px;
            font-weight: 600;
            font-size: 14px;
            border-radius: 4px;
            transition: 0.3s;
        }

        .watch_course_btn_next {
            background: #0f172a;
            /* Dark navy color */
            color: #fff;
            border: none;
            padding: 8px 18px;
            font-weight: 600;
            font-size: 14px;
            border-radius: 4px;
            transition: 0.3s;
        }

        .watch_course_btn_next:hover {
            background: #1e293b;
            color: #fff;
        }

        /* student dashboard */



        /* Nav Tab Styling */
        .student_dashboard .nav-link {
            color: #666;
            font-weight: 500;
            padding: 15px 20px;
            border: none !important;
            border-bottom: 3px solid transparent !important;
        }

        .student_dashboard .nav-link.active {
            color: #000 !important;
            border-bottom: 3px solid #FF6636 !important;
            background: transparent !important;
        }

        /* Small Stats Cards */
        .student_dashboard .stat-card {
            background: white;
            padding: 15px;
            display: flex;
            align-items: center;
            min-height: 90px;
            border: 1px solid #eee;
        }

        .student_dashboard .icon-box {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .bg-enrolled {
            background-color: #E9F2FF;
        }

        .bg-active {
            background-color: #EDE7F6;
        }

        .bg-completed {
            background-color: #E8F5E9;
        }

        .bg-instructors {
            background-color: #FFF3E0;
        }

        .student_dashboard .course-card {
            border: 1px solid #eee;
            border-radius: 0;
            transition: 0.3s;
        }

        .student_dashboard .btn-watch {
            background-color: #FFEEE8;
            color: #FF6636;
            border: none;
            font-weight: 600;
            width: 100%;
            padding: 8px;
        }


        .circle_course {
            background-color: antiquewhite;
        }

        .teacher_button {
            background-color: antiquewhite !important;
            margin: 18px;
        }

        .header-bg {
            background-color: #FFF2F0;
            /* Light peach color */
            padding-top: 50px;
            padding-bottom: 100px;
            /* Neeche space zyada rakhein taaki card overlap ho sake */
            width: 100%;
        }

        .profile-card {
            background: #ffffff;
            border-radius: 8px;
            padding: 20px;
            margin-top: -80px;
            /* Ye property card ko background ke upar le jayegi */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            /* Halka shadow depth ke liye */
            position: relative;
            z-index: 10;
            /* Taaki card hamesha upar dikhe */
        }

        /* studnet chat  */
        /* Messenger Layout */
        .student_message_wrapper {
            display: flex;
            height: 600px;
            background: #fff;
            border: 1px solid #E9EAF0;
        }

        /* Sidebar Styling */
        .student_message_sidebar {
            width: 350px;
            border-right: 1px solid #E9EAF0;
            display: flex;
            flex-direction: column;
        }

        .student_message_sidebar_header {
            padding: 20px;
        }

        .student_message_search_group {
            position: relative;
            margin-top: 15px;
        }

        .student_message_search_group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #8C94A3;
        }

        .student_message_search_input {
            padding-left: 40px !important;
            height: 45px;
            background-color: #F5F7FA !important;
        }

        /* Chat List */
        .student_message_chat_list {
            overflow-y: auto;
            flex-grow: 1;
        }

        .student_message_user_item {
            padding: 15px 20px;
            display: flex;
            align-items: center;
            cursor: pointer;
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }

        .student_message_user_item.active {
            background-color: #FFEEE8;
            border-left-color: #FF6636;
        }

        .student_message_avatar_wrapper {
            position: relative;
            margin-right: 12px;
        }

        .student_message_status_dot {
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid #fff;
            background-color: #23BD33;
            /* Online Color */
        }

        .student_message_user_info h6 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .student_message_user_info p {
            font-size: 13px;
            color: #6E7485;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

        /* Chat Body */
        .student_message_main {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .student_message_header {
            padding: 15px 25px;
            border-bottom: 1px solid #E9EAF0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .student_message_area {
            flex-grow: 1;
            padding: 25px;
            overflow-y: auto;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Message Bubbles */
        .student_message_bubble_left {
            align-self: flex-start;
            max-width: 70%;
        }

        .student_message_bubble_right {
            align-self: flex-end;
            max-width: 70%;
        }

        .student_message_text_left {
            background: #FFEEE8;
            color: #1D2026;
            padding: 12px 16px;
            border-radius: 0px 8px 8px 8px;
            font-size: 14px;
        }

        .student_message_text_right {
            background: #1D2026;
            color: #fff;
            padding: 12px 16px;
            border-radius: 8px 0px 8px 8px;
            font-size: 14px;
        }

        .student_message_time {
            font-size: 11px;
            color: #8C94A3;
            margin-top: 5px;
            display: block;
        }

        .student_message_footer {
            padding: 20px 24px;
            border-top: 1px solid #E9EAF0;
            background: #fff;
        }

        .student_message_input_box {
            display: flex;
            gap: 16px;
            /* Button aur input ke darmiyan gap */
            align-items: center;
        }

        /* Input Wrapper to hold the icon inside */
        .student_message_input_wrapper {
            position: relative;
            flex-grow: 1;
        }

        .student_message_input_icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #4E5566;
            /* Grey icon color */
            font-size: 18px;
            pointer-events: none;
        }

        .student_message_input_field {
            padding: 12px 12px 12px 45px !important;
            /* Left padding for icon space */
            border: 1px solid #E9EAF0 !important;
            border-radius: 4px !important;
            font-size: 16px;
            color: #8C94A3;
        }

        .student_message_input_field::placeholder {
            color: #8C94A3;
        }

        /* Send Button Styling */
        .student_message_send_btn {
            background-color: #1D2026 !important;
            /* Dark navy color */
            color: #fff !important;
            padding: 12px 24px !important;
            font-weight: 600 !important;
            font-size: 14px !important;
            border-radius: 4px !important;
            text-transform: uppercase;
            /* Image ke mutabiq uppercase */
            border: none !important;
            display: flex;
            align-items: center;
        }

        .student_message_send_btn:hover {
            background-color: #333 !important;
        }

        .studnet_dashboard_become_instructor_btn {
            background-color: #fff2f0;
            border: none;
            color: black;
        }

        .istructor-profile-card {
            background: #ffffff;
            border-radius: 8px;
            padding: 20px;
            margin-top: -167px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 10;
        }

        .about_hero_section {
            background-color: #f3f9fa;
        }

        /* Image design ko clean aur proportional banane ke liye */
        .year-text {
            font-size: 4rem;
            /* Bada size jaisa image mein hai */
            color: #e9ecef;
            /* Light gray color */
            line-height: 1;
        }

        .custom-img-container img {
            height: 450px;
            /* Ek fixed height taaki dono images barabar dikhein */
            width: 100%;
            object-fit: cover;
            border-radius: 4px;
            /* Slight rounded corners */
        }

        .mission-section {
            background-color: #FDF0EA;
        }





        section.gallery-section {
            background-color: #F4F7FA;
        }

        .testimonial-card {
            background-color: #F4F7FA;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.8;
            color: #4a4a4a;
        }




        .wishlist-btn.inList i {
            color: #ef4444;
            /* red */
        }

        .wishlist-btn i {
            transition: color 0.3s ease, transform 0.2s ease;
        }

        .wishlist-btn.inList i {
            transform: scale(1.2);
        }

        .wishlist-badge {
            position: absolute;
            top: -5px;
            right: -8px;
            background: #ef4444;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 50%;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -8px;
            background: #ef4444;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 50%;
        }

        .top-nav-selector {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9375rem;
            cursor: pointer;
            padding: 0;
            outline: none;
            /* Focus outline hatane ke liye */
        }

        /* Dropdown ke andar ke words (options) ki styling */
        .top-nav-selector option {
            background-color: #1a1a1a;
            /* Dark background jo apki top nav se match kare */
            color: white;
            /* Text color */
            padding: 10px;
        }


        /* ================================
   FEATURED COURSES UI
================================ */

        .feature-course-card {
            background: #fff;
            border-radius: 12px;
            padding: 16px;
            gap: 16px;
            align-items: center;
            border: 1px solid #eef0f3;
            transition: all 0.3s ease;
        }

        .feature-course-card:hover {
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        /* Thumbnail */
        .feature-course-thumb {
            width: 140px;
            flex-shrink: 0;
        }

        .feature-course-thumb img {
            width: 100%;
            height: 110px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Content */
        .feature-course-content {
            display: flex;
            flex-direction: column;
        }

        /* Category */
        .course-category {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.4px;
            color: #2563eb;
            background: #eef2ff;
            padding: 4px 8px;
            border-radius: 6px;
            width: fit-content;
        }

        /* Title */
        .feature-course-content .course-title {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
            margin: 6px 0 4px;
            line-height: 1.4;
        }

        /* Rating */
        .course-rating {
            color: #f59e0b;
            font-weight: 700;
            font-size: 14px;
        }

        /* Price */
        .feature-course-price {
            font-size: 18px;
            font-weight: 800;
            color: #2563eb;
        }

        /* Meta */
        .feature-course-meta {
            display: flex;
            gap: 18px;
            font-size: 13px;
            color: #6b7280;
            margin-top: 6px;
        }

        .feature-course-meta i {
            margin-right: 4px;
            color: #9ca3af;
        }

        /* ================================
          MOBILE RESPONSIVE
        ================================ */
        @media (max-width: 768px) {

            .feature-course-card {
                flex-direction: column;
                align-items: flex-start;
            }

            .feature-course-thumb {
                width: 100%;
            }

            .feature-course-thumb img {
                height: 180px;
            }

            .feature-course-price {
                font-size: 16px;
            }

            .feature-course-content .course-title {
                font-size: 15px;
            }
        }

        /* ===============================
   BRANCHES SECTION
================================ */
.branch-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-6px);
}

.branch-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* Info box */
.branch-info {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 14px 16px;
    width: 85%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.branch-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2563eb;
}

/* Mobile */
@media (max-width: 768px) {
    .branch-image {
        height: 280px;
    }
}
