
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: #2e2e2e;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #171717 0%, #2e2e2e 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #7c3aed, #6366f1);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo::before {
            content: '🏥';
            background: none;
            -webkit-text-fill-color: initial;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            position: relative;
        }

        .nav-menu a:hover {
            color: #7c3aed;
            background: rgba(6, 182, 212, 0.1);
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #7c3aed, #6366f1);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::before {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #171717 0%, #2e2e2e 50%, #374151 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
            top: 10%;
            right: 10%;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
            bottom: 20%;
            left: 15%;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideIn 1s ease;
        }

        .hero-content .subtitle {
            font-size: 1.4rem;
            color: #94a3b8;
            margin-bottom: 2rem;
            font-weight: 300;
            animation: slideIn 1s ease 0.2s both;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            animation: slideIn 1s ease 0.4s both;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: slideIn 1s ease 0.6s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            color: white;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #0891b2, #2563eb);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: #7c3aed;
            border: 2px solid #7c3aed;
        }

        .btn-outline:hover {
            background: #7c3aed;
            color: white;
        }

        .hero-visual {
            position: relative;
            animation: slideIn 1s ease 0.3s both;
        }

        .hero-dashboard {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .dashboard-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .dashboard-title {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .metric-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
        }

        .metric-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #7c3aed;
            display: block;
        }

        .metric-label {
            font-size: 0.8rem;
            color: #94a3b8;
            margin-top: 0.3rem;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: #f8fafc;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #171717;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 2rem;
            color: #171717;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-content p {
            color: #475569;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #7c3aed;
            transition: all 0.3s;
        }

        .feature-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            color: #171717;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .feature-text p {
            color: #64748b;
            font-size: 0.9rem;
            margin: 0;
        }

        .about-visual {
            position: relative;
        }

        .about-image {
            background: linear-gradient(135deg, #171717, #2e2e2e);
            height: 450px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 1.5rem 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            min-width: 150px;
        }

        .floating-card.card-1 {
            top: 30px;
            right: -20px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .floating-card.card-2 {
            bottom: 40px;
            left: -25px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }

        .card-number {
            font-size: 1.8rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.3rem;
        }

        .card-label {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #7c3aed, #6366f1);
            transform: scaleX(0);
            transition: transform 0.3s;
            transform-origin: left;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            border-color: #7c3aed;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
            border: 2px solid #7c3aed;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #0891b2;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            color: white;
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.4rem;
            color: #171717;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
            background: linear-gradient(135deg, #171717 0%, #2e2e2e 100%);
            color: white;
        }

        .why-choose .section-label {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .why-choose .section-title,
        .why-choose .section-description {
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: rgba(6, 182, 212, 0.5);
        }

        .feature-card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-card p {
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Healthcare Plans */
        .plans {
            padding: 100px 0;
            background: #f8fafc;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .plan-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid transparent;
            transition: all 0.3s;
            position: relative;
        }

        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .plan-card.featured {
            border-color: #7c3aed;
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
        }

        .plan-card.featured::before {
            content: 'Best Value';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            color: white;
            padding: 0.3rem 1.5rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .plan-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
            border: 2px solid #7c3aed;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: #0891b2;
        }

        .plan-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: #171717;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 800;
            color: #7c3aed;
            margin-bottom: 0.5rem;
        }

        .plan-price .currency {
            font-size: 1.2rem;
            vertical-align: top;
        }

        .plan-price .period {
            font-size: 1rem;
            color: #64748b;
            font-weight: 400;
        }

        .plan-description {
            color: #64748b;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .plan-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid #f1f5f9;
            color: #475569;
        }

        .plan-features li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            font-size: 1.1rem;
            width: 16px;
            text-align: center;
        }

        .plan-button {
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
        }

        .plan-button:hover {
            background: linear-gradient(135deg, #0891b2, #2563eb);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
        }

        /* Contact & Appointment */
        .contact {
            padding: 100px 0;
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info {
            background: linear-gradient(135deg, #171717, #2e2e2e);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(6, 182, 212, 0.1);
            border-radius: 50%;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-text h4 {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .contact-text p {
            opacity: 0.9;
            line-height: 1.5;
        }

        .appointment-form {
            background: #f8fafc;
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
        }

        .form-title {
            font-size: 1.8rem;
            color: #171717;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .form-subtitle {
            color: #64748b;
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #171717;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
            background: white;
        }

        .form-input:focus {
            outline: none;
            border-color: #7c3aed;
            box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
        }

        .form-input::placeholder {
            color: #94a3b8;
        }

        .submit-btn {
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #0891b2, #2563eb);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: #f8fafc;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-left: 4px solid #7c3aed;
            transition: all 0.3s;
            position: relative;
        }

        .testimonial-card::before {
            content: '“';
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 3rem;
            color: #f1f5f9;
            font-weight: bold;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7c3aed, #6366f1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .testimonial-info h4 {
            color: #171717;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .testimonial-info .title {
            color: #64748b;
            font-size: 0.9rem;
        }

        .testimonial-rating {
            display: flex;
            gap: 0.2rem;
            margin-bottom: 1rem;
        }

        .star {
            color: #fbbf24;
            font-size: 1rem;
        }

        .testimonial-text {
            color: #475569;
            line-height: 1.7;
            font-style: italic;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #171717 0%, #2e2e2e 100%);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #7c3aed;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-section p {
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section ul li a:hover {
            color: #7c3aed;
        }

        .footer-section ul li a::before {
            content: '▶';
            font-size: 0.6rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #94a3b8;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            margin: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .popup-close {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #94a3b8;
            transition: color 0.3s;
        }

        .popup-close:hover {
            color: #171717;
        }

        .popup-content h2 {
            color: #171717;
            margin-bottom: 2rem;
            font-size: 2rem;
            font-weight: 700;
        }

        .popup-content h3 {
            color: #7c3aed;
            margin: 1.5rem 0 1rem;
            font-size: 1.3rem;
        }

        .popup-content p {
            color: #475569;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        /* Animations */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .nav-menu {
                display: none;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .plan-card.featured {
                transform: none;
            }

            .hero-actions {
                justify-content: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
        }
    