ABOUT ME

Healthy Diet for Growing Kids – A Complete Guide for Parents

A healthy diet is very important for growing kids. It helps them stay active, strong, and smart. As children grow, their bodies and minds need the right food to develop properly. In this article, we will explain what a healthy diet for kids looks like, why it is important, and share some easy tips to help parents give their children the best nutrition.




Why a Healthy Diet is Important for Kids?

Growing kids need energy, vitamins, and minerals to stay healthy. A good diet helps in:

✅ Building strong bones and muscles
✅ Boosting brain development
✅ Improving immunity to fight diseases
✅ Supporting growth and height
✅ Keeping energy levels high for school and play

Unhealthy eating habits can lead to problems like weak immunity, poor concentration, obesity, and other health issues.


What Should Be Included in a Healthy Diet for Kids?

Here is a list of important foods every growing child should have:

1️⃣ Fruits and Vegetables

  • Give at least 5 portions daily

  • Rich in vitamins, fiber, and minerals

  • Examples: Apples, bananas, carrots, spinach, oranges

2️⃣ Proteins

  • Help build muscles and repair body tissues

  • Sources: Eggs, chicken, fish, lentils, beans, nuts

3️⃣ Whole Grains

  • Provide energy and fiber

  • Examples: Brown bread, oats, whole-wheat pasta, rice

4️⃣ Dairy Products

  • Important for strong bones and teeth

  • Sources: Milk, yogurt, cheese

5️⃣ Healthy Fats

  • Supports brain development

  • Sources: Olive oil, nuts, avocados, seeds

6️⃣ Water

  • Keeps the body hydrated

  • Avoid sugary drinks; offer water or fresh juices instead


Foods to Limit or Avoid

❌ Sugary snacks and soft drinks
❌ Too many fried and junk foods
❌ Excess salty snacks like chips
❌ Processed or ready-made meals

Occasional treats are okay, but everyday meals should be healthy and balanced.


Easy Healthy Meal Ideas for Kids

💡 Breakfast

  • Whole-grain cereal with milk and fruits

  • Eggs with whole-wheat toast

  • Oatmeal with honey and berries

💡 Lunch

  • Chicken or vegetable sandwich with fruit

  • Rice with lentils and vegetables

  • Pasta with cheese and salad

💡 Snacks

  • Fresh fruits or dry fruits

  • Yogurt with nuts

  • Homemade smoothies

💡 Dinner

  • Grilled fish or chicken with vegetables

  • Soup with whole-grain bread

  • Rice, salad, and beans


Tips to Encourage Healthy Eating in Kids

✔️ Be a role model – Eat healthy yourself
✔️ Involve kids in cooking or choosing meals
✔️ Make food colorful and fun
✔️ Avoid forcing kids to eat – encourage gently
✔️ Keep healthy snacks available at home


Conclusion

A healthy diet plays a key role in a child's growth, brain power, and energy. By providing balanced meals with fruits, vegetables, proteins, grains, and healthy fats, parents can ensure their children grow strong and stay active. Remember, good eating habits start from home. Let’s help our kids stay healthy today for a brighter tomorrow! 🌟


