
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #08030a;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(30, 60, 114, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, #f97316 0%, #facc15 50%, #3b82f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            animation: slideInFromTop 1s ease-out;
        }

        @keyframes slideInFromTop {
            0% { opacity: 0; transform: translateY(-50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            animation: slideInFromBottom 1s ease-out 0.3s both;
        }

        @keyframes slideInFromBottom {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 0.95; transform: translateY(0); }
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #3b82f6, #e67e22);
            color: white;
            padding: 18px 45px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
            animation: slideInFromBottom 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(243, 156, 18, 0.4);
        }

        /* Content Sections */
        .section {
            padding: 6rem 0;
        }

        .section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 4rem;
            font-weight: 800;
            color: #f97316;
            position: relative;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #3b82f6, #e67e22);
            border-radius: 2px;
        }

        .sectionw {
            padding: 6rem 0;
        }

        .sectionw h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 4rem;
            font-weight: 800;
            color: #fff;
            position: relative;
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #08030a;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #f97316;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .feature-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-left: 5px solid #3b82f6;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .feature-item h4 {
            color: #f97316;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        /* Services Section */
        .services {
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #dee2e6;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(45deg, #f97316, #3b82f6);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(30, 60, 114, 0.15);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #f97316, #facc15);
            border-radius: 50%;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
        }

        .service-card h3 {
            color: #f97316;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .service-card p {
            color: #555;
            line-height: 1.6;
        }

        /* Why Choose Us */
        .why-choose {
            background: linear-gradient(135deg, #f97316 0%, #facc15 100%);
            color: white;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .why-item {
            text-align: center;
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .why-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .why-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #3b82f6, #e67e22);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
        }

        .why-item h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        /* Health Care Plan */
        .plan {
            background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
        }

        .plan-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .plan-card {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            position: relative;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(45deg, #f97316, #3b82f6);
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .plan-card.featured {
            border: 3px solid #3b82f6;
            transform: scale(1.05);
        }

        .plan-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: #3b82f6;
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.9rem;
        }

        .plan-title {
            font-size: 1.8rem;
            color: #f97316;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .plan-price {
            font-size: 3.5rem;
            font-weight: 900;
            color: #3b82f6;
            margin: 1.5rem 0;
        }

        .plan-features {
            list-style: none;
            margin: 2.5rem 0;
            text-align: left;
        }

        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #ecf0f1;
            position: relative;
            padding-left: 30px;
        }

        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
        }

        .plan-button {
            background: linear-gradient(45deg, #f97316, #facc15);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            width: 100%;
        }

        .plan-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
        }

        /* Contact & Appointment */
        .contact {
            background: linear-gradient(135deg, #08030a 0%, #001817 100%);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info h3 {
            margin-bottom: 2.5rem;
            font-size: 2rem;
            color: #3b82f6;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #3b82f6, #e67e22);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            font-size: 1.5rem;
            box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
        }

        .appointment-form {
            background: rgba(255, 255, 255, 0.15);
            padding: 3rem;
            border-radius: 25px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .appointment-form h3 {
            margin-bottom: 2rem;
            font-size: 1.8rem;
            color: #3b82f6;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: white;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.95);
            font-size: 1rem;
            color: #08030a;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.3);
            transform: translateY(-2px);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, #3b82f6, #e67e22);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 1.1rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(243, 156, 18, 0.4);
        }

        /* Testimonials */
        .testimonials {
            background: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .testimonial-quote {
            font-size: 4rem;
            color: #3b82f6;
            position: absolute;
            top: 1rem;
            left: 2rem;
            opacity: 0.3;
            font-weight: bold;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 1.1rem;
            color: #08030a;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #f97316, #3b82f6);
            border-radius: 50%;
            margin-right: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
        }

        .author-info strong {
            color: #f97316;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #f97316 0%, #000 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 {
            margin-bottom: 1.5rem;
            color: #3b82f6;
            font-size: 1.3rem;
        }

        .footer-section p {
            line-height: 1.6;
            opacity: 0.9;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #3b82f6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            opacity: 0.8;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
        }

        .modal-content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            margin: 3% auto;
            padding: 3rem;
            border-radius: 25px;
            width: 90%;
            max-width: 700px;
            position: relative;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 32px;
            font-weight: bold;
            position: absolute;
            right: 25px;
            top: 20px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #3b82f6;
        }

        .modal h2 {
            color: #f97316;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .modal h3 {
            color: #08030a;
            margin: 1.5rem 0 1rem;
        }

        .modal p, .modal li {
            line-height: 1.6;
            color: #555;
            margin-bottom: 1rem;
        }

        .newsletter-form .form-group {
            margin-bottom: 1.5rem;
        }

        .newsletter-form label {
            color: #08030a;
            font-weight: 600;
        }

        .newsletter-form input {
            background: white;
            border: 2px solid #ecf0f1;
            color: #08030a;
        }

        .newsletter-form input:focus {
            border-color: #3b82f6;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin: 1.5rem 0;
        }

        .checkbox-group input {
            width: auto;
            margin-right: 0.8rem;
            margin-top: 0.2rem;
        }

        .checkbox-group label {
            line-height: 1.5;
        }

        /* Confirmation Message */
        .confirmation {
            display: none;
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            color: #155724;
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 1.5rem;
            border: 1px solid #c3e6cb;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .container {
                padding: 0 15px;
            }

            .modal-content {
                width: 95%;
                padding: 2rem;
                margin: 5% auto;
            }

            .section h2 {
                font-size: 2.2rem;
            }

            .services-grid,
            .plan-cards {
                grid-template-columns: 1fr;
            }
        }
    