<style>
        :root {
            --hicare-pink: #e91e63;
            --hicare-purple: #4a235a;
            --hicare-blue: #2196F3;
            --hicare-green: #4CAF50;
            --hicare-orange: #FF9800;
            --hicare-teal: #009688;
            --hicare-dark: #1a1a1a;
            --hicare-light: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        
        /* Hero Section */
        .about-hero {
            background: linear-gradient(135deg, var(--hicare-purple), var(--hicare-pink));
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.2;
        }
        
        .about-hero h1 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Section Titles */
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title h2 {
            color: var(--hicare-purple);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--hicare-pink), var(--hicare-purple));
        }
        
        /* Doctor Profile Section */
        .doctor-profile-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .profile-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
        }
        
        .profile-main {
            flex: 1;
            min-width: 300px;
        }
        
        .profile-sidebar {
            width: 300px;
        }
        
        .profile-highlight {
            background: linear-gradient(135deg, var(--hicare-purple), var(--hicare-pink));
            color: white;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .highlight-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .profile-timeline {
            margin: 40px 0;
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 30px;
            position: relative;
            padding-left: 80px;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 35px;
            top: 0;
            height: 100%;
            width: 2px;
            background: linear-gradient(to bottom, var(--hicare-pink), var(--hicare-purple));
        }
        
        .timeline-year {
            position: absolute;
            left: 0;
            top: 0;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--hicare-purple), var(--hicare-pink));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            z-index: 1;
        }
        
        .timeline-content {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            flex: 1;
        }
        
        .timeline-content h4 {
            color: var(--hicare-purple);
            margin-bottom: 10px;
        }
        
        .profile-achievements {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border-top: 3px solid var(--hicare-pink);
        }
        
        .profile-achievements h3 {
            color: var(--hicare-purple);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--hicare-pink);
        }
        
        .profile-achievements ul {
            list-style: none;
            padding-left: 0;
        }
        
        .profile-achievements li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .profile-achievements li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--hicare-pink);
        }
        
        .profile-image {
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .profile-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .profile-qualifications {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border-top: 3px solid var(--hicare-pink);
        }
        
        .profile-qualifications h4 {
            color: var(--hicare-purple);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .profile-qualifications ul {
            list-style: none;
            margin-bottom: 25px;
            padding-left: 0;
        }
        
        .profile-qualifications li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }
        
        .profile-qualifications li:before {
            content: '\f138';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--hicare-pink);
        }
        
        /* Team Section */
        .team-section {
            background-color: #f9f9f9;
            padding: 80px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-member {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .member-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .social-links {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            background: rgba(74, 35, 90, 0.9);
            display: flex;
            justify-content: center;
            padding: 10px;
            transition: bottom 0.3s ease;
        }
        
        .team-member:hover .social-links {
            bottom: 0;
        }
        
        .social-links a {
            color: white;
            margin: 0 10px;
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        
        .social-links a:hover {
            transform: translateY(-3px);
            color: var(--hicare-pink);
        }
        
        .member-info {
            padding: 20px;
            text-align: center;
        }
        
        .member-info h3 {
            color: var(--hicare-purple);
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .position {
            color: var(--hicare-pink);
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
        
        .qualification {
            color: #666;
            font-size: 0.8rem;
            font-style: italic;
        }
        
        .team-cta {
            text-align: center;
            margin-top: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .team-cta p {
            margin-bottom: 20px;
            color: #555;
            font-size: 1.1rem;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--hicare-purple), var(--hicare-pink));
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: white;
        }
        
        /* Vision & Mission Section */
        .vision-mission {
            padding: 80px 0;
            background-color: white;
        }
        
        .vm-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .vm-card {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-top: 3px solid var(--hicare-pink);
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .vm-card .icon {
            font-size: 40px;
            color: var(--hicare-pink);
            margin-bottom: 20px;
        }
        
        .vm-card h3 {
            color: var(--hicare-purple);
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .service-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 40px;
        }
        
        .service-card {
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-top: 3px solid var(--hicare-pink);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card .icon {
            font-size: 40px;
            color: var(--hicare-pink);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            color: var(--hicare-purple);
            margin-bottom: 15px;
        }
        
        .service-card ul {
            list-style: none;
            padding-left: 0;
        }
        
        .service-card li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }
        
        .service-card li:before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--hicare-pink);
            font-size: 12px;
            top: 5px;
        }
        
        /* Sample Collection Section */
        .sample-collection-section {
            padding: 80px 0;
            background-color: white;
        }
        
        /* Health Packages Slider */
        .packages-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .swiper {
            width: 100%;
            padding: 30px 0;
        }
        
        .package-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            border-top: 3px solid var(--hicare-pink);
        }
        
        .package-card h3 {
            color: var(--hicare-purple);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .package-items {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .package-item {
            background-color: rgba(233, 30, 99, 0.1);
            color: var(--hicare-purple);
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .package-item:hover {
            background-color: var(--hicare-pink);
            color: white;
            transform: translateX(5px);
        }
        
        .swiper-pagination-bullet {
            background-color: var(--hicare-purple);
            opacity: 0.5;
            width: 12px;
            height: 12px;
        }
        
        .swiper-pagination-bullet-active {
            background-color: var(--hicare-pink);
            opacity: 1;
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--hicare-pink);
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(74, 35, 90, 0.8);
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        /* Commitment Section */
        .commitment-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--hicare-purple), var(--hicare-pink));
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .commitment-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
        }
        
        .commitment-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .commitment-title h2 {
            color: white;
            margin-bottom: 15px;
        }
        
        .commitment-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .commitment-card {
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            background-color: rgba(255,255,255,0.9);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            color: var(--hicare-dark);
            position: relative;
        }
        
        .commitment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .commitment-card .icon {
            font-size: 40px;
            color: var(--hicare-pink);
            margin-bottom: 20px;
        }
        
        .commitment-card h3 {
            color: var(--hicare-purple);
            margin-bottom: 15px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .profile-content {
                gap: 30px;
            }
            
            .profile-sidebar {
                width: 280px;
            }
        }
        
        @media (max-width: 991.98px) {
            .profile-sidebar {
                width: 100%;
            }
            
            .timeline-item {
                padding-left: 60px;
            }
            
            .timeline-year {
                width: 50px;
                height: 50px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .about-hero {
                padding: 80px 0;
            }
            
            .about-hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .gallery-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 575.98px) {
            .about-hero {
                padding: 60px 0;
            }
            
            .about-hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .profile-highlight {
                padding: 20px;
            }
            
            .timeline-item {
                padding-left: 50px;
            }
            
            .timeline-year {
                width: 40px;
                height: 40px;
                font-size: 0.8rem;
            }
            
            .vm-card, .service-card, .commitment-card {
                min-width: 100%;
            }
        }