HTML SCRIPT

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Healthy Kids - Growth Diet Plans</title>

    <style>

        /* Global Styles */

        :root {

            --primary: #4CAF50;

            --secondary: #FFC107;

            --accent: #FF5722;

            --light: #F9F9F9;

            --dark: #333;

            --white: #FFF;

        }

        

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

        }

        

        body {

            background-color: var(--light);

            color: var(--dark);

            line-height: 1.6;

        }

        

        .container {

            width: 90%;

            max-width: 1200px;

            margin: 0 auto;

            padding: 0 15px;

        }

        

        /* Header Styles */

        header {

            background-color: var(--white);

            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

            position: fixed;

            width: 100%;

            top: 0;

            z-index: 1000;

        }

        

        .header-container {

            display: flex;

            justify-content: space-between;

            align-items: center;

            padding: 15px 0;

        }

        

        .logo {

            display: flex;

            align-items: center;

        }

        

        .logo img {

            height: 50px;

            margin-right: 10px;

            animation: bounce 2s infinite;

        }

        

        .logo h1 {

            color: var(--primary);

            font-size: 24px;

        }

        

        nav ul {

            display: flex;

            list-style: none;

        }

        

        nav ul li {

            margin-left: 20px;

        }

        

        nav ul li a {

            text-decoration: none;

            color: var(--dark);

            font-weight: 500;

            transition: color 0.3s;

        }

        

        nav ul li a:hover {

            color: var(--primary);

        }

        

        /* Hero Section */

        .hero {

            background: url('https://lh3.googleusercontent.com/J1--w7DCtyCiBEHx-mPSP_kb0x_fQehEElPKSB12TeK84kITWFOEi5tDCbvUUCR9yP4c6_kUhM3mRGkSDDMKzrkgOchJNOSed0ucjYv7dfTmMIw9G2o4HBasu-g9Lx83W36gTaOkLSWIt6kOMrkA4XRDaZ-aeM79V5qF6qyGbI7RKRw1fC5gpQ=w1280') no-repeat center center;

            background-size: cover;

            height: 80vh;

            display: flex;

            align-items: center;

            text-align: center;

            color: white;

            margin-top: 80px;

            position: relative;

        }

        

        .hero::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: rgba(0, 0, 0, 0.4);

        }

        

        .hero .container {

            position: relative;

            z-index: 1;

        }

        

        .hero-content {

            max-width: 800px;

            margin: 0 auto;

            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);

        }

        

        .hero h2 {

            font-size: 3rem;

            margin-bottom: 20px;

            animation: fadeInDown 1s ease-out;

        }

        

        .hero p {

            font-size: 1.2rem;

            margin-bottom: 30px;

            animation: fadeInUp 1s ease-out;

        }

        

        .btn {

            display: inline-block;

            background-color: var(--secondary);

            color: var(--dark);

            padding: 12px 30px;

            border-radius: 50px;

            text-decoration: none;

            font-weight: 600;

            transition: all 0.3s;

            border: none;

            cursor: pointer;

            font-size: 1rem;

        }

        

        .btn:hover {

            background-color: var(--white);

            transform: translateY(-3px);

            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

        }

        

        /* Age Selection Section */

        .age-selection {

            padding: 80px 0;

            text-align: center;

            background: url('https://lh3.googleusercontent.com/J1--w7DCtyCiBEHx-mPSP_kb0x_fQehEElPKSB12TeK84kITWFOEi5tDCbvUUCR9yP4c6_kUhM3mRGkSDDMKzrkgOchJNOSed0ucjYv7dfTmMIw9G2o4HBasu-g9Lx83W36gTaOkLSWIt6kOMrkA4XRDaZ-aeM79V5qF6qyGbI7RKRw1fC5gpQ=w1280') no-repeat center center;

            background-size: cover;

            position: relative;

        }

        

        .age-selection::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: rgba(255, 255, 255, 0.9);

        }

        

        .age-selection .container {

            position: relative;

            z-index: 1;

        }

        

        .section-title {

            font-size: 2.5rem;

            color: var(--primary);

            margin-bottom: 20px;

            position: relative;

            display: inline-block;

        }

        

        .section-title:after {

            content: '';

            position: absolute;

            width: 50%;

            height: 3px;

            background-color: var(--secondary);

            bottom: -10px;

            left: 25%;

        }

        

        .section-subtitle {

            font-size: 1.2rem;

            color: var(--dark);

            margin-bottom: 50px;

            max-width: 700px;

            margin-left: auto;

            margin-right: auto;

        }

        

        .age-options {

            display: flex;

            justify-content: center;

            flex-wrap: wrap;

            gap: 20px;

            margin-bottom: 40px;

        }

        

        .age-option {

            background-color: var(--white);

            border-radius: 10px;

            padding: 20px;

            width: 150px;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

            transition: all 0.3s;

            cursor: pointer;

        }

        

        .age-option:hover {

            transform: translateY(-10px);

            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

        }

        

        .age-option.selected {

            background-color: var(--primary);

            color: var(--white);

        }

        

        .age-option img {

            width: 60px;

            height: 60px;

            margin-bottom: 15px;

            object-fit: cover;

            border-radius: 50%;

        }

        

        .age-option h3 {

            font-size: 1.2rem;

            margin-bottom: 5px;

        }

        

        /* Diet Plan Button */

        .diet-plan-btn {

            background-color: var(--accent);

            color: var(--white);

            padding: 15px 40px;

            font-size: 1.2rem;

            opacity: 0;

            transform: translateY(20px);

            transition: all 0.5s;

        }

        

        .diet-plan-btn.show {

            opacity: 1;

            transform: translateY(0);

        }

        

        /* Features Section */

        .features {

            padding: 80px 0;

            background-color: var(--white);

        }

        

        .features-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 30px;

            margin-top: 50px;

        }

        

        .feature-card {

            background-color: var(--light);

            border-radius: 10px;

            padding: 30px;

            text-align: center;

            transition: all 0.3s;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

        }

        

        .feature-card:hover {

            transform: translateY(-10px);

            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);

        }

        

        .feature-card img {

            width: 80px;

            height: 80px;

            margin-bottom: 20px;

            object-fit: contain;

        }

        

        .feature-card h3 {

            font-size: 1.5rem;

            margin-bottom: 15px;

            color: var(--primary);

        }

        

        /* Testimonials Section */

        .testimonials {

            padding: 80px 0;

            text-align: center;

            background: url('https://images.unsplash.com/photo-1571115177098-24ec42ed204d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;

            background-size: cover;

            position: relative;

            color: white;

        }

        

        .testimonials::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: rgba(0, 0, 0, 0.7);

        }

        

        .testimonials .container {

            position: relative;

            z-index: 1;

        }

        

        .testimonials .section-title {

            color: var(--secondary);

        }

        

        .testimonials-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 30px;

            margin-top: 50px;

        }

        

        .testimonial-card {

            background-color: rgba(255, 255, 255, 0.1);

            border-radius: 10px;

            padding: 30px;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

            position: relative;

            transition: all 0.3s;

            backdrop-filter: blur(5px);

        }

        

        .testimonial-card:hover {

            transform: translateY(-10px);

            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

        }

        

        .testimonial-card:before {

            content: '"';

            font-size: 5rem;

            color: rgba(255, 193, 7, 0.2);

            position: absolute;

            top: 10px;

            left: 20px;

            line-height: 1;

        }

        

        .testimonial-card img {

            width: 80px;

            height: 80px;

            border-radius: 50%;

            object-fit: cover;

            margin-bottom: 20px;

            border: 3px solid var(--secondary);

        }

        

        .testimonial-card p {

            font-style: italic;

            margin-bottom: 20px;

        }

        

        .testimonial-card h4 {

            color: var(--secondary);

            margin-bottom: 5px;

        }

        

        .testimonial-card span {

            color: #ccc;

            font-size: 0.9rem;

        }

        

        /* Diet Plan Modal */

        .modal {

            display: none;

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background-color: rgba(0, 0, 0, 0.8);

            z-index: 2000;

            overflow-y: auto;

        }

        

        .modal-content {

            background-color: white;

            margin: 5% auto;

            padding: 30px;

            border-radius: 10px;

            width: 80%;

            max-width: 800px;

            position: relative;

            animation: modalFadeIn 0.5s;

        }

        

        .close-modal {

            position: absolute;

            top: 15px;

            right: 15px;

            font-size: 1.5rem;

            cursor: pointer;

            color: var(--dark);

        }

        

        /* Footer */

        footer {

            background-color: var(--dark);

            color: var(--white);

            padding: 50px 0 20px;

        }

        

        .footer-container {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            gap: 30px;

            margin-bottom: 30px;

        }

        

        .footer-col h3 {

            font-size: 1.3rem;

            margin-bottom: 20px;

            color: var(--secondary);

        }

        

        .footer-col ul {

            list-style: none;

        }

        

        .footer-col ul li {

            margin-bottom: 10px;

        }

        

        .footer-col ul li a {

            color: #ccc;

            text-decoration: none;

            transition: color 0.3s;

        }

        

        .footer-col ul li a:hover {

            color: var(--secondary);

        }

        

        .social-links {

            display: flex;

            gap: 15px;

        }

        

        .social-links a {

            color: var(--white);

            background-color: rgba(255, 255, 255, 0.1);

            width: 40px;

            height: 40px;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            transition: all 0.3s;

        }

        

        .social-links a:hover {

            background-color: var(--primary);

            transform: translateY(-3px);

        }

        

        .copyright {

            text-align: center;

            padding-top: 20px;

            border-top: 1px solid rgba(255, 255, 255, 0.1);

            color: #aaa;

            font-size: 0.9rem;

        }

        

        /* Animations */

        @keyframes fadeIn {

            from { opacity: 0; }

            to { opacity: 1; }

        }

        

        @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 bounce {

            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }

            40% { transform: translateY(-15px); }

            60% { transform: translateY(-7px); }

        }

        

        @keyframes pulse {

            0% { transform: scale(1); }

            50% { transform: scale(1.05); }

            100% { transform: scale(1); }

        }

        

        @keyframes modalFadeIn {

            from { 

                opacity: 0;

                transform: translateY(-50px);

            }

            to { 

                opacity: 1;

                transform: translateY(0);

            }

        }

        

        /* Responsive Styles */

        @media (max-width: 768px) {

            .header-container {

                flex-direction: column;

                padding: 15px 0;

            }

            

            nav ul {

                margin-top: 15px;

            }

            

            nav ul li {

                margin: 0 10px;

            }

            

            .hero h2 {

                font-size: 2rem;

            }

            

            .hero p {

                font-size: 1rem;

            }

            

            .section-title {

                font-size: 2rem;

            }

            

            .modal-content {

                width: 95%;

                margin: 10% auto;

            }

        }

    </style>

