 :root {
    --primary: #7c3aed;
    --secondary: #c4b5fd;
    --dark: #4c1d95;
    --light: #f5f3ff;
    --text-gray: #6b21a8;
    --transition: all 0.3s ease-in-out;
}


        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        html { scroll-behavior: smooth; }
        body { background-color: var(--light); color: var(--dark); overflow-x: hidden; }

        /* Animation Classes */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* Header & Nav */
        header {
            background: white;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
        .nav-links { display: flex; list-style: none; gap: 20px; }
        .nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; transition: var(--transition); }
        .nav-links a:hover { color: var(--primary); }

        .btn-pulse {
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
            100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('../img/hero.webp') center/cover;
            padding: 0 10%;
            margin-top: 60px;
        }

        .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; color: var(--dark); }
        .hero p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 2rem; max-width: 900px; }

        .typing-text { color: var(--secondary); font-weight: 700; min-height: 1.5em; }

        .hero-btns { display: flex; gap: 15px; }
        .btn { padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 600; transition: var(--transition); cursor: pointer; border: none; }
        .btn-primary { background: var(--primary); color: white; }
        .btn-outline { border: 2px solid var(--primary); color: var(--primary); }
        .btn:hover { opacity: 0.9; transform: translateY(-3px); }

        /* Sections General */
        section { padding: 80px 10%; }
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-size: 2.5rem; color: var(--dark); }

        /* About & Counters */
        .about-container { display: flex; gap: 50px; align-items: center; }
        .counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
        .counter-box { text-align: center; padding: 20px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .counter-box h3 { font-size: 2rem; color: var(--primary); }

        /* Services Grid */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .service-card {
            background: white; padding: 40px; border-radius: 15px; text-align: center;
            transition: var(--transition); border-bottom: 4px solid transparent;
        }
        .service-card:hover { transform: translateY(-10px); border-color: var(--secondary); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .service-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }

        /* Plans */
        .plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
        .plan-card { background: var(--dark); color: white; padding: 30px; border-radius: 15px; text-align: center; }
        .plan-card h4 { color: var(--secondary); font-size: 1.5rem; }

        /* Appointment Form */
        .appointment-section { background: #f5f3ff; border-radius: 20px; }
        .form-container { max-width: 800px; margin: 0 auto; background: white; padding: 40px; border-radius: 15px; }
        .form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
        .form-group input, .form-group select, .form-group textarea { padding: 12px; border: 1px solid #ddd; border-radius: 5px; margin-top: 5px; }
        .confirmation-msg { display: none; background: #dcfce7; color: #166534; padding: 20px; border-radius: 10px; margin-top: 20px; text-align: center; }

        /* Testimonials */
        .testimonial-slider { text-align: center; max-width: 800px; margin: 0 auto; overflow: hidden; position: relative; height: 150px; }
        .testimonial-item { position: absolute; width: 100%; transition: 0.5s; opacity: 0; }
        .testimonial-item.active { opacity: 1; }

        /* Popups (Modals) */
        .modal {
            display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
        }
        .modal-content {
            background: white; padding: 40px; border-radius: 15px; width: 90%; max-width: 500px;
            position: relative; transform: scale(0.7); transition: 0.3s;
        }
        .modal.active { display: flex; }
        .modal.active .modal-content { transform: scale(1); }
        .close-modal { position: absolute; right: 20px; top: 20px; font-size: 1.5rem; cursor: pointer; }

        /* Footer */
        footer { background: var(--dark); color: white; padding: 50px 10% 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #cbd5e1; text-decoration: none; }
        .social-icons { display: flex; gap: 15px; margin-top: 20px; }
        .social-icons a { color: white; font-size: 1.2rem; }
        .footer-bottom { text-align: center; border-top: 1px solid #334155; padding-top: 20px; font-size: 0.9rem; }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2.2rem; }
            .about-container { flex-direction: column; }
        }
    