body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #e0f7fa; /* Light blue background */
}


/* Header Styles */
header {
    background-color: #90caf9; /* Light blue header */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Set a high z-index to keep it above other elements */
  }

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

.logo h1 {
    font-size: 24px;
    color: #333;
}

.main-nav ul {
    list-style-type: none;
    display: flex;
}

.main-nav li {
    margin-right: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ce93d8;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.cta-buttons button {
    margin-left: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signup-btn {
    background-color: #64b5f6; /* Blue button */
    color: #fff;
}

.login-btn {
    background-color: #ffcc80; /* Orange button */
    color: #333;
}


/* Sign Up Content Styles */
.signup-content {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.signup-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}





       
/* Category Title */
.category-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #4CAF50; /* Green */
}

/* Activity Section */
.activity-section {
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    background-color: #FFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Individual Activity Cards */
.activity-card {
    display: flex;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Activity Image */
.activity-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Activity Details */
.activity-details {
    padding: 15px;
    background-color: #FFF;
}

/* Activity Name */
.activity-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Activity Description */
.activity-description {
    margin-top: 8px;
    color: #666;
}

/* Activity Objective */
.activity-objective {
    margin-top: 8px;
    color: #4CAF50; /* Green */
}

/* Activity Card Hover Effect */
.activity-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Category Title Color */
.category-title {
    color: #FF69B4; /* Pink */
}

/* Activity List Margin */
.activity-list {
    margin-left: 20px;
}

/* Details Margin */
.details {
    margin-bottom: 20px;
}

/* Summary Style */
summary {
    cursor: pointer;
    padding: 15px;
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    border-radius: 12px;
}

/* Open Details Summary Background Color */
details[open] summary {
    background-color: #FFD700; /* Gold */
}

/* Activity Button Style */
.activity-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #4CAF50; /* Green button color */
    color: #fff; /* White text color */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Activity Button Hover Effect */
.activity-button:hover {
    background-color: #45a049; /* Darker green color on hover */
}


/* ********************************************************** */
 /* AI-Guided Eye Exercises */
 .eye-exercises {
    background-color: #a5d6a7; /* Green */
}

/* Physical Activities */
.physical-activities {
    background-color: #81d4fa; /* Blue */
}

/* Challenges */
.challenges {
    background-color: #ffb74d; /* Orange */
}

/* Educational Board Games */
.board-games {
    background-color: #ffcc80; /* Yellow */
}

/* Eye Exercises Section */
.eye-exercises .activity-card {
    margin-bottom: 20px;
}

/* Style for AI-Guided Eye Exercises */
.eye-exercise-card {
    background-color: #c5e1a5; /* Light Green */
    color: #33691e; /* Dark Green */
}

/* Style for Physical Activities */
.physical-activity-card {
    background-color: #b3e0ff; /* Light Blue */
    color: #01579b; /* Dark Blue */
}

/* Style for Challenges */
.challenge-card {
    background-color: #ffcc80; /* Light Orange */
    color: #e65100; /* Dark Orange */
}

/* Style for Educational Board Games */
.board-game-card {
    background-color: #ffe57f; /* Light Yellow */
    color: #b71c1c; /* Dark Yellow */
}

.eye-focus-exercise {
    background-color: #c8e6c9; /* Light Green */
}

.blink-rate-challenge {
    background-color: #aed581; /* Lime Green */
}

.eye-relaxation-technique {
    background-color: #8bc34a; /* Green */
}

.visual-tracking-exercises {
    background-color: #689f38; /* Dark Green */
}

.visual-puzzles {
    background-color: #4caf50; /* Teal */
}

.twenty-twenty-twenty-rule {
    background-color: #009688; /* Teal */
}

.eye-roll-exercises {
    background-color: #00796b; /* Dark Teal */
}

.focus-shifting {
    background-color: #004d40; /* Dark Teal */
}

.near-far-focus {
    background-color: #009688; /* Teal */
}

.palming {
    background-color: #4caf50; /* Teal */
}



.indoor-obstacle-course {
    background-color: #64B5F6; /* Light Blue */
}

.yoga-session {
    background-color: #42A5F5; /* Medium Blue */
}

.stretching-routine {
    background-color: #1E88E5; /* Dark Blue */
}

.dance-party-challenge {
    background-color: #1976D2; /* Deep Blue */
}

.short-aerobic-exercises {
    background-color: #1565C0; /* Strong Blue */
}

.jumping-jacks {
    background-color: #0D47A1; /* Darker Blue */
}

.simple-cardio-exercises {
    background-color: #0A4CA9; /* Navy Blue */
}

.balancing-exercises {
    background-color: #002171; /* Dark Navy Blue */
}

.balloon-volleyball {
    background-color: #001064; /* Very Dark Navy Blue */
}



.stem-building-challenge {
    background-color: #ffd54f; /* Amber */
}

.artistic-expression-challenge {
    background-color: #ffca28; /* Orange */
}

.environmental-challenge {
    background-color: #ffb300; /* Amber */
}

.community-service-mission {
    background-color: #ffa000; /* Orange */
}

.community-cleanup-challenge {
    background-color: #ff8f00; /* Dark Orange */
}


/* Style for Educational Board Games Section */
.activity-section.board-games {
background-color: #f5f5f5;
padding: 20px;
border-radius: 15px;
margin-bottom: 20px;
}


/* Add specific styles for each game */
.activity-card.math-bingo {
    background-color: #ffcc80; /* Light orange background for Math Bingo */
}

.activity-card.word-scavenger-hunt {
    background-color: #b2dfdb; /* Light blue-green background for Word Scavenger Hunt */
}

.activity-card.word-scramble {
    background-color: #ffcdd2; /* Light pink background for Word Scramble */
}

.activity-card.geography-challenge {
    background-color: #c5e1a5; /* Light green background for Geography Challenge */
}


        


.community-engagement {
    background-color: #4caf50; /* Green */
}

.community-cleanup-challenge {
    background-color: #8bc34a; /* Light Green */
}

.kindness-project {
    background-color: #cddc39; /* Lime */
}

.virtual-pen-pal-program {
    background-color: #ffeb3b; /* Yellow */
}        



.mindfulness-and-relaxation {
    background-color: #03a9f4; /* Light Blue */
}

.guided-meditation {
    background-color: #2196f3; /* Blue */
}

.deep-breathing-exercise {
    background-color: #03a9f4; /* Light Blue */
}

.gratitude-journaling {
    background-color: #64b5f6; /* Sky Blue */
}

.nature-exploration-journal {
    background-color: #90caf9; /* Light Blue */
}

.stress-ball-squeeze {
    background-color: #bbdefb; /* Pale Blue */
}

.visualization {
    background-color: #e3f2fd; /* Light Blue */
}

.nature-walks {
    background-color: #bbdefb; /* Pale Blue */
}




/* DIY Science Experiments Styles */

.diy-science-experiments {
    background-color: #FAD02E; /* Mellow Yellow */
}

.volcano-eruption {
    background-color: #FFB74D; /* Peach */
}

.balloon-rocket {
    background-color: #81C784; /* Pastel Green */
}

.rainbow-in-a-jar {
    background-color: #90CAF9; /* Sky Blue */
}

/* DIY Technology Projects Styles */
.diy-technology-projects {
    background-color: #8BC34A; /* Light Green */
}

.build-your-own-gadget {
    background-color: #CDDC39; /* Lime */
}

.coding-challenges {
    background-color: #8BC34A; /* Light Green */
}


/* Reading and Learning Challenges Styles */
.reading-and-learning-challenges {
background-color: #FFC107; /* Amber */
}

.book-review-challenge {
background-color: #FFD54F; /* Yellow */
}

.research-project {
background-color: #FFC107; /* Amber */
}

.book-club-for-kids {
background-color: #FFD54F; /* Yellow */
}

.storytelling-sessions {
background-color: #FFC107; /* Amber */
}

.letter-writing-campaigns {
background-color: #FFD54F; /* Yellow */
}

.read-aloud-sessions {
background-color: #FFC107; /* Amber */
}

.vocabulary-building-games {
background-color: #FFD54F; /* Yellow */
}

/* Offline Coding Projects Styles */
.offline-coding-projects {
background-color: #FF8A65; /* Deep Orange Lighten-2 */
}

.coding-puzzles {
background-color: #FFB74D; /* Deep Orange Lighten-1 */
}

.create-a-story-game {
background-color: #FF8A65; /* Deep Orange Lighten-2 */
}

.algorithmic-art {
background-color: #FFB74D; /* Deep Orange Lighten-1 */
}


/* Social Interaction Activities Styles */
.social-interaction-activities {
background-color: #81C784; /* Light Green */
}

.family-game-night {
background-color: #66BB6A; /* Green Lighten-2 */
}

.virtual-pen-pals {
background-color: #81C784; /* Light Green */
}


/* Healthy Habits Challenges Styles */
.healthy-habits-challenges {
background-color: #FFCCBC; /* Deep Orange Lighten-4 */
}

/* Nutrition Challenge Styles */
.nutrition-challenge {
background-color: #FFAB91; /* Deep Orange Lighten-3 */
}

/* Fitness Journaling Styles */
.fitness-journaling {
background-color: #FFCCBC; /* Deep Orange Lighten-4 */
}


/* Environmental Awareness Styles */
.environmental-awareness {
background-color: #BBDEFB; /* Blue Lighten-4 */
}

/* Upcycling Project Styles */
.upcycling-project {
background-color: #90CAF9; /* Blue Lighten-3 */
}

/* Nature Scavenger Hunt Styles */
.nature-scavenger-hunt {
background-color: #BBDEFB; /* Blue Lighten-4 */
}

/* Language and Communication Skills Styles */
.language-communication-skills {
background-color: #FFE0B2; /* Orange Lighten-3 */
}

/* Storytelling Challenge Styles */
.storytelling-challenge {
background-color: #FFCC80; /* Orange Lighten-2 */
}

/* Debate or Discussion Session Styles */
.debate-discussion-session {
background-color: #FFB74D; /* Orange Lighten-1 */
}

/* Family Offline Challenges Styles */
.family-offline-challenges {
background-color: #FFCC80; /* Orange Lighten-2 */
}

/* DIY Science Experiments Styles */
.diy-science-experiments {
background-color: #FFB74D; /* Orange Lighten-1 */
}

/* Cooking Challenge Styles */
.cooking-challenge {
background-color: #FFA726; /* Orange */
}


/* Problem-Solving and Critical Thinking Styles */
.problem-solving-section {
background-color: #FFE082; /* Yellow Lighten-2 */
}

/* Puzzle Challenges Styles */
.puzzle-challenges {
background-color: #FFD54F; /* Yellow Lighten-1 */
}

/* Escape Room at Home Styles */
.escape-room-at-home {
background-color: #FFC107; /* Amber */
}

/* Math and Logic Games Styles */
.math-and-logic-games {
background-color: #FFB300; /* Amber Darken-1 */
}

/* Escape Room Challenges Styles */
.escape-room-challenges {
background-color: #FFA000; /* Amber Darken-2 */
}   

/* Music and Movement Styles */
.music-movement-section {
background-color: #E1BEE7; /* Purple Lighten-4 */
}

/* Dance Party Styles */
.dance-party {
background-color: #CE93D8; /* Purple Lighten-3 */
}

/* Instrument Making Styles */
.instrument-making {
background-color: #BA68C8; /* Purple Lighten-2 */
}



/* Singing Games Styles */
.singing-games {
background-color: #AB47BC; /* Purple Darken-1 */
}

/* STEM Exploration Styles */
.stem-exploration-section {
background-color: #81D4FA; /* Blue Lighten-2 */
}

/* Simple Science Experiments Styles */
.simple-science-experiments {
background-color: #64B5F6; /* Blue Lighten-3 */
}

/* Coding Challenges Styles */
.coding-challenges {
background-color: #42A5F5; /* Blue Lighten-4 */
}


/* Healthy Cooking Classes Styles */
.healthy-cooking-classes-section {
background-color: #C5E1A5; /* Green Lighten-3 */
}

/* Smoothie Making Styles */
.smoothie-making {
background-color: #AED581; /* Green Lighten-2 */
}

/* Build Your Sandwich Styles */
.build-your-sandwich {
background-color: #9CCC65; /* Green Lighten-1 */
}

/* DIY Fruit Kabobs Styles */
.diy-fruit-kabobs {
background-color: #8BC34A; /* Green */
}

/* Community Service Projects Styles */
.community-service-section {
background-color: #F48FB1; /* Pink Lighten-2 */
}

/* Cards for Seniors Styles */
.cards-for-seniors {
background-color: #EC407A; /* Pink lighten-1 */
}

/* Seed Planting for the Environment Styles */
.seed-planting {
background-color: #E91E63; /* Pink */
}

/* Food Drive Support Styles */
.food-drive-support {
background-color: #D81B60; /* Pink Darken-1 */
}


/* Offline Learning Modules Styles */
.learning-modules-section {
background-color: #B2EBF2; /* Cyan Lighten-4 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Science Experiments at Home Styles */
.science-experiments {
background-color: #4DD0E1; /* Cyan Lighten-2 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Art and Craft Workshops Styles */
.art-craft-workshops {
background-color: #00BCD4; /* Cyan Lighten-3 */
padding: 15px;
border-radius: 8px;
}



/* Problem-Solving Workshops Styles */
.problem-solving-section {
background-color: #FFE082; /* Amber lighten-3 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Logic Puzzles Styles */
.logic-puzzles {
background-color: #FFD54F; /* Amber lighten-2 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Math Challenges Styles */
.math-challenges {
background-color: #FFC107; /* Amber */
padding: 15px;
border-radius: 8px;
}


/* Cultural Exploration Activities Styles */
.cultural-exploration-section {
background-color: #B2DFDB; /* Teal lighten-4 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Language Learning Challenges Styles */
.language-learning {
background-color: #80CBC4; /* Teal lighten-3 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Explore Traditions Styles */
.explore-traditions {
background-color: #4DB6AC; /* Teal lighten-2 */
padding: 15px;
border-radius: 8px;
}

/* Environmental Stewardship Projects Styles */
.environmental-stewardship-section {
background-color: #FFCC80; /* Amber lighten-3 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Planting and Gardening Styles */
.planting-gardening {
background-color: #FFB74D; /* Amber lighten-2 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Waste Reduction Challenges Styles */
.waste-reduction {
background-color: #FFA726; /* Orange lighten-2 */
padding: 15px;
border-radius: 8px;
}


/* Art and Creativity Challenges Styles */
.art-creativity-section {
background-color: #B39DDB; /* Deep Purple lighten-3 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* DIY Art Projects Styles */
.diy-art-projects {
background-color: #9575CD; /* Deep Purple lighten-1 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Photo Scavenger Hunt Styles */
.photo-scavenger-hunt {
background-color: #7E57C2; /* Deep Purple lighten-2 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Virtual Art Gallery Styles */
.virtual-art-gallery {
background-color: #673AB7; /* Deep Purple */
padding: 15px;
border-radius: 8px;
}


/* Educational Exploration Styles */
.educational-exploration-section {
background-color: #81C784; /* Light Green */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Book Reading Challenge Styles */
.book-reading-challenge {
background-color: #4CAF50; /* Green */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Nature Exploration Walk Styles */
.nature-exploration-walk {
background-color: #43A047; /* Dark Green */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Science Journaling Styles */
.science-journaling {
background-color: #388E3C; /* Green darken-2 */
padding: 15px;
border-radius: 8px;
}

/* Educational Exploration Styles */
.educational-exploration-section {
background-color: #81C784; /* Light Green */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Book Reading Challenge Styles */
.book-reading-challenge {
background-color: #4CAF50; /* Green */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Nature Exploration Walk Styles */
.nature-exploration-walk {
background-color: #43A047; /* Dark Green */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Science Journaling Styles */
.science-journaling {
background-color: #388E3C; /* Green darken-2 */
padding: 15px;
border-radius: 8px;
}

/* Creative Arts and Crafts Styles */
.creative-arts-and-crafts-section {
background-color: #FFD54F; /* Amber lighten-2 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Drawing and Coloring Styles */
.drawing-and-coloring {
background-color: #FFB300; /* Amber darken-2 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* DIY Craft Projects Styles */
.diy-craft-projects {
background-color: #FFA000; /* Amber darken-3 */
padding: 15px;
border-radius: 8px;
}

/* Science Experiments at Home Styles */
.science-experiments-section {
background-color: #64B5F6; /* Blue lighten-2 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Kitchen Chemistry Styles */
.kitchen-chemistry {
background-color: #2196F3; /* Blue */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Nature Observations Styles */
.nature-observations {
background-color: #1565C0; /* Blue darken-3 */
padding: 15px;
border-radius: 8px;
}

/* Reading Challenges Styles */
.reading-challenges-section {
background-color: #FFB74D; /* Orange lighten-2 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Book Exploration Styles */
.book-exploration {
background-color: #FFA726; /* Orange lighten-1 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Reading Bingo Styles */
.reading-bingo {
background-color: #FF9800; /* Orange */
padding: 15px;
border-radius: 8px;
}


/* Artistic Expression Activities Styles */
.artistic-expression-section {
background-color: #81C784; /* Light Green */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Draw Your Emotions Styles */
.draw-your-emotions {
background-color: #66BB6A; /* Green lighten-1 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Nature Art Styles */
.nature-art {
background-color: #4CAF50; /* Green */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Collage Making Styles */
.collage-making {
background-color: #43A047; /* Green darken-1 */
padding: 15px;
border-radius: 8px;
}


/* STEM-Based DIY Projects Styles */
.stem-diy-section {
background-color: #81C784; /* Light Green */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Paper Plane Engineering Styles */
.paper-plane-engineering {
background-color: #66BB6A; /* Green lighten-1 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Simple Circuit Projects Styles */
.simple-circuit-projects {
background-color: #4CAF50; /* Green */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Seed Germination Experiment Styles */
.seed-germination-experiment {
background-color: #43A047; /* Green darken-1 */
padding: 15px;
border-radius: 8px;
}


/* STEM-Based DIY Projects Styles */
.stem-diy-section {
background-color: #80CBC4; /* Teal lighten-3 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Paper Plane Engineering Styles */
.paper-plane-engineering {
background-color: #4DB6AC; /* Teal lighten-2 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Simple Circuit Projects Styles */
.simple-circuit-projects {
background-color: #009688; /* Teal */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
color: #FFF; /* White text for better readability */
}

/* Seed Germination Experiment Styles */
.seed-germination-experiment {
background-color: #00796B; /* Teal darken-4 */
padding: 15px;
border-radius: 8px;
color: #FFF; /* White text for better readability */
}


/* Outdoor Nature Exploration Styles */
.nature-exploration-section {
background-color: #C8E6C9; /* Green lighten-3 */
padding: 20px;
margin: 20px 0;
border-radius: 10px;
}

/* Nature Scavenger Hunt Styles */
.nature-scavenger-hunt {
background-color: #A5D6A7; /* Green lighten-2 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Bird Watching Styles */
.bird-watching {
background-color: #81C784; /* Green lighten-1 */
margin-bottom: 15px;
padding: 15px;
border-radius: 8px;
}

/* Outdoor Sketching Styles */
.outdoor-sketching {
background-color: #66BB6A; /* Green */
padding: 15px;
border-radius: 8px;
color: #FFF; /* White text for better readability */
}



/* ------------------------------------------------ */
/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Set a cheerful background color */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #f6f1f1; /* Light gray background */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-top: 80px; /* Adjust as needed based on the header height */

}

/* Header styles */
header {
    background-color: #c7ecee; /* Light peach background */
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Set a high z-index to keep it above other elements */
}

#sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

h1 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0;
}

.main-nav ul {
    list-style-type: none;
    display: flex;
}

.main-nav li {
    margin-right: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 18px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.main-nav a:hover {
    border-bottom: 2px solid #2c3e50;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    cursor: pointer; /* Add cursor pointer for better indication */
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffd699; /* Light peach background */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Slightly larger shadow */
    z-index: 1;
    min-width: 150px; /* Adjust width as needed */
    padding: 10px; /* Add padding for better spacing */
    border-radius: 8px; /* Add border-radius for a softer look */
}

/* Style for each dropdown item */
.dropdown-content a {
    color: #333; /* Adjust text color */
    text-decoration: none;
    display: block;
    padding: 8px 0; /* Adjust item padding */
    transition: background-color 0.3s ease; /* Smooth background transition */
}

/* Hover effect for each dropdown item */
.dropdown-content a:hover {
    background-color: #ffc266; /* Lighter peach background on hover */
}

/* Show Dropdown Content on Hover */
.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
    /* Add smooth transition for a graceful appearance */
    transition: display 0.3s ease-in-out;
}


.cta-buttons {
    display: flex;
    align-items: center;
}

.signup-btn,
.login-btn,
.get-started-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #44bd32; /* Green accent color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.signup-btn:hover,
.login-btn:hover,
.get-started-btn:hover {
    background-color: #26ae60; /* Darker green on hover */
}


.logo {
    max-width: 150px; /* Adjust the maximum width as needed */
}

/* Responsive styles */
@media (max-width: 768px) {
    .main-nav ul {
        text-align: center;
        margin-top: 20px; /* Increased margin for better spacing */
    }
}


    .main-nav li {
        display: block;
        margin-bottom: 10px;
    }
/* ----------------------------------------------- */

.footer-section {
    background-color: #333;
    color: #fff;
    padding: 40px 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-branding {
    flex: 1;
    text-align: left;
}

.footer-branding img {
    width: 80px;
    margin-bottom: 10px;
    margin-left: 100px;
    border-radius: 50% ;
}
.footer-branding p {
    color:rgb(245, 245, 245);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex: 2;
    max-width: 800px;
    margin-top: 40px;
}

.footer-category {
    text-align: left;
    margin-bottom: 20px;
    padding: 0 30px;
    margin-right: 10px;
    flex: 1;
}

.footer-category h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: rgb(146, 153, 200);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

/* Remove box styles */
.footer-links a,
.footer-category {
    background-color: transparent;
    border: none;
    padding: 0;
}

.social-media-links {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto; /* Set margin-top to auto to push it to the bottom */
    margin-right: 60px;
}

.social-media-links a {
    margin-right: 20px; /* Add margin between social media icons */
    text-decoration: none; /* Remove underlines from links */
}

.social-media-links img {
    width: 30px;
}

/* Remove box styles */
.social-media-links a {
    background-color: transparent;
    border: none;
    padding: 0;
}

.main-nav {
    font-family: 'Comic Sans MS', cursive, sans-serif;

}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav li {
    margin-right: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.cta-buttons {
    display: flex;
    align-items: center;
    
}

.cta-buttons button {
    margin-left: 15px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

.signup-btn {
    background-color: #27ae60;
    color: #fff;
}

.login-btn {
    background-color: #3498db;
    color: #fff;
    margin-right: 35px;
}

.dropbtn {
    background-color: #3498db;
    color: #fff;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.dropdown-content a {
    color: #333;
    padding: 12px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}


.cta-buttons button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    z-index: 1100; /* Set a higher z-index for the login button */
}

/* ------------------- */

/* Main Navigation */
.main-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav li {
    margin-right: 20px;
    position: relative;
}

.main-nav a {
    font-family: 'Comic Sans MS', cursive; /* Use a playful font */
    color: #333; /* Dark gray color */
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db; /* Blue color on hover */
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content .submenu {
    position: relative;
}

.dropdown-content .submenu:hover .submenu-content {
    display: block;
}

.submenu-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1;
}

.submenu-content a {
    display: block;
    color: #333;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.submenu-content a:hover {
    background-color: #f2f2f2;
}

/* Dropdown Content for User Name */
.dropdown-content .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.dropdown-content:hover .dropdown-content {
    display: block;
}




  /* Navbar */
  .navbar {
    background-color: #ffcc00; /* Bright yellow background */
    border-radius: 15px; /* Rounded corners */
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
  }
  
  .navbar-nav .nav-item {
    margin-bottom: 15px; /* Add space between menu items */
  }
  
  .navbar-nav .nav-link {
    color: #333; /* Dark text color */
    font-weight: bold;
    padding: 10px 20px; /* Add padding to each menu item */
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    transition: color 0.3s ease; /* Smooth color transition */
    position: relative;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ff5722; /* Dark orange text color on hover */
  }
  
  /* Submenu */
  .dropdown-menu {
    background-color: #fff; /* White background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
    animation: slideDown 0.5s ease forwards; /* Slide down animation */
  }
  
  .dropdown-menu .dropdown-item {
    color: #333; /* Dark text color */
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    transition: color 0.3s ease; /* Smooth color transition */
    padding: 10px 20px; /* Add padding to submenu items */
  }
  
  .dropdown-menu .dropdown-item:hover {
    color: #ff5722; /* Dark orange text color on hover */
  }
  
  /* Slide down animation */
  @keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* Buttons */
  .btn {
    background-color: #ff5722; /* Dark orange background */
    color: #fff; /* White text color */
    border-radius: 25px; /* Rounded corners */
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    transition: background-color 0.3s ease; /* Smooth background color transition */
  }
  
  .btn:hover {
    background-color: #ff7744; /* Lighter orange background on hover */
    transform: scale(1.05); /* Scale up on hover */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow on hover */
  }
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    max-width: 50px;
    margin-right: 10px;
    border-radius: 50%;
  }
  /* Logo */
  .logo img {
    width: 60px; /* Adjust size as needed */
    height: auto;
    margin-right: 10px;
    border-radius: 50%; /* Rounded logo */
    animation: bounce 1.5s infinite alternate; /* Bouncing animation */
  }
  
  .logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333; /* Dark text color */
    margin-top: 10px;
    font-family: 'Comic Sans MS', cursive; /* Playful font */
  }
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 60px;
    margin-right: 10px;
  }
  @font-face {
    font-family: 'Baloo Tamma 2';
    src: url('../font/922ffc787e2b0edbe26658721544cdea.woff2') format('woff2'), /* Modern Browsers */
         url('../font/922ffc787e2b0edbe26658721544cdea.woff') format('woff'); /* Older Browsers */
  }
  .logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333; /* Dark text color */
    margin-top: 10px;
    font-family:  'Baloo Tamma 2', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
    letter-spacing: 2px; /* Adjust letter spacing for readability */
  }
  
  /* Bounce animation */
  @keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
  }
  
  /* Fade-in animation */
  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 16px; /* Increase font size on smaller screens */
    }
  
    .logo h1 {
        font-size: 22px; /* Decrease font size on smaller screens */
    }
  }
  
  
  /* Adjust the margin or padding of the next section to push it down */
  .header {
    padding-top: 200px; /* Add padding to push down the content */
    text-align: center;
    font-family: 'Comic Sans MS', cursive; /* Playful font */
  
  }
  
  /* Footer section styles */
  .footer-section {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    background-color: #ffcc99; /* Light orange background for a playful feel */
    color: #333; /* Dark text color */
    padding: 40px 20px 20px; /* Adjusted padding for better spacing */
    text-align: center;
    width: 100%;
    border-radius: 20px; /* Add rounded corners for a softer look */
  }
  
  .footer-links a,
  .social-media-links a {
    text-decoration: none;
    color: #3498db; /* Blue text color for a playful touch */
    margin: 0 10px; /* Improved spacing between links */
    transition: color 0.3s ease;
    font-weight: bold; /* Add bold font weight for emphasis */
  }
  
  .footer-links a:hover,
  .social-media-links a:hover {
    color: #e74c3c; /* Red accent color on hover */
  }
  
  .footer-links img,
  .social-media-links img {
    max-width: 40px; /* Smaller max-width for logos */
    height: auto; /* Maintain aspect ratio */
    margin: 10px 0; /* Add margin for spacing between logos */
    border-radius: 50%; /* Round logos for a playful look */
  }
  
  
  .footer-section {
  background-color: #333;
  color: #fff;
  padding: 40px 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: center;
  }
  
  .footer-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  }
  
  .footer-branding {
  flex: 1;
  text-align: left;
  }
  
  .footer-branding img {
  width: 80px;
  margin-bottom: 10px;
  margin-left: 100px;
  border-radius: 50% ;
  }
  .footer-branding p {
  color:rgb(245, 245, 245);
  text-align: center;
  }
  
  .footer-links {
  display: flex;
  justify-content: space-between;
  flex: 2;
  max-width: 800px;
  margin-top: 40px;
  
  }
  
  .footer-category {
  text-align: left;
  margin-bottom: 20px;
  padding: 0 30px;
  margin-right: 20px;
  flex: 1;
  }
  
  .footer-category h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: rgb(146, 153, 200);
  }
  
  .footer-links a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  
  }
  
  .footer-links a:hover {
  color: #3498db;
  }
  
  /* Remove box styles */
  .footer-links a,
  .footer-category {
  background-color: transparent;
  border: none;
  padding: 0;
  }
  
  .social-media-links {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto; /* Set margin-top to auto to push it to the bottom */
  margin-right: 60px;
  }
  
  .social-media-links a {
  margin-right: 20px; /* Add margin between social media icons */
  text-decoration: none; /* Remove underlines from links */
  }
  
  .social-media-links img {
  width: 30px;
  }
  
  /* Remove box styles */
  .social-media-links a {
  background-color: transparent;
  border: none;
  padding: 0;
  }
  h2{
    font-family: 'Comic Sans MS', cursive; /* Playful font */
  }
  p{
    font-family: 'Comic Sans MS', cursive; /* Playful font */
  }


    
  .eye-exercises{
    margin-top: 200px;
  }

