@charset "utf-8";
/* CSS Document */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,248,255,0.95) 100%);
            padding: 0.6rem 0;
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 8px;
        }
		.logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e40af00 0%, #3b82f600 50%, #06b6d400 100%);
    display: flex
;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1rem;
}
		.logo img{
    width: 120px;
}

        .brand-text {
            font-size: 1.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
            max-width: 500px;
            justify-content: center;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: #1e40af;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 20px;
            padding: 6px 14px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
        }

        .search-box:hover {
            background: rgba(59, 130, 246, 0.15);
            transform: translateY(-1px);
        }

        .search-input {
            border: none;
            background: none;
            outline: none;
            padding: 2px 6px;
            width: 120px;
            color: #333;
            font-size: 0.85rem;
        }

        .search-input::placeholder {
            color: #666;
            font-size: 0.85rem;
        }

        .search-btn {
            border: none;
            background: none;
            cursor: pointer;
            font-size: 0.9rem;
            color: #1e40af;
            transition: transform 0.3s ease;
        }

        .search-btn:hover {
            transform: scale(1.1);
        }

        .auth-buttons {
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }

        .login-btn {
            color: #1e40af;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .login-btn:hover {
            background: rgba(30, 64, 175, 0.1);
            border-color: rgba(30, 64, 175, 0.2);
        }

        .register-btn {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 12px rgba(59, 130, 246, 0.3);
        }

        .register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .join-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }
        .course-icon img{
    width: 100%!important;
    height: auto!important;
}    .main-container {
            max-width: 1200px;
            margin: 0 auto;
        }
		/* Submenu styles */
.nav-menu .submenu {
    display: none;
    position: absolute;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-radius: 6px;
    z-index: 1000;
}

.nav-menu .submenu li {
    width: 100%;
}

.nav-menu .submenu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-menu .submenu li a:hover {
    background: #f2f2f2;
}

/* Show submenu on hover */
.nav-menu li.has-submenu {
    position: relative;
}

