  
 .container_sub {
            max-width: 1200px;
            margin: 0 auto;
            
            display: grid;
            grid-template-columns: repeat(2, 1fr);
                gap: 4px;

        }

        .feature-box {
            padding: 5px 20px;
    /* border: 1px solid #e0e0e0; */
    margin: -1px 0 0 -1px;
    background: #ffffff;
    padding-bottom: 19px;
        }

        .feature-box h2 {
            color: #1a73e8;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
            padding: 0px;
            text-align: left;
        }

        .feature-box p {
            font-weight: 500;
    color: #333;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 10px;
        }

        .feature-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-box > ul > li {
            color: #333;
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 10px;
            padding-left: 15px;
            position: relative;
        }

        .feature-box > ul > li:before {
            content: "•";
            color: #d32f2f;
            font-weight: bolder;
            position: absolute;
            left: 0;
            font-size: 18px;
        }

        .feature-box > ul > li:last-child {
            margin-bottom: 0;
        }

        .nested-list {
            margin-top: 8px;
            padding-left: 0;
        }

        .nested-list li {
            color: #333;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 6px;
            padding-left: 18px;
            position: relative;
        }

        .nested-list li:before {
            content: "◦";
            color: #333;
            position: absolute;
            left: 0;
            font-size: 16px;
        }

        .nested-list li:last-child {
            margin-bottom: 0;
        }

        /* Tablet */
        @media (max-width: 968px) {
            .container_sub {
                grid-template-columns: 1fr;
            }

            .feature-box {
                padding: 20px 25px;
            }
        }

        /* Mobile */
        @media (max-width: 640px) {
            

            .feature-box {
                padding: 18px 20px;
            }

            .feature-box h2 {
                font-size: 14px;
                margin-bottom: 12px;
            }

            .feature-box p,
            .feature-box > ul > li,
            .nested-list li {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            

            .feature-box {
                padding: 15px;
            }

            .feature-box h2 {
                font-size: 13px;
            }
        }
/* leran more section */
.container_learnmore {
            /* max-width: 1200px; */
            padding: 56px 5px;
            background-color: #ebf5ff;
        }

        .services-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .service-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px 20px 25px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex: 1 1 calc(25% - 20px);
            min-width: 200px;
            max-width: 260px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .icon-wrapper {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .service-title {
            color: #2c3e50;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 20px;
            min-height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .learn-more-btn {
            background: #ffffff;
            color: #1a73e8;
            border: 2px solid #1a73e8;
            padding: 8px 28px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .learn-more-btn:hover {
            background: #1a73e8;
            color: #ffffff;
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .service-card {
                flex: 1 1 calc(33.333% - 20px);
            }
        }

        @media (max-width: 768px) {
            

            .services-wrapper {
                gap: 15px;
            }

            .service-card {
                flex: 1 1 calc(50% - 15px);
                padding: 25px 15px 20px;
                min-width: 150px;
            }

            .icon-wrapper {
                width: 50px;
                height: 50px;
                margin-bottom: 15px;
            }

            .service-title {
                font-size: 14px;
                min-height: 38px;
                margin-bottom: 15px;
            }

            .learn-more-btn {
                padding: 7px 24px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .services-wrapper {
                gap: 12px;
            }

            .service-card {
                /* flex: 1 1 100%; */
                max-width: 50%;
                padding: 20px 15px;
            }

            .icon-wrapper {
                width: 45px;
                height: 45px;
                margin-bottom: 12px;
            }

            .service-title {
                font-size: 13px;
                min-height: auto;
                margin-bottom: 12px;
            }

            .learn-more-btn {
                padding: 6px 20px;
                font-size: 12px;
            }
        }
        .live_sec2_wrap, .we_offer_section {
    background-color: #f5f5f5;
}