
         /* Section Styling */
        .critical-transfer-img {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            position: relative;
            overflow: hidden;
        }


        /* Left Content */
        .transfer-left {
            background: #ffffff;
            border-radius: 15px;
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 205 !important;
        }

        .transfer-left:hover {
            transform: translateY(-8px);
        }

        .transfer-left ul {
            padding-right: 30px;
            margin-bottom: 25px;
        }

        .transfer-left ul li {
            list-style: none;
            font-size: 1rem;
            padding: 10px 0 10px 32px;
            position: relative;
            color: #333;
            border-bottom: 1px solid #f1f1f1;
            transition: all 0.3s ease;
        }

        .transfer-left ul li:last-child {
            border-bottom: none;
        }

        .transfer-left ul li::before {
            content: "\2713";
            /* Tick */
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #d60909;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .transfer-left ul li:hover {
            color: #d60909;
            padding-left: 38px;
        }

        /* Lead Text */
        .transfer-left .lead-text {
            font-size: 1rem;
            color: #444;
            font-style: italic;
            font-weight: 500;
            margin-top: 15px;
        }

        /* Right Image */
        .transfer-right {
            text-align: center;
            position: relative;
            z-index: 1;
            /* height: 825px; */
        }

        .transfer-right img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            transition: transform 0.5s ease;
        }





        .how-it-works-section {
            padding: 60px 0;
            background: #ffffff;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 60px;
        }

        .content-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 40px;
        }

        .medical-image-container {
            flex: 0 0 45%;
        }

        .medical-image {
            width: 100%;
            border-radius: 0;
            overflow: hidden;
        }

        .medical-image img {
            width: 100%;
            height: 677px;
            display: block;
        }

        .timeline-container {
            flex: 1;
            position: relative;
            padding-left: 0;
        }

        .timeline-line {
            position: absolute;
            left: 30px;
            top: 35px;
            bottom: 35px;
            width: 2px;
            background: #dc3545;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 20px;
            position: relative;
            align-items: flex-start;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-icon {
            width: 51px;
            height: 51px;
            background: #dc3545;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 19px;
            flex-shrink: 0;
            z-index: 2;
        }

        .timeline-content {
            margin-left: 25px;
            padding-top: 8px;
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #000000;
            margin-bottom: 12px;
        }

        .step-description {
            color: #666666;
            line-height: 1.6;
            font-size: 1rem;
            margin: 0;
        }

        @media (max-width: 991px) {
            .content-wrapper {
                flex-direction: column;
            }

            .medical-image-container {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .timeline-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .timeline-line {
                left: 30px;
            }
        }





        /* Service Cards */
        .service-card-tele {
            background: #fff;
            border-radius: 15px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        /* Hover Effect */
        .service-card-tele:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* Icon Styling */
        .service-card-tele .icon {
            font-size: 40px;
            margin-bottom: 15px;
            transition: transform 0.4s ease;
        }

        .service-card-tele:hover .icon {
            transform: rotate(10deg) scale(1.2);
        }

        /* Card Headings */
        .service-card-tele h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
        }





        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-card-tele {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .service-card-tele::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.6s;
        }

        .service-card-tele:hover::before {
            left: 100%;
        }

        .service-card-tele:hover {
            transform: translateY(-10px);
            border-color: #e63946;
            box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
        }

        .icon-wrapper {
            font-size: 40px;
            margin-bottom: 15px;
            transition: transform 0.4s ease;
        }

        .service-card-tele:hover .icon-wrapper {
            transform: rotateY(360deg) scale(1.1);
        }

        .service-icon-tele {
            color: #d60909;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            background: white;
        }

        .service-card-tele h3 {
            font-size: 1.3rem;
            color: #1a1a2e;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .founder-quote blockquote {
            font-size: 1.4rem;
            font-style: italic;
            color: #2d3748;
            line-height: 1.6;
            margin: 0 0 20px;
            position: relative;
            padding-left: 20px;
        }

        .founder-quote blockquote::before {
            content: '"';
            font-size: 5rem;
            color: #e63946;
            opacity: 0.2;
            position: absolute;
            left: -20px;
            top: -30px;
            font-family: Georgia, serif;
        }

        .founder-quote cite {
            color: #e63946;
            font-weight: 600;
            font-style: normal;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .trust-section {
                padding: 60px 15px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .mission-statement {
                font-size: 1.05rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .founder-quote {
                padding: 40px 25px;
            }

            .founder-quote blockquote {
                font-size: 1.1rem;
                padding-left: 10px;
            }

            .founder-quote blockquote::before {
                left: -10px;
                font-size: 3.5rem;
            }
        }
        @media (max-width: 991px) {
  .medical-image-container {
    flex: unset;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}