
        .feature-card {
            background: #fff;
            border-radius: 12px;
            padding: 2rem 1rem;
            border: 1px solid #eee !important;
            text-align: center;
            border-left: 5px solid #e9f6ed !important;
            transition: 0.3s ease-in-out all !important;
        }

        .feature-card:hover {
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08) !important;
            /* transform: translateY(-5px); */
            border-left: 5px solid green !important;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #007bff;
        }

        .ques-head {
            font-weight: 100 !important;
            font-size: 20px !important;
            margin-top: 20px !important;
        }

        .ques-para {
            font-size: 22px !important;
        }

        .icon-bg {
            background-color: #e9f6ed !important;
            padding: 20px 15px !important;
            border-radius: 6px !important;
            /* margin-bottom: 100px !important; */
        }

        .icon {
            padding: 10px 10px !important;

        }

        /* quiz sec css  */

        .quiz-card {
            max-width: 600px;
            margin: 30px auto;
            padding: 30px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background: #fff;
            text-align: center;
        }

        .option-btn {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #eee;
            text-align: left !important;
            background: #fff;
            cursor: pointer;
            transition: 0.3s;

        }

        .option-btn:hover {
            background-color: #f8f9fa !important;
        }

        /* .option-btn {
                    display: block;
                    width: 100%;
                    padding: 10px;
                    border: 1px solid #ccc;
                    background: #f9f9f9;
                    text-align: left;
                    border-radius: 6px;
                    cursor: pointer;
                    transition: 0.2s;
                  } */

        /* .option-btn:hover {
                    background: #eee;
                  } */



        .option-btn.active .ques-opt::before {
            content: "• ";
            /* bullet point before text */
            color: #28a745;
            /* green bullet */
            font-weight: bold;
        }

        #feedback {
            font-size: 0.95rem;
        }

        .category-btn {
            background-color: #e9f5e9;
            border: 1px solid #28a745;
            color: #28a745;
            padding: 5px 15px;
            margin: 5px;
            font-size: 12px !important;
            border-radius: 5px;
            cursor: default;
        }

        .start-btn {
            font-size: 13px !important;
        }

        .question-title {
            text-align: left !important;
            font-weight: normal !important;
            font-size: 25px !important;
        }

        .ques-opt {
            list-style: circle !important;
            /* color:red !important; */
            text-align: left !important;
        }

        .progress {
            height: 10px !important;
        }

        /* result ui */
        .result-score-head {
            font-size: 40px !important;
        }

        .result-card {
            background: #fff !important;
            border-radius: 8px !important;
            border: 1px solid #eee;
        }

        .result-card-answer {
            text-align: left !important;

            /* font-weight:  !important; */
        }

        .result-card-ques {
            text-align: left !important;
            font-weight: 500 !important;
        }

        .result-card-parent {
            display: flex !important;
            gap: 10px !important;
            /* flex-direction: column; */
        }

        .review-text {
            text-align: left !important;
            font-weight: 500 !important;

        }

        .start-btn {
            border: 1px solid #eee !important;
            font-weight: 500 !important;
        }

        .btn-secondary:hover {
            color: white !important;
        }

        .quiz-section-head {
            font-weight: bold !important;
            font-size: 25px !important;
        }


        /* .testimonial css */

        .testimonial-container {
            position: relative;
        }

        .testimonial-viewport {
            overflow: hidden;
            width: 100%;
            box-sizing: border-box;
        }

        /* the sliding wrapper */
        .testimonial-wrapper {
            display: flex;
            gap: 16px;
            /* visual gap between slides */
            transition: transform 0.6s cubic-bezier(.22, .9, .36, 1) !important;
            /* smooth */
            will-change: transform;
        }

        /* each slide (we set width from JS) */
        .testimonial-slide {
            flex: 0 0 auto;
            /* don't shrink/grow; width controlled by JS */
            box-sizing: border-box;
            padding: 0;
            /* keep spacing handled by gap on wrapper */
        }

        /* your card styling (keeps previous look + hover) */
        .testimonial-card {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            background: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: box-shadow 0.3s ease-in-out;
            height: 100%;
        }

        .testimonial-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .star {
            color: #ffc107;
            font-size: 1rem;
        }

        .testimonial-content {
            font-style: italic;
            margin: 15px 0;
        }

        /* nav buttons (left / right) */
        .nav-btn {
            position: absolute;
            top: 50%;
            /* transform: translateY(-30%); */
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid #ddd;
            border-radius: 50%;
            padding: 10px 14px;
            cursor: pointer;
            font-size: 18px;
            z-index: 20;
            user-select: none;
        }

        .nav-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }

        .nav-left {
            left: -20px;
        }

        .nav-right {
            right: -20px;
        }

        /* small-screen tweak so buttons don't overlap content */
        @media (max-width: 576px) {
            .nav-left {
                left: 4px;
            }

            .nav-right {
                right: 4px;
            }
        }

        /* feature-page-top */

        .feature-page-top-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            /* background-color: red; */
            gap: 20px
        }

        .top-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .feature-page-main-head {
            font-size: 60px !important;
        }

        .feature-page-main-para {
            font-size: 20px !important;
        }

        .top-margin {
            margin-top: 150px !important;
            margin-bottom: 200px !important;
        }