
        /* Profile Popup */
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            z-index: 1000;
            align-items: center;
            justify-content: end;
            padding: 20px;
            box-sizing: border-box;
        }
        .popup.active {
  display: flex;
}
 
        .popup-content {
            background: white;
            border-radius: 10px;
            max-width: 750px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: popupFadeIn 0.3s ease-out;
        }
        
        @keyframes popupFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-popup {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 11;
        }
        
        .close-popup:hover {
            color: #333;
        }
        
        .popup-header {
            display: flex;
            padding: 40px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            align-items: center;
            position: relative;
        }
        
        .popup-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin: 20px auto;
        }
        
        .popup-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .popup-title {
            flex: 1;
            text-align: center;
        }
        
        .popup-title h3 {
            font-size: 28px;
              margin: 0 0 5px;
              color: #472a7e;
              font-weight: 600;
              text-align: center;
        }
        
        .popup-title p {
            font-size: 17px;
              color: #666;
              margin: 0 0 15px;
              font-weight: 600;
        }
        
        .popup-social {
            display: flex;
            gap: 15px;
        }
        
        .popup-social a {
            color: #666;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }
        
        .popup-social a:hover {
            color: #1a73e8;
        }
        
        .popup-body {
            padding: 40px;
            display: grid;
            grid-template-columns: auto;
            gap: 30px;
        }
        
        .popup-section h4 {
            font-size: 24px;
              margin-bottom: 20px;
              color: #472a7e;
              position: relative;
              font-weight: 600;
        }
        .popup-section h5 {
            font-size: 22px;
              margin-bottom: 10px;
              margin-top: 20px;
              color: #472a7e;
              position: relative;
              font-weight: 600;
        }
        
        /*.popup-section h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #1a73e8;
        }*/
        
        .popup-section p {
            margin-bottom: 15px;
              color: #2f2f2f;
              line-height: 1.7;
              font-size: 15px;
              letter-spacing: 0.2px;
              font-weight: 400;
        }
        
        .popup-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .popup-section li {
            margin-bottom: 8px;
        }
        
        .popup-footer {
            padding: 20px 40px;
            text-align: center;
            border-top: 1px solid #eee;
        }
        
        .book-consultation {
            background: #1a73e8;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        
        .book-consultation:hover {
            background: #0d5bba;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .popup-body {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .profile-slider-container {
                padding: 0 30px;
            }
            
            .profile-card {
                flex: 0 0 280px;
            }
            
            .popup-header {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
            
            .popup-image {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .popup-body {
                padding: 20px;
            }
            
            .popup-title h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .profile-slider-container {
                padding: 0 15px;
            }
            
            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .profile-card {
                flex: 0 0 240px;
            }
            
            .profile-image {
                height: 250px;
            }
        }
