
        /* Service Item Styling */
        .service-item {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: transform 0.3s ease-in-out;
            /* Added smooth transition for hover */
        }

        .service-item:hover {
            transform: translateY(-10px);
            /* Hover effect to raise the card */
        }

        /* Service Icon Styling */
        .service-icon {
            font-size: 50px;
            color: white;
            background-color: #007bff;
            border-radius: 50%;
            padding: 20px;
            margin-bottom: 15px;
        }

        /* Title Styling */
        .service-item h4 {
            margin-top: 20px;
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
        }

        /* Description and Details */
        .service-item p {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .service-item p strong {
            color: #007bff;
            /* Make the strong text (Objective, Benefits, etc.) standout */
        }

        /* Button Styling */
        .service-item .btn-primary {
            background-color: #06A3DA;
            color: white;
            padding: 12px 24px;
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s ease-in-out;
            font-size: 1rem;
        }

        .service-item .btn-primary i {
            margin-left: 5px;
            font-size: 18px;
            background-color: #06A3DA;
            color: white;
        }


        .service-item .btn-primary:hover {
            background-color: #06A3DA;
        }

        /* Responsive Design */
        @media (max-width: 767px) {
            .service-item {
                padding: 20px;
            }

            .service-item h4 {
                font-size: 1.25rem;
            }

            .service-item p {
                font-size: 0.85rem;
            }

            .service-item .btn-primary {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
   