.elementor-13 .elementor-element.elementor-element-b32eae0{--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;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-f06d2e8 */body {
            font-family: 'Poppins', sans-serif;
            background: #f8fafd;
            color: #333;
            overflow-x: hidden;
        }

        :root {
            --pratham-orange: #F26522;
            --pratham-blue: #2980B9;
            --pratham-green: #7AC143;
            --dark-blue: #1e3799;
        }

        /* Smooth Scroll */
        html { scroll-behavior: smooth; }

        /* Hero Section with subtle pattern */
        .hero-section {
            background: white;
            padding: 80px 0;
            border-bottom: 6px solid var(--pratham-orange);
            position: relative;
        }

        .logo-img {
            max-width: 280px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .main-title {
            font-weight: 800;
            font-size: 3rem;
            background: linear-gradient(to right, var(--dark-blue), var(--pratham-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 20px;
        }

        /* Modernized Cards */
        .section-card {
            background: #ffffff;
            border: none;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            padding: 30px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .feature-card {
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: linear-gradient(90deg, var(--pratham-blue), var(--pratham-green));
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        }

        /* Icon Styling */
        .icon-box {
            width: 60px;
            height: 60px;
            background: rgba(41, 128, 185, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .feature-card:hover .icon-box {
            background: var(--pratham-blue);
        }

        .feature-card:hover .feature-icon {
            -webkit-text-fill-color: white;
        }

        .feature-icon {
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--pratham-blue), var(--pratham-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Why Use - Glassmorphism */
        .why-use-section {
            background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
            color: white;
            border-radius: 30px;
            padding: 60px 40px;
            position: relative;
            z-index: 1;
        }

        .brand-badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
            margin: 5px;
            transition: 0.3s;
        }

        .brand-badge:hover {
            background: var(--pratham-green);
            transform: scale(1.1);
        }

        /* Pulsing Download Button */
        .btn-download {
            background: linear-gradient(45deg, var(--pratham-orange), #ff8c00);
            color: white;
            padding: 18px 45px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 25px rgba(242, 101, 34, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(242, 101, 34, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(242, 101, 34, 0); }
            100% { box-shadow: 0 0 0 0 rgba(242, 101, 34, 0); }
        }

        .btn-download:hover {
            color: white;
            transform: scale(1.05);
            background: linear-gradient(45deg, #d35400, var(--pratham-orange));
        }/* End custom CSS */