
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Arial', sans-serif;
            line-height: 1.6;
            color: #7c3aed;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo::before {
            content: '⚕️';
            font-size: 1.5rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            position: relative;
        }

        .nav-menu a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 50%, #0283be 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
            animation: drift 20s linear infinite;
            opacity: 0.4;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #ace1cf);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideInLeft 1s ease;
        }

        .hero-content .tagline {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: slideInLeft 1s ease 0.2s both;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            animation: slideInLeft 1s ease 0.4s both;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: slideInLeft 1s ease 0.6s both;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-primary {
            background: linear-gradient(135deg, #9333ea, #c084fc);
            color: white;
        }

        .cta-primary:hover {
            background: linear-gradient(135deg, #c084fc, #9333ea);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
        }

        .cta-secondary {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }

        .cta-secondary:hover {
            background: rgba(255,255,255,0.3);
            border-color: rgba(255,255,255,0.5);
        }

        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease 0.5s both;
        }

        .hero-stats {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, #ffffff, #ace1cf);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #06b6d4, #0ea5e9);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #7c3aed;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .about-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 2rem;
            color: #7c3aed;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-content p {
            color: #6366f1;
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #06b6d4, #0ea5e9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .highlight-text h4 {
            color: #7c3aed;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .highlight-text p {
            color: #718096;
            font-size: 0.9rem;
            margin: 0;
        }

        .about-visual {
            position: relative;
        }

        .about-image {
            background: linear-gradient(135deg, #06b6d4, #0ea5e9);
            height: 400px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .floating-badge {
            position: absolute;
            background: white;
            color: #7c3aed;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            font-weight: 600;
        }

        .floating-badge.badge-1 {
            top: 20px;
            right: -10px;
            background: linear-gradient(135deg, #10ac84, #00d2d3);
            color: white;
        }

        .floating-badge.badge-2 {
            bottom: 20px;
            left: -15px;
            background: linear-gradient(135deg, #ff9ff3, #f368e0);
            color: white;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: white;
            border: 2px solid #f7fafc;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #06b6d4, #0ea5e9);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            border-color: #06b6d4;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
        }

        .service-content {
            position: relative;
            z-index: 2;
            transition: color 0.3s;
        }

        .service-card:hover .service-content {
            color: white;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0283be, #f5576c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: white;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: rgba(255,255,255,0.2);
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.4rem;
            color: #7c3aed;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-card p {
            color: #718096;
            line-height: 1.6;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
            background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
            color: white;
        }

        .why-choose .section-badge {
            background: linear-gradient(135deg, #ff9ff3, #f368e0);
        }

        .why-choose .section-title,
        .why-choose .section-subtitle {
            color: white;
        }

        .features-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .feature-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ff9ff3, #f368e0);
            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: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .plans-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .plan-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border: 3px solid transparent;
            transition: all 0.3s;
            position: relative;
        }

        .plan-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .plan-card.recommended {
            border-color: #06b6d4;
            transform: scale(1.05);
        }

        .plan-card.recommended::before {
            content: 'Recommended';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #06b6d4, #0ea5e9);
            color: white;
            padding: 0.4rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .plan-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #06b6d4, #0ea5e9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
        }

        .plan-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: #7c3aed;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 800;
            color: #06b6d4;
            margin-bottom: 0.5rem;
        }

        .plan-price .symbol {
            font-size: 1.3rem;
            vertical-align: top;
        }

        .plan-price .period {
            font-size: 1rem;
            color: #718096;
            font-weight: 400;
        }

        .plan-subtitle {
            color: #718096;
            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 #f7fafc;
            color: #6366f1;
        }

        .plan-features li::before {
            content: '✓';
            color: #10ac84;
            font-weight: bold;
            font-size: 1.1rem;
            width: 16px;
            text-align: center;
        }

        .plan-btn {
            background: linear-gradient(135deg, #06b6d4, #0ea5e9);
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
        }

        .plan-btn:hover {
            background: linear-gradient(135deg, #0ea5e9, #06b6d4);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
        }

        /* Contact & Appointment */
        .contact {
            padding: 100px 0;
            background: white;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info {
            background: linear-gradient(135deg, #06b6d4, #0ea5e9);
            color: white;
            padding: 3rem;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transform: translate(30px, -30px);
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-detail-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-detail-text h4 {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .contact-detail-text p {
            opacity: 0.9;
            line-height: 1.5;
        }

        .appointment-form {
            background: #f8f9fa;
            padding: 3rem;
            border-radius: 25px;
            border: 2px solid #e2e8f0;
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-header h3 {
            font-size: 1.8rem;
            color: #7c3aed;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: #718096;
        }

        .form-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-field {
            margin-bottom: 1.5rem;
        }

        .form-field.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #7c3aed;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
            background: white;
        }

        .form-control:focus {
            outline: none;
            border-color: #06b6d4;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
        }

        .form-control::placeholder {
            color: #a0aec0;
        }

        .submit-button {
            background: linear-gradient(135deg, #9333ea, #c084fc);
            color: white;
            border: none;
            padding: 15px 32px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
        }

        .submit-button:hover {
            background: linear-gradient(135deg, #c084fc, #9333ea);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s;
            position: relative;
        }

        .testimonial-card::before {
            content: '“';
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 3.5rem;
            color: #f7fafc;
            font-weight: bold;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px 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, #06b6d4, #0ea5e9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .testimonial-info h4 {
            color: #7c3aed;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .testimonial-info .position {
            color: #718096;
            font-size: 0.9rem;
        }

        .testimonial-rating {
            display: flex;
            gap: 0.2rem;
            margin-bottom: 1rem;
        }

        .star {
            color: #ffc107;
            font-size: 1.1rem;
        }

        .testimonial-text {
            color: #6366f1;
            line-height: 1.7;
            font-style: italic;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #7c3aed 0%, #6366f1 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: #06b6d4;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-section p {
            color: #cbd5e0;
            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: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section ul li a:hover {
            color: #06b6d4;
        }

        .footer-section ul li a::before {
            content: '→';
            font-size: 0.8rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #718096;
            color: #cbd5e0;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(45, 55, 72, 0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            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: #a0aec0;
            transition: color 0.3s;
        }

        .popup-close:hover {
            color: #7c3aed;
        }

        .popup-content h2 {
            color: #7c3aed;
            margin-bottom: 2rem;
            font-size: 2rem;
            font-weight: 700;
        }

        .popup-content h3 {
            color: #06b6d4;
            margin: 1.5rem 0 1rem;
            font-size: 1.3rem;
        }

        .popup-content p {
            color: #6366f1;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes drift {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(-20px, -20px) rotate(90deg);
            }
            50% {
                transform: translate(20px, -40px) rotate(180deg);
            }
            75% {
                transform: translate(-20px, -20px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .about-layout,
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .nav-menu {
                display: none;
            }

            .form-layout {
                grid-template-columns: 1fr;
            }

            .plan-card.recommended {
                transform: none;
            }

            .hero-cta {
                justify-content: center;
            }

            .about-highlights {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }
    