body {
  font-family: 'Comic Sans MS', cursive; /* Playful font */
    background-color: #f5f5f5; /* Light grey background */
    color: #333333; /* Dark grey text */
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3 {
    color: #ff6f61; /* Orange text */
  }
  
  p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  /* Header Styles */
  .header {
    background-color: #ffcc00; /* Yellow background */
    color: #333333; /* Dark grey text */
    padding: 20px;
    text-align: center;
  }
  
  .banner img {
    max-width: 100%;
    height: auto;
    border-radius: 20px; /* Rounded border */
  }
  
  /* Main Content Styles */
  main {
    padding: 20px;
  }
  
  .section {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 20px;
    background-color: #fff8dc; /* Soft pastel yellow background */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Shadow effect */
  }
  
  .section h2 {
    font-size: 36px; /* Larger font size */
    margin-bottom: 20px;
    text-align: center;
  }
  
  .section p {
    color: #333333; /* Dark grey text */
    font-size: 16px; /* Smaller font size */
  }
  
  /* Sample Games Styles */
  .sample-games {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .game {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    margin: 10px;
    text-align: center;
    width: 200px;
    border: 2px solid #ff6f61; /* Orange border */
    border-radius: 20px; /* Rounded border */
    background-color: #ffcc00; /* Yellow background */
    box-shadow: 0 0 10px rgba(255, 111, 97, 0.5); /* Orange shadow */
    transition: transform 0.3s ease; /* Smooth transition */
  }
  
  .game img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 10px auto;
    display: block;
    animation: bounce 1s infinite alternate; /* Bouncing animation */
  }
  
  @keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }
  
  .game:hover {
    transform: translateY(-5px); /* Move up on hover */
  }
  
  .game h3 {
    font-size: 24px; /* Larger font size */
    margin-bottom: 5px;
    color: #333333; /* Dark grey text */
  }
  
  .game p {
    color: #333333; /* Dark grey text */
  }
  
  /* Footer Styles */
  footer {
    background-color: #ffcc00; /* Yellow background */
    color: #333333; /* Dark grey text */
    padding: 20px;
    text-align: center;
  }
  
  
  
  .banner{
    font-family: 'Comic Sans MS', cursive; /* Playful font */

      margin-top: 20px;
      max-width: 600px; /* Limiting the width of the slider */
      margin-left: auto;
      margin-right: auto;
  
    }
  
    .banner img {
      width: 100%;
      border-radius: 10px;
    }
  
    .banner h1{
      color: #333;
  
    }
  


/* ************************************************************** */

/* Set a cheerful background color */
body {
  font-family: 'Comic Sans MS', cursive; /* Playful font */
  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 {
  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 */
}

#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%;
}

.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 */
}


.get-started-btn {
  background-color: #6cc1d1; /* Light blue button */
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}


.cta-btn {
  background-color: #6cc1d1; /* Light blue button */
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin: 10px;
}


/* 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 */
}

.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;
  }

.get_started-btn {
  background-color: #ff9800; /* Orange button */
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.get_started-btn:hover {
  background-color: #fff;
  color: #ff9800; /* Orange text on hover */
}





.get-started-btn {
  background-color: #007bff; /* Button background color */
  color: #fff; /* Button text color */
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}



.get-started-btn {
  background-color: #75CFEA; /* Sky blue color, adjust as needed */
  color: #ffffff;
  padding: 15px 30px;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 68px 0;
}


/* 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;
}


header {
  background-color: #fff;
  font-family: 'Comic Sans MS', cursive; /* Playful font */

  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 60px;
  margin-right: 10px;
}

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

.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::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ff5722; /* Dark orange text color on hover */
}

.navbar-nav .nav-link:hover::before {
  background-color: #ff5722; /* Dark orange underline on hover */
}

.dropdown-menu {
  background-color: #ffcc00; /* Bright yellow background */
  border-radius: 15px; /* Rounded corners */
}

.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 */
}

.dropdown-menu .dropdown-item:hover {
  color: #ff5722; /* Dark orange text color on hover */
}

/* 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 */
.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 */
}

@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: 150px; /* Add padding to push down the content */
  font-family: 'Comic Sans MS', cursive; /* Playful font */

}





