
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.7;
            color: #0b0102;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: #ffffff;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1.2rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #4ade80;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #22c55e;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

       

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu a {
            color: #34495e;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-menu a:hover {
            color: #4ade80;
            background: rgba(0, 0, 0, 0.1);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #04b947 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            padding-top: 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
            opacity: 0.3;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .hero-text h1 {
            font-size: 3.8rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }

        .hero-text .subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            font-style: italic;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .hero-btn-primary {
            background: #decc24;
            color: white;
        }

        .hero-btn-primary:hover {
            background: #00bfca;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(214, 48, 49, 0.3);
        }

        .hero-btn-secondary {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
        }

        .hero-btn-secondary:hover {
            background: rgba(255,255,255,0.3);
            border-color: white;
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease 0.5s both;
        }

        .hero-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 30px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .hero-card-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #fdcb6e, #decc24);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 3rem;
            animation: pulse 2s infinite;
        }

        .hero-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .hero-card p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: #f8f9fa;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-tag {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #0b0102;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 2rem;
            color: #0b0102;
            margin-bottom: 2rem;
            position: relative;
        }

        .about-content h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #4ade80, #22c55e);
            border-radius: 2px;
        }

        .about-content p {
            font-size: 1.1rem;
            color: #34495e;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .about-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }

        .about-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .about-feature-text h4 {
            color: #0b0102;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .about-feature-text p {
            color: #7f8c8d;
            font-size: 0.95rem;
            margin: 0;
        }

        .about-visual {
            position: relative;
        }

        .about-main-image {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            height: 450px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .floating-stats {
            position: absolute;
            background: white;
            padding: 1.5rem 3.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            min-width: 180px;
        }

        .floating-stats.stat-1 {
            top: 20px;
            right: -20px;
            background: linear-gradient(135deg, #00b894, #00a085);
            color: white;
        }

        .floating-stats.stat-2 {
            bottom: 30px;
            left: -30px;
            background: linear-gradient(135deg, #fdcb6e, #decc24);
            color: white;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }

        .service-card {
            background: white;
            border: 2px solid #ecf0f1;
            border-radius: 25px;
            padding: 3rem 2.5rem;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            transition: left 0.5s;
            z-index: 0;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            border-color: #4ade80;
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(116, 185, 255, 0.3);
        }

        .service-card:hover .service-content {
            color: white;
        }

        .service-content {
            position: relative;
            z-index: 2;
            transition: color 0.3s;
        }

        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #ddd6fe, #c7d2fe);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: rgba(255,255,255,0.2);
            color: white;
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.6rem;
            color: #0b0102;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .service-card p {
            color: #7f8c8d;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 120px 0;
            background: linear-gradient(135deg, #01271f 0%, #636e72 100%);
            color: white;
        }

        .why-choose .section-tag {
            background: linear-gradient(135deg, #fdcb6e, #decc24);
        }

        .why-choose .section-title,
        .why-choose .section-description {
            color: white;
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }

        .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: 3rem 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .feature-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-8px);
        }

        .feature-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fdcb6e, #decc24);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-card p {
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Healthcare Plans */
        .plans {
            padding: 120px 0;
            background: #f8f9fa;
        }

        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 5rem;
        }

        .plan-card {
            background: white;
            border-radius: 25px;
            padding: 3rem 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 3px solid transparent;
            transition: all 0.3s;
            position: relative;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .plan-card.featured {
            border-color: #4ade80;
            transform: scale(1.05);
            position: relative;
        }

        .plan-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
            padding: 0.5rem 2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .plan-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: white;
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0b0102;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: #4ade80;
            margin-bottom: 0.5rem;
        }

        .plan-price .currency {
            font-size: 1.5rem;
            vertical-align: top;
        }

        .plan-price .period {
            font-size: 1.2rem;
            color: #7f8c8d;
            font-weight: 400;
        }

        .plan-description {
            color: #7f8c8d;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .plan-features {
            list-style: none;
            margin: 2.5rem 0;
            text-align: left;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid #ecf0f1;
            color: #34495e;
        }

        .plan-features li::before {
            content: '✓';
            color: #00b894;
            font-weight: bold;
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        .plan-button {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
        }

        .plan-button:hover {
            background: linear-gradient(135deg, #22c55e, #4ade80);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(116, 185, 255, 0.3);
        }

        /* Contact & Appointment */
        .contact {
            padding: 120px 0;
            background: white;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            margin-top: 5rem;
        }

        .contact-info {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
            padding: 4rem 3rem;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(255,255,255,0.1)" cx="50" cy="50" r="2"/></svg>') repeat;
            animation: rotate 30s linear infinite;
        }

        .contact-info h3 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
        }

        .contact-item-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-item-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .contact-item-content p {
            opacity: 0.9;
            line-height: 1.6;
        }

        .appointment-form {
            background: #f8f9fa;
            padding: 4rem 3rem;
            border-radius: 30px;
            border: 2px solid #ecf0f1;
        }

        .form-title {
            font-size: 2rem;
            color: #0b0102;
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: #0b0102;
            font-size: 1.1rem;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: 15px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
            background: white;
        }

        .form-input:focus {
            outline: none;
            border-color: #4ade80;
            box-shadow: 0 0 0 4px rgba(116, 185, 255, 0.1);
        }

        .form-input::placeholder {
            color: #bdc3c7;
        }

        .submit-btn {
            background: linear-gradient(135deg, #decc24, #00bfca);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #00bfca, #decc24);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(214, 48, 49, 0.3);
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }

        .testimonial-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            border-left: 5px solid #4ade80;
            transition: all 0.3s;
            position: relative;
        }

        .testimonial-card::before {
            content: '“';
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 4rem;
            color: #ecf0f1;
            font-weight: bold;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .testimonial-avatar {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.4rem;
        }

        .testimonial-info h4 {
            color: #0b0102;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .testimonial-info .role {
            color: #7f8c8d;
            font-size: 0.95rem;
        }

        .testimonial-rating {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1.5rem;
        }

        .star {
            color: #f39c12;
            font-size: 1.2rem;
        }

        .testimonial-text {
            color: #34495e;
            line-height: 1.8;
            font-size: 1.05rem;
            font-style: italic;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0b0102 0%, #01271f 100%);
            color: white;
            padding: 5rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #4ade80;
            margin-bottom: 2rem;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .footer-section p {
            color: #bdc3c7;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 1rem;
        }

        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .footer-section ul li a:hover {
            color: #4ade80;
        }

        .footer-section ul li a::before {
            content: '›';
            font-size: 1.2rem;
            font-weight: bold;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid #7f8c8d;
            color: #bdc3c7;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 62, 80, 0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            background: white;
            padding: 3.5rem;
            border-radius: 25px;
            max-width: 650px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            margin: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            border: 2px solid #ecf0f1;
        }

        .popup-close {
            position: absolute;
            top: 25px;
            right: 30px;
            background: none;
            border: none;
            font-size: 2.5rem;
            cursor: pointer;
            color: #bdc3c7;
            transition: all 0.3s;
        }

        .popup-close:hover {
            color: #0b0102;
            transform: scale(1.1);
        }

        .popup-content h2 {
            color: #0b0102;
            margin-bottom: 2rem;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .popup-content h3 {
            color: #4ade80;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }

        .popup-content p {
            color: #34495e;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .nav-menu {
                display: none;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .plan-card.featured {
                transform: none;
            }

            .hero-actions {
                justify-content: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }
    