/* index.php */
        :root {
            --primary-color: #128C7E; 
            --secondary-color: #f7fafd;
            --accent-color: #FF6B6B;
            --dark-color: #0d0e0d;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 18px;
            line-height: 1.6;
            color: #333;
        }
    
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem ;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .header-cta-btn {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .header-cta-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .hero-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 5rem 0;
            border-bottom: 1px solid #eaf0f7;
        }
        
        .hero-headline {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        
        .hero-subheadline {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color:(--secondary-color);
            text-align: center;
        }
        
        .cta-button {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 469%;
            height: 3px;
            background-color: var(--light-color);
            bottom: -19px;
            left: 50%;
        }
        
        .feature-box {
            padding: 2rem;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 1.5rem;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .value-item {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .value-item:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        .urgency-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .how-it-works-step {
            text-align: center;
            padding: 2rem;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 1rem auto;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
        }
        
        .social-icon {
            color: white;
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid #495057;
            padding-top: 1.5rem;
            margin-top: 2rem;
        }
        
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary-color);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            color: white;
            transform: scale(1.1);
        }
        
        /* FAQ Styles */
        .faq-section {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 2rem;
        }
        
        .accordion-button {
            font-weight: 600;
            padding: 1.25rem;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(37, 211, 102, 0.1);
            color: var(--primary-color);
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.25);
        }
        
        .accordion-body {
            padding: 1.25rem;
        }
        
        .faq-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* New styles for centered H2 */
        h2 {
            text-align: center;
            width: 100%;
        }
        
        /* WhatsApp Mentorship Section H2 override */
        .whatsapp-mentorship h2 {
            text-align: left !important;
        }
         /* Remove underlines from all headings */
        h1, h2, h3, h4, h5, h6 {
            text-decoration: none !important;
            border-bottom: none !important;
        }
        
        /* WhatsApp mentorship section styling */
        .whatsapp-mentorship {
            background-color: #e8f5e9;
        }
        
        .whatsapp-mentorship img {
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        @media (max-width: 768px) {
            .hero-headline {
                font-size: 2rem;
            }
            
            .hero-subheadline {
                font-size: 1.1rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
            
            .section-title:after {
                left: 15%;
                width: 70%;
            }
            
            /* Make WhatsApp Mentorship H2 centered on mobile */
            .whatsapp-mentorship h2 {
                text-align: center !important;
            }
        }
    /* login.php */
    /* :root {
            --primary-color: #b3eec9; 
            --secondary-color: #6c757d;
            --accent-color: #FF6B6B;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        } */
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        
        /* Header Styles */
        /* .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0px 0 !important;
        } */
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .header-cta-btn {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .header-cta-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Login Container */
        .login-container {
            max-width: 500px;
            margin: 5rem auto;
            padding: 2.5rem;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .login-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .login-form .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
        }
        
        .login-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.25);
        }
        
        .login-btn {
            background-color: var(--primary-color);
            border: none;
            padding: 12px;
            font-weight: 600;
            border-radius: 8px;
            width: 100%;
            transition: all 0.3s;
        }
        
        .login-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
        }
        
        .login-links {
            text-align: center;
            margin-top: 1.5rem;
        }
        
        .login-links a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .login-links a:hover {
            color: #128C7E;
            text-decoration: underline;
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
        }
        
        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #ddd;
        }
        
        .divider-text {
            padding: 0 10px;
            color: var(--secondary-color);
        }
        
        .social-login-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ddd;
            background-color: white;
            width: 100%;
            margin-bottom: 1rem;
            transition: all 0.3s;
        }
        
        .social-login-btn:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
        }
        
        .social-login-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .google-btn {
            color: #DB4437;
            border-color: #DB4437;
        }
        
        .facebook-btn {
            color: #4267B2;
            border-color: #4267B2;
        }
        
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary-color);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            color: white;
            transform: scale(1.1);
        }
        
        @media (max-width: 768px) {
            .login-container {
                margin: 2rem auto;
                padding: 1.5rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
    /* courses.php */
      /* :root {
            --primary-color: #25D366;
            --secondary-color: #128C7E;
            --dark-color: #075E54;
            --light-color: rgb(242, 245, 243);
        } */
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Hero Section */
        .course-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                        url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80') no-repeat center center;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        
        .course-heading {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .course-subheading {
            font-size: 1.5rem;
            margin-bottom: 40px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        /* Feature Cards */
        .feature-card {
            background: rgba(213, 218, 213, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px 20px;
            margin: 10px;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(216, 212, 212, 0.918);
        }
        
        /* .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(239, 240, 238, 0.936);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        } */
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary-color);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            background-color: var(--dark-color);
            transform: scale(1.1);
        }
        
        /* Section Styling */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: var(--primary-color);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        /* Module Cards */
        .module-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-color);
        }
        
        .module-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .module-number {
            background: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        /* Pricing Card */
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid var(--light-color);
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 20px 0;
        }
        
        /* Buttons */
        .enroll-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .enroll-btn:hover {
            background: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Testimonial */
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            border-left: 4px solid var(--primary-color);
        }
        
        .testimonial-card:before {
            content: '"';
            font-size: 5rem;
            position: absolute;
            top: 10px;
            left: 15px;
            color: rgba(0,0,0,0.05);
            font-family: serif;
        }
        
        .testimonial-text {
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--dark-color);
            margin-top: 15px;
        }
        
        /* List Items */
        .benefit-item, .support-item {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }
        
        .benefit-item:before, .support-item:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .course-heading {
                font-size: 2.5rem;
            }
            
            .course-subheading {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .pricing-card {
                padding: 30px 20px;
            }
            
            .price {
                font-size: 2.5rem;
            }
        }
    /* secret-product.php */
     /* :root {
            --primary-color: #25D366; 
            --secondary-color: #6c757d;
            --accent-color: #FF6B6B;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        } */
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Header Styles */
        /* .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        } */
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .header-cta-btn {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .header-cta-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .results-hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 4rem 0;
            text-align: center;
        }
        
        .results-heading {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .results-subheading {
            font-size: 1.25rem;
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto 2rem auto;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .testimonial-text:before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
            left: -15px;
            top: -10px;
            font-size: 2rem;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .testimonial-role {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }
        
        .proof-badge {
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .proof-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 1rem;
            transition: all 0.3s;
        }
        
        .proof-image:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 12px;
            text-align: center;
        }
        
        .comparison-table td {
            padding: 12px;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .comparison-table .before {
            text-align: right;
            font-weight: 600;
            color: var(--accent-color);
            width: 45%;
        }
        
        .comparison-table .after {
            text-align: left;
            font-weight: 600;
            color: var(--primary-color);
            width: 45%;
        }
        
        .winning-item {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .winning-item:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        .founder-message {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            margin-top: 3rem;
        }
        
        .founder-message:before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
            left: 20px;
            top: 10px;
            font-size: 3rem;
        }
        
        .founder-signature {
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 1rem;
        }
        
        .enroll-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-block;
            margin-top: 1rem;
        }
        
        .enroll-btn:hover {
            background-color: #128C7E;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary-color);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            color: white;
            transform: scale(1.1);
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
            width: 100%;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 25%;
        }
        
        @media (max-width: 768px) {
            .results-hero {
                padding: 3rem 0;
            }
            
            .results-heading {
                font-size: 1.8rem;
            }
            
            .results-subheading {
                font-size: 1.1rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
            
            .section-title:after {
                left: 15%;
                width: 70%;
            }
            
            .comparison-table .before,
            .comparison-table .after {
                width: 40%;
            }
        }
    /* product.php */
     /* :root {
            --primary-color: #25D366;
            --secondary-color: #6c757d;
            --accent-color: #FF6B6B;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        } */
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        
        /* Header Styles */
        /* .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        } */
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .header-cta-btn {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .header-cta-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        .hero-title {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        /* Products Section */
        .products-section {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            margin: 15px auto;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .product-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .product-body {
            padding: 20px;
        }
        
        .product-title {
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .product-description {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .product-price {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .product-rating {
            color: #FFC107;
            margin-bottom: 15px;
        }
        
        .product-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
        }
        
        .product-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
        }
        
        /* Categories Filter */
        .categories-filter {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .category-btn {
            background: none;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 5px 15px;
            margin: 0 5px 10px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .category-btn:hover, .category-btn.active {
            background: var(--primary-color);
            color: white;
        }
        
        /* Search Box */
        .search-box {
            margin-bottom: 30px;
        }
        
        .search-input {
            border-radius: 50px;
            padding: 10px 20px;
            border: 1px solid #ddd;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            display: block;
        }
        
        .search-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.25);
            outline: none;
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary-color);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            color: white;
            transform: scale(1.1);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
        }
        
        .footer-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid #495057;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #adb5bd;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
    /* support.php */
     .support-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
        }
        
        .support-heading {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .support-subheading {
            font-size: 1.5rem;
            margin-bottom: 40px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        /* Equal height columns for Need Help section */
        .need-help-section .row {
            align-items: stretch;
        }
        
        .need-help-section .support-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .young-lady-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Enhanced CTA section */
        .final-cta-section {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .final-cta-section:before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .final-cta-section:after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .cta-heading {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            font-weight: 700;
            padding: 15px 40px;
            border-radius: 50px;
            margin: 10px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn-primary {
            background: white;
            color: #25D366;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .cta-btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        .cta-btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        
        .cta-btn-outline:hover {
            background: white;
            color: #25D366;
            transform: translateY(-5px);
        }
        
        .cta-badge {
            background: white;
            color: #25D366;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .support-heading {
                font-size: 2.5rem;
            }
            
            .support-subheading {
                font-size: 1.2rem;
            }
            
            .cta-heading {
                font-size: 2rem;
            }
            
            .cta-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }
    /* secret-product.php */
    /* :root {
            --primary-color: #25D366;
            --secondary-color: #6c757d;
            --accent-color: #FF6B6B;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        } */
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        
        /* Header Styles */
        .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .header-cta-btn {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .header-cta-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Hero Section */
        .secret-hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 0;
            text-align: center;
            position: relative;
        }
        
        .secret-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 0;
        }
        
        .secret-hero-content {
            position: relative;
            z-index: 1;
        }
        
        .secret-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .secret-subtitle {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            font-weight: 500;
        }
        
        .lock-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-20px);}
            60% {transform: translateY(-10px);}
        }
        
        /* Content Sections */
        .secret-section {
            padding: 1rem 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            margin: 15px auto;
        }
        
        .feature-box {
            background: var(--light-color);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            height: 100%;
            border-left: 5px solid var(--primary-color);
        }
        
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .feature-title {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .testimonial-card {
            background: var(--light-color);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: rgba(37, 211, 102, 0.1);
            position: absolute;
            top: 10px;
            left: 10px;
            line-height: 1;
        }
        
        .testimonial-text {
            position: relative;
            z-index: 1;
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--primary-color) 0%, #128C7E 100%);
            color: white;
            border-radius: 10px;
            padding: 3rem;
            text-align: center;
            margin-top: 3rem;
        }
        
        .cta-title {
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-btn {
            background-color: white;
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-block;
            margin-top: 1rem;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .reason-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .reason-icon {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 1rem;
            margin-top: 5px;
        }
        
        .bonus-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary-color);
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            color: white;
            transform: scale(1.1);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
        }
        
        .footer-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid #495057;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #adb5bd;
        }
        
        @media (max-width: 768px) {
            .secret-title {
                font-size: 2rem;
            }
            
            .secret-subtitle {
                font-size: 1.1rem;
            }
            
            .cta-box {
                padding: 2rem 1rem;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
        /* dashboard.php */
    /* :root {
            --primary-color: #25D366;
            --secondary-color: #6c757d;
            --accent-color: #FF6B6B;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        } */
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f7fa;
        }
        
        /* Mobile First Dashboard Styles */
        .dashboard-container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        /* Mobile Sidebar (Hidden by default) */
        .sidebar {
            width: 100%;
            background-color: white;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            position: fixed;
            height: 100vh;
            z-index: 1000;
            left: -100%;
            transition: all 0.3s;
        }
        
        .sidebar.active {
            left: 0;
        }
        
        .sidebar-header {
            padding: 15px;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .sidebar-header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
        }
        
        .sidebar-header h5 {
            margin: 0;
            font-size: 1rem;
        }
        
        .close-sidebar {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
        }
        
        .sidebar-menu {
            padding: 10px 0;
            max-height: calc(100vh - 80px);
            overflow-y: auto;
        }
        
        .sidebar-menu a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }
        
        .sidebar-menu a:hover, .sidebar-menu a.active {
            background-color: rgba(37, 211, 102, 0.1);
            color: var(--primary-color);
            border-left: 3px solid var(--primary-color);
        }
        
        .sidebar-menu a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
        }
        
        /* Main Content */
        .main-content {
            flex: 1;
            padding: 15px;
            transition: all 0.3s;
        }
        
        /* Mobile Header */
        .mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            padding: 10px 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            margin-bottom: 15px;
            position: sticky;
            top: 0;
            z-index: 900;
        }
        
        .menu-toggle {
            background: none;
            border: none;
            font-size: 1.25rem;
            color: var(--dark-color);
        }
        
        .mobile-header-title h1 {
            font-size: 1.25rem;
            margin: 0;
            color: var(--dark-color);
        }
        
        .user-profile-mobile {
            display: flex;
            align-items: center;
        }
        
        .user-profile-mobile img {
            width: 35px;
            height: 35px;
            border-radius: 50%;
        }
        
        /* Dashboard Cards */
        .dashboard-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            padding: 15px;
            margin-bottom: 15px;
        }
        
        .card-title {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 8px;
        }
        
        .welcome-message {
            background: linear-gradient(135deg, var(--primary-color), #128C7E);
            color: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
        }
        
        .welcome-message h2 {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }
        
        .welcome-message p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        /* Stats Cards */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .stats-card {
            text-align: center;
            padding: 12px;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .stats-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .stats-number {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 3px;
        }
        
        .stats-label {
            color: var(--secondary-color);
            font-size: 0.75rem;
        }
        
        /* Purchased Products */
        .purchased-products {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }
        
        .product-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .product-image {
            height: 150px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s;
        }
        
        .product-details {
            padding: 12px;
        }
        
        .product-title {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 0.95rem;
        }
        
        .product-price {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
        
        .product-date {
            font-size: 0.75rem;
            color: var(--secondary-color);
        }
        
        /* Courses Table */
        .courses-table {
            width: 100%;
            overflow-x: auto;
        }
        
        .table {
            min-width: 600px;
        }
        
        .table th, .table td {
            padding: 8px 12px;
            font-size: 0.85rem;
        }
        
        .progress {
            height: 20px;
        }
        
        .progress-bar {
            font-size: 0.7rem;
            line-height: 20px;
        }
        
        .btn-sm {
            padding: 3px 8px;
            font-size: 0.8rem;
        }
        
        /* Overlay when sidebar is open */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Desktop Styles */
        @media (min-width: 768px) {
            .dashboard-container {
                flex-direction: row;
            }
            
            .sidebar {
                width: 250px;
                left: 0;
                position: fixed;
                height: 100vh;
            }
            
            .sidebar-header {
                flex-direction: column;
                padding: 20px;
            }
            
            .sidebar-header img {
                width: 80px;
                height: 80px;
                margin-bottom: 10px;
            }
            
            .sidebar-header h5 {
                font-size: 1.1rem;
            }
            
            .close-sidebar {
                display: none;
            }
            
            .main-content {
                margin-left: 250px;
                padding: 20px;
            }
            
            .mobile-header {
                display: none;
            }
            
            .stats-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
            
            .purchased-products {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .card-title {
                font-size: 1.2rem;
            }
        }
        
        @media (min-width: 992px) {
            .purchased-products {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
    /* about_us */
    /* :root {
            --primary-color: #25D366;
            --secondary-color: #f7fafd;
            --accent-color: #FF6B6B;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        } */
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: var(--secondary-color);
        }
        
        /* Updated Header Styles */
        .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            color: var(--dark-color);
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .header-cta-btn {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .header-cta-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Hero Section */
        .about-hero {
           
            padding: 5rem 0;
            text-align: center;
           
        }
        
        .about-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .about-hero p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 2rem auto;
            color: #555;
        }
        
        /* Main Content */
        .about-section {
            padding: 4rem 0;
            background-color: white !important;
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            width: 100%;
            text-align: center;
            font-size: 2rem;
            color: var(--dark-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .about-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        
        .about-content h2 {
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
            color: #555;
        }
        
        .highlight-box {
            background-color: rgba(37, 211, 102, 0.08);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        .highlight-box h3 {
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .features-list {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
            list-style-type: none;
        }
        
        .features-list li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            color: #555;
        }
        
        .features-list li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background-color: var(--primary-color);
            border-radius: 50%;
        }
        
        /* CTA Section */
        .about-cta {
            background-color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .cta-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            color: white;
        }
        
        .outline-button {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .outline-button:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }
        
        .footer-logo span {
            color: var(--primary-color);
        }
        
        .footer-about {
            color: #adb5bd;
            margin-bottom: 1.5rem;
        }
        
        .footer-links h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links ul li a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2rem;
            }
            
            .about-hero p {
                font-size: 1.1rem;
                padding: 0 1rem;
            }
            
            .section-title {
                font-size: 1.7rem;
                margin-bottom: 2rem;
            }
            
            .about-content {
                padding: 1.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
                bottom: 20px;
                right: 20px;
            }
        }
        /* product-detail.php */
    
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        /* Header Styles */
        .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            /* padding: 15px 0; */
        }

        .navbar-brand {
            font-weight: 700;
            color: #25D366 !important;
            font-size: 1.5rem;
        }

        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            color: #343a40 !important;
        }

        .nav-link:hover {
            color: #128C7E !important;
        }

        .header-cta-btn {
            background-color: #25D366;
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }

        .header-cta-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            color: white !important;
        }

        /* Mobile menu styles */
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .product-detail {
            display: flex;
            flex-wrap: wrap;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .product-gallery {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .main-image {
            width: 100%;
            height: 400px;
            object-fit: contain;
            border: 1px solid #eee;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        
        .product-info {
            flex: 1;
            min-width: 300px;
            padding: 30px;
        }
        
        .product-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .price-section {
            margin: 20px 0;
        }
        
        .discount-price {
            font-size: 28px;
            font-weight: bold;
            /* color: var(--primary-color); */
        }
        
        .actual-price {
            font-size: 18px;
            text-decoration: line-through;
            color: var(--gray-color);
            margin-left: 10px;
        }
        
        .discount-badge {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 14px;
            margin-left: 10px;
        }
        
        .rating {
            display: flex;
            align-items: center;
            margin: 15px 0;
        }
        
        .stars {
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        .review-count {
            color: var(--gray-color);
            font-size: 14px;
        }
        
        .sold-count {
            margin-left: 15px;
            font-size: 14px;
            color: var(--gray-color);
        }
        
        .delivery-info {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            font-size: 14px;
        }
        
        .delivery-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .product-description {
            margin: 25px 0;
        }
        
        .product-description h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .full-description {
            margin-top: 30px;
        }
        
        .full-description h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            flex: 2;
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            color: white;
            flex: 1;
        }
        
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        .related-products {
            margin-top: 50px;
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .related-item {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .related-item:hover {
            transform: translateY(-5px);
        }
        
        .related-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .related-info {
            padding: 15px;
        }
        
        .related-title {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .related-price {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .related-old-price {
            font-size: 14px;
            text-decoration: line-through;
            color: var(--gray-color);
            margin-left: 5px;
        }
        /* Footer Styles */
        footer {
            background-color: #343a40;
            color: white;
            padding: 3rem 0 0;
            margin-top: 50px;
        }

        .footer-logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: #25D366;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-about p {
            color: #adb5bd;
            margin-bottom: 1.5rem;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #25D366;
        }

        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: #25D366;
            padding-left: 5px;
        }

        .social-icons {
            margin-top: 1.5rem;
        }

        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #495057;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: #25D366;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #495057;
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: #adb5bd;
            font-size: 0.9rem;
        }

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25D366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            color: white;
            transform: scale(1.1);
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .main-header {
                padding: 10px 0;
            }
            
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .header-cta-btn {
                padding: 6px 15px !important;
                font-size: 0.9rem;
            }
            
            footer {
                text-align: center;
            }
            
            .footer-links h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-links ul {
                margin-bottom: 2rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
                
        @media (max-width: 768px) {
            .product-detail {
                flex-direction: column;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }

    /* tutorial.php */
     /* Your provided CSS */
        :root {
            --primary-color:#128C7E; /* WhatsApp green */
            --secondary-color: #f7fafd;
            --accent-color: #FF6B6B;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Header Styles */
        .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
        }
        
        .nav-link:hover {
            color: white;
        }
        
        .header-cta-btn {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .header-cta-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Tutorial Page Specific Styles */
        .tutorial-container {
            display: flex;
            min-height: calc(100vh - 120px);
        }
        
        .sidebar {
            width: 300px;
            background-color: #f8f9fa;
            border-right: 1px solid #e9ecef;
            padding: 20px;
            overflow-y: auto;
        }
        
        .video-container {
            flex: 1;
            padding: 20px;
            background-color: white;
        }
        
        .course-title {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .module-title {
            font-weight: 500;
            color: var(--dark-color);
            margin: 15px 0 5px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .module-title:hover {
            color: var(--primary-color);
        }
        
        .lesson-list {
            list-style: none;
            padding-left: 15px;
            margin-bottom: 15px;
            display: none;
        }
        
        .lesson-item {
            padding: 8px 0;
            cursor: pointer;
            border-left: 2px solid #ddd;
            padding-left: 10px;
            margin-left: 5px;
        }
        
        .lesson-item:hover {
            color: var(--primary-color);
            border-left-color: var(--primary-color);
        }
        
        .lesson-item.active {
            color: var(--primary-color);
            font-weight: 500;
            border-left-color: var(--primary-color);
        }
        
        .video-wrapper {
            background-color: #000;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
        }
        
        .video-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .video-description {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .nav-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .nav-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .nav-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
        }
        
        .nav-btn:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
        
        @media (max-width: 768px) {
            .tutorial-container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #e9ecef;
                max-height: 300px;
            }
            
            .video-container {
                padding: 15px;
            }
        }
        .py-3 {
            padding-top: 0rem !important;
            padding-bottom: 0rem !important;
        }
        .py-5{
            padding-top: 0rem !important;
            padding-bottom: 1rem !important;
            background-color: white;

        }
        .text-white-50{
            color:white;
        }
       
        
 


       
