 /* about section */

        /* Doctor Profile Section */
        .doctor-profile {
            padding: 30px 12px 40px;
            background: #1798b7;
            color: white;
            position: relative;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }

        .doctor-profile::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle,
                    rgba(255, 255, 255, 0.1) 0%,
                    transparent 70%);
            transform: rotate(45deg);
        }

        .doctor-profile::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: linear-gradient(135deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.1) 50%,
                    transparent 100%);
            clip-path: polygon(0 100%, 100% 100%, 85% 0, 15% 0);
        }

        .profile-container {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .doctor-img-container {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .doctor-img {
            width: 400px;
            height: 400px;
            border-radius: 5%;
            object-fit: cover;
            border: 5px solid rgba(255, 255, 255, 0.3);
            background-color: #fff;
            box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 2;
            background: transparent;
            mix-blend-mode: multiply;
        }

        .doctor-img:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.3), 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .img-ring {
            position: absolute;
            top: -10px;
            left: -10px;
            width: 420px;
            height: 420px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 6%;
            border-top: 2px solid #ffffff;
            border-right: 2px solid transparent;
        }

        .doctor-profile .doctor-name {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .doctor-education {
            font-size: 16px;
            line-height: 1.6;
            font-weight: 400;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 12px 12px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .doc-text {
            height: 100%;
            background-color: #f6f6f6;
            border-radius: 10px;
            padding: 20px;
        }

        .doc-text h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .doc-text h5 {
            font-size: 20px;
            font-weight: 600;

        }

        .doc-text p {
            font-size: 16px;
            font-weight: 400;
            color: #444;
            margin-bottom: 12px;
            line-height: 28px;
        }

        .doc-exp {
            position: absolute;
            bottom: -25px;
            right: 50%;
            transform: translateX(50%);
            width: 275px;
            background-color: #ffffff7b;
            backdrop-filter: blur(20px);
            color: #fff;
            text-align: center;
            display: flex;
            align-items: center;
            padding: 8px 20px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            border-radius: 40px;
            border: 4px solid #fff;
            z-index: 5;
        }

        @media (max-width: 767px) {

            .doctor-img {
                height: 100%;
                width: 100%;
            }


            .img-ring {
                width: 360px;
                height: 360px;
            }

            .doc-text {
                padding: 20px 0;
                background-color: #fff;
            }

            .doc-exp {
                /* width: 300px; */
                justify-content: center;
            }
        }

        .doc-exp h3 {
            font-size: 32px;
            color: #1798b7;
            font-weight: 800;
            margin: 0 10px 0 0;
        }

        .doc-exp p {
            font-size: 18px;
            color: #000;
            font-weight: 500;
            margin: 0;
            text-align: start;
            line-height: 25px;
        }

        @media (max-width: 768px) {
            .doc-text h2 {
                font-size: 24px;
            }

            .doc-text h5 {
                font-size: 18px;
                line-height: 26px;
            }
        }

        .theme-btn {
            padding: 8px 50px 8px 16px;
            background-color: #1798b7;
            border: none;
            border-radius: 50px;
            font-weight: 600 !important;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            display: inline-block;
            position: relative;
            border: 2px solid #fff;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px #1798b7a1;
        }

        .theme-btn i {
            position: absolute;
            right: 3px;
            top: 50%;
            transform: translateY(-50%);
            height: 40px;
            width: 40px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            color: #1798b7;
            border: 2px solid #1798b7;
            transition: all 0.3s ease;
            border-radius: 50px;
        }

        .theme-btn:hover {
            background-color: #fff;
            border: 2px solid #1798b7;
            color: #1798b7;
            padding: 8px 30px 8px 16px;

            i {
                right: -16px;
                background-color: #1798b7;
                color: #fff;
                box-shadow: 0 4px 15px #1798b7a1;
                border: 2px solid #fff;
            }
        }