
            .choose-section {
                background: linear-gradient(135deg, #1d3557 50%, #e63946 50%);
                color: white;
                padding: 60px 0;
                position: relative;
                overflow: hidden;
            }

            .choose-section::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .choose-content {
                position: relative;
                z-index: 2;
                background: white;

                border-radius: 15px;
                padding: 40px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            }

            .choose-content h2 {

                padding-left: 15px;
                margin-bottom: 25px;
            }

            .choose-content p {
                line-height: 1.7;
                color: #333;
            }

            .links {
                margin-top: 25px;
            }

            .links a {
                text-decoration: none;
                color: #1d3557;
                border: 2px solid #e63946;
                padding: 8px 15px;
                border-radius: 30px;
                margin: 5px;
                display: inline-block;
                transition: 0.3s;
                font-weight: 500;
            }

            .links a:hover {
                background-color: #e63946;
                color: white;
                transform: translateY(-3px);
            }
     
 
        /* Global */
        body {
            background-color: #f5f9ff;
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Section */
        .humancare-box-section {
            padding: 60px 20px;
        }

        .humancare-box-section h2 {
            text-align: center;
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 40px;
            color: #003366;
            animation: fadeInDown 0.8s ease;
            text-transform: capitalize;
        }

        /* Grid Layout */
        .box-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        /* Info Box */
        .info-box {
            background: #ffffff;
            border: 2px solid #d0e2ff;
            border-radius: 12px;
            padding: 25px 20px 20px;
            transition: all 0.4s ease;
            position: relative;
            animation: fadeInUp 1s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .info-box:hover {
            transform: translateY(-8px);
            border-color: #CE1810;
            box-shadow: 0 10px 25px rgba(206, 24, 16, 0.15);
        }

        /* Icon Circle */
        .icon-circle {
            width: 50px;
            height: 50px;
            background-color: #CE1810;
            color: #fff;
            border: 2px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.4rem;
            position: absolute;
            top: -25px;
            left: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .info-box:hover .icon-circle {
            background-color: #003366;
            transform: rotate(10deg) scale(1.1);
        }

        .info-box p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #000;
            margin-top: 15px;
            margin-bottom: 0;
        }

        .info-box a {
            color: #0056d2;
            font-weight: 600;
            text-decoration: none;
        }

        .info-box a:hover {
            text-decoration: underline;
            color: #CE1810;
        }

        /* Decorative Top Border Line */
        .info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #CE1810;
            transition: width 0.4s ease;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .info-box:hover::before {
            width: 100%;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 576px) {
            .humancare-box-section h2 {
                font-size: 1.8rem;
            }

            .icon-circle {
                left: 15px;
            }
        }