.nav-menu li.has-submenu:hover .submenu {
    display: block;
}

        /* Breadcrumb */
        .breadcrumb {
            margin-bottom: 30px;
            padding-top: 20px;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: #666;
        }

        .breadcrumb-link {
            color: #007bbf;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover {
            color: #005a8b;
        }

        .breadcrumb-separator {
            color: #999;
        }

        .breadcrumb-current {
            color: #333;
            font-weight: 500;
        }

        /* Hero Section */
        .hero-section {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            margin-bottom: 40px;
            align-items: start;
        }

        .hero-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 123, 191, 0.15);
            border: 2px solid rgba(0, 123, 191, 0.1);
        }

         /* Pricing Card */
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(0, 123, 191, 0.1);
            position: sticky;
            top: 20px;
        }

        .price-header {
            background: linear-gradient(178deg, #37a9e2 0%, #0a2762 100%);
            color: white;
            padding: 15px 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 25px;
            font-size: 24px;
            font-weight: 700;
        }

        .course-includes {
            margin-bottom: 25px;
        }

        .course-includes h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .include-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .include-item:last-child {
            border-bottom: none;
        }

        .include-label {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            font-size: 14px;
        }

        .include-label i {
            color: #007bbf;
            width: 16px;
        }

        .include-value {
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }

        .payment-methods {
            margin-bottom: 25px;
        }

        .payment-methods h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .payment-icons {
            display: flex;
            gap: 10px;
        }

        .payment-icon {
            width: 40px;
            height: 25px;
            background: #f8f9fa;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e9ecef;
            font-size: 12px;
            font-weight: 600;
            color: #666;
        }

        .enroll-btn {
            width: 100%;
            background: linear-gradient(178deg, #2b5ed0 0%, #0a2762 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .enroll-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(217, 119, 6, 0.4);
        }

        /* Course Header */
        .course-header {
            margin-bottom: 30px;
        }

        .course-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .course-title h1 {
            font-size: 32px;
            font-weight: 800;
            color: #1a1a1a;
        }

        .course-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #666;
        }

        .stars {
            color: #fbbf24;
        }

        .rating-text {
            color: #666;
        }

        /* Course Tabs */
        .course-tabs {
            display: flex;
            gap: 2px;
            margin-bottom: 30px;
            background: #f8f9fa;
            padding: 4px;
            border-radius: 15px;
            width: fit-content;
        }

        .tab-btn {
            background: transparent;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
        }

        .tab-btn.active {
            background: linear-gradient(178deg, #229ae6 0%, #0a2762 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
        }

        /* Course Content */
        .course-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border: 2px solid rgba(0, 123, 191, 0.05);
        }

        .content-title {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 30px;
            text-align: center;
        }

        .pricing-section {
            text-align: center;
            margin-bottom: 30px;
        }

        .mrp-price {
            font-size: 18px;
            color: #666;
            margin-bottom: 10px;
        }

        .discounted-price {
            font-size: 24px;
            font-weight: 700;
            color: #007bbf;
            margin-bottom: 20px;
        }

        .course-description {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .course-list {
            margin-bottom: 30px;
        }

        .course-list h4 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .course-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            font-size: 15px;
            color: #555;
            border-bottom: 1px solid #f0f0f0;
        }

        .course-item:last-child {
            border-bottom: none;
        }

        .course-item i {
            color: #007bbf;
            width: 16px;
        }

        .final-description {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            padding: 25px;
            background: #f8f9ff;
            border-radius: 15px;
            border-left: 4px solid #007bbf;
        }

        /* Simple Course Modules */
        .simple-course-modules {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border: 2px solid rgba(0, 123, 191, 0.05);
        }

        .modules-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .modules-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        /* Accordion Course Sections */
        .course-section {
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .course-section:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .course-name {
            background: linear-gradient(135deg, #007bbf 0%, #005a8b 100%);
            color: white;
            padding: 15px 20px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .course-name:hover {
            background: linear-gradient(135deg, #005a8b 0%, #004466 100%);
        }

        .course-name::after {
            content: '+';
            font-size: 24px;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .course-section.active .course-name::after {
            transform: rotate(45deg);
        }

        .module-list {
            max-height: 0;
            overflow: hidden;
            list-style: none;
            margin: 0;
            padding: 0;
            background: #f8f9fa;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .course-section.active .module-list {
            max-height: 500px;
            padding: 15px 20px;
        }

        .module-list li {
            padding: 10px 0;
            color: #555;
            font-size: 15px;
            border-bottom: 1px solid #e5e7eb;
            position: relative;
            padding-left: 25px;
            transition: all 0.3s ease;
        }

        .module-list li:before {
            content: "•";
            color: #007bbf;
            font-weight: bold;
            position: absolute;
            left: 8px;
        }

        .module-list li:last-child {
            border-bottom: none;
        }

        .module-list li:hover {
            color: #007bbf;
            cursor: pointer;
            transform: translateX(8px);
            background: rgba(0, 123, 191, 0.05);
            border-radius: 4px;
            margin: 2px 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero-image {
                height: 250px;
            }

            .pricing-card {
                position: static;
            }

            .content-title {
                font-size: 28px;
            }

            .course-tabs {
                width: 100%;
                justify-content: center;
            }

            .modules-header h2 {
                font-size: 28px;
            }

            .course-name {
                font-size: 16px;
                padding: 12px 15px;
            }

            .module-list li {
                font-size: 14px;
            }
        }
		/* Footer */
        .footer {
            background: #1e293b;
            color: white;
            padding: 3rem 0 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-brand-text {
            font-size: 1.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-brand p {
            color: #94a3b8;
            line-height: 1.6;
            max-width: 400px;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b82f6;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .social-link:hover {
            background: #3b82f6;
            color: white;
            transform: translateY(-2px);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.6rem;
        }

        .footer-section ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.85rem;
        }

        .footer-section ul li a:hover {
            color: #3b82f6;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 1.5rem;
            text-align: center;
            color: #94a3b8;
            font-size: 0.85rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-menu {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .stat-numbers {
                grid-template-columns: 1fr;
            }
            
            .courses-grid {
                grid-template-columns: 1fr;
            }
            
            .founder-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
                align-items: stretch;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
        }