.elementor-686 .elementor-element.elementor-element-d3c31af{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;}.elementor-686 .elementor-element.elementor-element-cb4d8a6 > .elementor-widget-container{padding:20px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-d3c31af */.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            color:#fff !important;
        }

        .hero .subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background: #ff6b6b;
            color: white !important;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            background: #ff5252;
        }

        /* Why Section */
        .why-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #2d3748;
        }

        .why-content {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .why-content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #555;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color:#fff;
        }
.benefit-card p {
    margin-bottom: 0;
}
        /* Learning Section */
        .learning-section {
            padding: 80px 20px;
            background: white;
        }

        .learning-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .learning-card {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 12px;
            border-left: 5px solid #667eea;
        }

        .learning-card h3 {
            color: #667eea;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

        .learning-card ul {
            list-style: none;
        }

        .learning-card li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }

        .learning-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Who Can Join */
        .who-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
        }

        .who-section .section-title {
            color: white !important;
        }

        .who-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .who-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }

        .who-card:hover {
            background: rgba(255,255,255,0.25);
            transform: scale(1.05);
        }

        .who-card h3 {
            font-size: 1.2rem;
            color: #fff !important;
            margin-top: 15px;
        }

        /* Highlights Section */
        .highlights-section {
            padding: 80px 20px;
            background: white;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .highlight-item {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            display: flex;
            align-items: flex-start;
            transition: all 0.3s;
        }

        .highlight-item:hover {
            background: #667eea;
            color: white;
            transform: translateX(10px);
        }

        .highlight-item::before {
            content: '✅';
            font-size: 1.5rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* Why Mind Bling */
        .why-mindbling {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .stat-card {
            background: white;
            padding: 40px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #555;
            font-size: 1.1rem;
        }

        /* Identity Section */
        .identity-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: white;
        }

        .identity-section .section-title {
            color: white;
            margin-bottom: 20px;
        }

        .identity-list {
            max-width: 800px;
            margin: 50px auto;
            list-style: none;
        }

        .identity-list li {
            background: rgba(255,255,255,0.1);
            padding: 20px 30px;
            margin-bottom: 15px;
            border-radius: 8px;
            border-left: 4px solid #667eea;
            font-size: 1.2rem;
        }
        .identity-section p {
    line-height: 2;
}

        /* CTA Section */
        .final-cta {
            padding: 100px 20px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color:#fff !important;
        }

        .final-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-button-white {
            background: white;
            color: #ff6b6b;
            padding: 20px 50px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .learning-grid,
            .benefits-grid,
            .who-grid,
            .highlights-grid {
                grid-template-columns: 1fr;
            }

            .why-content {
                padding: 30px;
            }
        }/* End custom CSS */