</head>

<body>

    <!-- Header -->

    <header>

        <div class="container header-container">

            <div class="logo">

                <img src="https://cdn-icons-png.flaticon.com/512/2103/2103633.png" alt="Healthy Kids Logo">

                <h1>HealthyKids</h1>

            </div>

            <nav>

                <ul>

                    <li><a href="#home">Home</a></li>

                    <li><a href="#age-selection">Diet Plans</a></li>

                    <li><a href="#features">Benefits</a></li>

                    <li><a href="#testimonials">Reviews</a></li>

                </ul>

            </nav>

        </div>

    </header>


    <!-- Hero Section with Background Image -->

    <section class="hero" id="home">

        <div class="container">

            <div class="hero-content">

                <h2>Healthy Diet for Growing Kids</h2>

                <p>Give your child the nutrition they need to grow strong and healthy with our age-appropriate diet plans designed by pediatric nutrition experts.</p>

                <a href="#age-selection" class="btn" style="animation: pulse 2s infinite;">Get Started</a>

            </div>

        </div>

    </section>


    <!-- Age Selection Section -->

    <section class="age-selection" id="age-selection">

        <div class="container">

            <h2 class="section-title">Select Your Child's Age</h2>

            <p class="section-subtitle">We provide customized diet plans based on your child's age group to ensure they get the right nutrients at the right time.</p>

            

            <div class="age-options">

                <div class="age-option" data-age="1-3">

                    <img src="https://cdn-icons-png.flaticon.com/512/1864/1864593.png" alt="1-3 years">

                    <h3>1-3 Years</h3>

                    <p>Toddlers</p>

                </div>

                <div class="age-option" data-age="4-6">

                    <img src="https://cdn-icons-png.flaticon.com/512/1864/1864514.png" alt="4-6 years">

                    <h3>4-6 Years</h3>

                    <p>Pre-school</p>

                </div>

                <div class="age-option" data-age="7-9">

                    <img src="https://cdn-icons-png.flaticon.com/512/3048/3048127.png" alt="7-9 years">

                    <h3>7-9 Years</h3>

                    <p>Early School</p>

                </div>

                <div class="age-option" data-age="10-12">

                    <img src="https://cdn-icons-png.flaticon.com/512/3663/3663332.png" alt="10-12 years">

                    <h3>10-12 Years</h3>

                    <p>Pre-teens</p>

                </div>

            </div>

            

            <button id="dietPlanBtn" class="btn diet-plan-btn">Get Diet Plan</button>

        </div>

    </section>


    <!-- Features Section -->

    <section class="features" id="features">

        <div class="container">

            <h2 class="section-title">Why Our Diet Plans Work</h2>

            <p class="section-subtitle">Our scientifically designed nutrition plans provide everything your growing child needs.</p>

            

            <div class="features-grid">

                <div class="feature-card">

                    <img src="https://cdn-icons-png.flaticon.com/512/3079/3079168.png" alt="Balanced Nutrition">

                    <h3>Balanced Nutrition</h3>

                    <p>Perfect balance of proteins, carbs, and healthy fats tailored to your child's growth needs.</p>

                </div>

                <div class="feature-card">

                    <img src="https://cdn-icons-png.flaticon.com/512/1046/1046857.png" alt="Brain Development">

                    <h3>Brain Development</h3>

                    <p>Essential nutrients to support cognitive development and learning abilities.</p>

                </div>

                <div class="feature-card">

                    <img src="https://cdn-icons-png.flaticon.com/512/706/706164.png" alt="Immune Boost">

                    <h3>Immune Boost</h3>

                    <p>Foods rich in vitamins and minerals to strengthen your child's immune system.</p>

                </div>

            </div>

        </div>

    </section>


    <!-- Testimonials Section -->

    <section class="testimonials" id="testimonials">

        <div class="container">

            <h2 class="section-title">What Parents Say</h2>

            <p class="section-subtitle">Hear from parents who have seen amazing results with our diet plans.</p>

            

            <div class="testimonials-grid">

                <div class="testimonial-card">

                    <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah J.">

                    <p>"My 5-year-old was such a picky eater before we tried these plans. Now he's eating a variety of healthy foods and has so much more energy!"</p>

                    <h4>Sarah J.</h4>

                    <span>Mom of 2</span>

                </div>

                <div class="testimonial-card">

                    <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Maria L.">

                    <p>"The 7-9 years plan helped my daughter improve her focus at school and she's growing at a healthy rate according to her pediatrician."</p>

                    <h4>Maria L.</h4>

                    <span>Mom of 3</span>

                </div>

                <div class="testimonial-card">

                    <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="David K.">

                    <p>"As a single dad, I struggled with meal planning. These age-specific diet plans made it so easy to ensure my son gets proper nutrition."</p>

                    <h4>David K.</h4>

                    <span>Dad of 1</span>

                </div>

            </div>

        </div>

    </section>


    <!-- Footer -->

    <footer>

        <div class="container">

            <div class="footer-container">

                <div class="footer-col">

                    <h3>HealthyKids</h3>

                    <p>Helping children grow healthy and strong through proper nutrition since 2015.</p>

                    <div class="social-links">

                        <a href="techpk"><i class="fab fa-facebook-f"></i></a>

                        <a href="techpk"><i class="fab fa-twitter"></i></a>

                        <a href="techpk"><i class="fab fa-instagram"></i></a>

                        <a href="techpk"><i class="fab fa-pinterest"></i></a>

                    </div>

                </div>

                <div class="footer-col">

                    <h3>Quick Links</h3>

                    <ul>

                        <li><a href="#home">Home</a></li>

                        <li><a href="#age-selection">Diet Plans</a></li>

                        <li><a href="#features">Benefits</a></li>

                        <li><a href="#testimonials">Reviews</a></li>

                    </ul>

                </div>

                <div class="footer-col">

                    <h3>Resources</h3>

                    <ul>

                        <li><a href="techpk">Nutrition Guide</a></li>

                        <li><a href="techpk">Growth Charts</a></li>

                        <li><a href="techpk">Healthy Recipes</a></li>

                        <li><a href="techpk">Expert Advice</a></li>

                    </ul>

                </div>

                <div class="footer-col">

                    <h3>Contact</h3>

                    <ul>

                        <li>Email: info@healthykids.com</li>

                        <li>Phone: (123) 456-7890</li>

                        <li>Address: 123 Health St, Nutrition City</li>

                    </ul>

                </div>

            </div>

            <div class="copyright">

                <p>&copy; 2023 HealthyKids. All rights reserved.</p>

            </div>

        </div>

    </footer>


    <!-- Diet Plan Modal -->

    <div id="dietPlanModal" class="modal">

        <div class="modal-content">

            <span class="close-modal">&times;</span>

            <div id="dietPlanContent"></div>

        </div>

    </div>


    <!-- Font Awesome for icons -->

    <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>

    

    <!-- JavaScript -->

    <script>

        document.addEventListener('DOMContentLoaded', function() {

            // Age selection functionality

            const ageOptions = document.querySelectorAll('.age-option');

            const dietPlanBtn = document.getElementById('dietPlanBtn');

            const dietPlanModal = document.getElementById('dietPlanModal');

            const dietPlanContent = document.getElementById('dietPlanContent');

            const closeModal = document.querySelector('.close-modal');

            let selectedAge = null;

            

            ageOptions.forEach(option => {

                option.addEventListener('click', function() {

                    // Remove selected class from all options

                    ageOptions.forEach(opt => opt.classList.remove('selected'));

                    

                    // Add selected class to clicked option

                    this.classList.add('selected');

                    selectedAge = this.getAttribute('data-age');

                    

                    // Show the diet plan button

                    dietPlanBtn.classList.add('show');

                });

            });

            

            // Diet plan button click handler

            dietPlanBtn.addEventListener('click', function() {

                if (!selectedAge) {

                    alert('Please select an age group first');

                    return;

                }

                

                // Show diet plan based on selected age

                let dietPlan = '';

                let planTitle = '';

                

                switch(selectedAge) {

                    case '1-3':

                        planTitle = 'Toddler Diet Plan (1-3 Years)';

                        dietPlan = `

                            <h2 style="color: var(--primary); margin-bottom: 20px;">${planTitle}</h2>

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Breakfast:</h3>

                                <p>- 1/2 cup whole grain cereal with whole milk<br>

                                - 1/2 banana, mashed<br>

                                - 1/2 hard-boiled egg</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Snack:</h3>

                                <p>- 1/4 cup diced cheese<br>

                                - 2-3 whole grain crackers</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Lunch:</h3>

                                <p>- 1/4 cup cooked pasta with 1 tbsp tomato sauce<br>

                                - 1/4 cup steamed carrots<br>

                                - 1/4 cup diced chicken</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Snack:</h3>

                                <p>- 1/2 cup whole milk yogurt<br>

                                - 1/4 cup berries</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Dinner:</h3>

                                <p>- 1/4 cup mashed sweet potatoes<br>

                                - 1/4 cup cooked lentils<br>

                                - 1/4 cup steamed broccoli</p>

                            </div>

                            

                            <p style="font-style: italic; color: #666;">Note: Adjust portions based on your child's appetite. Always consult with your pediatrician about dietary changes.</p>

                        `;

                        break;

                    case '4-6':

                        planTitle = 'Pre-schooler Diet Plan (4-6 Years)';

                        dietPlan = `

                            <h2 style="color: var(--primary); margin-bottom: 20px;">${planTitle}</h2>

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Breakfast:</h3>

                                <p>- 1 small whole wheat pancake with 1 tsp peanut butter<br>

                                - 1/2 cup milk<br>

                                - 1/2 apple, sliced</p>

                            </div>

                

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Snack:</h3>

                                <p>- 1/2 cup yogurt with 1 tbsp granola<br>

                                - 1/4 cup carrot sticks</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Lunch:</h3>

                                <p>- 1/2 whole wheat sandwich with turkey and cheese<br>

                                - 1/4 cup cucumber slices<br>

                                - 1/2 cup milk</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Snack:</h3>

                                <p>- 1 small whole grain muffin<br>

                                - 1/2 cup milk</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Dinner:</h3>

                                <p>- 1/2 cup whole wheat pasta with meatballs<br>

                                - 1/4 cup steamed green beans<br>

                                - 1/2 cup milk</p>

                            </div>

                            

                            <p style="font-style: italic; color: #666;">Note: Adjust portions based on your child's appetite. Always consult with your pediatrician about dietary changes.</p>

                        `;

                        break;

                    case '7-9':

                        planTitle = 'School Age Diet Plan (7-9 Years)';

                        dietPlan = `

                            <h2 style="color: var(--primary); margin-bottom: 20px;">${planTitle}</h2>

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Breakfast:</h3>

                                <p>- 1 cup whole grain cereal with milk<br>

                                - 1 boiled egg<br>

                                - 1 small orange</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Snack:</h3>

                                <p>- 1 string cheese<br>

                                - 5-6 whole grain crackers<br>

                                - 1/2 cup grapes</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Lunch:</h3>

                                <p>- 1 whole wheat tortilla with chicken and veggies<br>

                                - 1/2 cup baby carrots with hummus<br>

                                - 1 small apple</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Snack:</h3>

                                <p>- 1/4 cup trail mix (nuts and dried fruit)<br>

                                - 1 cup milk</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Dinner:</h3>

                                <p>- 3 oz grilled salmon<br>

                                - 1/2 cup brown rice<br>

                                - 1/2 cup steamed broccoli<br>

                                - 1 cup milk</p>

                            </div>

                            

                            <p style="font-style: italic; color: #666;">Note: Adjust portions based on your child's appetite and activity level. Always consult with your pediatrician about dietary changes.</p>

                        `;

                        break;

                    case '10-12':

                        planTitle = 'Pre-teen Diet Plan (10-12 Years)';

                        dietPlan = `

                            <h2 style="color: var(--primary); margin-bottom: 20px;">${planTitle}</h2>

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Breakfast:</h3>

                                <p>- 2 slices whole wheat toast with 2 tbsp peanut butter<br>

                                - 1 banana<br>

                                - 1 cup milk</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Snack:</h3>

                                <p>- 1 cup yogurt with 1/4 cup granola<br>

                                - 1 small handful almonds</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Lunch:</h3>

                                <p>- Turkey and cheese sandwich on whole grain bread<br>

                                - 1 cup vegetable soup<br>

                                - 1 orange<br>

                                - 1 cup milk</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Snack:</h3>

                                <p>- 1 whole grain granola bar<br>

                                - 1 cheese stick</p>

                            </div>

                            

                            <div style="background-color: #f5f5f5; padding: 20px; border-radius: 10px; margin-bottom: 20px;">

                                <h3 style="color: var(--accent);">Dinner:</h3>

                                <p>- 4 oz grilled chicken breast<br>

                                - 1 cup quinoa<br>

                                - 1 cup mixed vegetables<br>

                                - 1 cup milk</p>

                            </div>

                            

                            <p style="font-style: italic; color: #666;">Note: Adjust portions based on your child's appetite and activity level. Pre-teens have increased nutritional needs for growth spurts.</p>

                        `;

                        break;

                }

                

                // Set the diet plan content

                dietPlanContent.innerHTML = dietPlan;

                

                // Open the modal

                dietPlanModal.style.display = 'block';

                

                // Also open Direct link Adsterra in a new tab (as requested)

                window.open('techpk', '_blank');

            });

            

            // Close modal when clicking X

            closeModal.addEventListener('click', function() {

                dietPlanModal.style.display = 'none';

            });

            

            // Close modal when clicking outside

            window.addEventListener('click', function(event) {

                if (event.target === dietPlanModal) {

                    dietPlanModal.style.display = 'none';

                }

            });

            

            // Smooth scrolling for navigation links

            document.querySelectorAll('a[href^="#"]').forEach(anchor => {

                anchor.addEventListener('click', function(e) {

                    e.preventDefault();

                    document.querySelector(this.getAttribute('href')).scrollIntoView({

                        behavior: 'smooth'

                    });

                });

            });

        });

    </script>

</body>

</html>

Post a Comment

0 Comments