 /*navbar*/
       /* General Styling */
              body {
                  margin: 0;
                  font-family: Arial, sans-serif;
                  background-color: #fff;
                  color: #333;

              }

      h2 {
            color: #2c3e50;
            font-size: 2rem;
            text-align : center;
            padding:22px
        }

        p {
            color: #555;
            font-size: 1rem;
        }

              body {
      margin: 0;
      font-family: Arial, sans-serif;
         overflow-x: hidden;
    }
    html, body {
      overflow-x: hidden; /* Prevent horizontal scrolling */
      width: 100%;
    }
    .top-header {

      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #57CBBF; /* Background color for top navbar */
      color: white;
      padding: 10px 20px;
      height: 60px; /* Fixed height for top navbar */
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      width: 70px; /* Adjust logo size */
      height: auto;
      margin-right: 10px;
    }

    .logo h1 {
      font-size: 1.5rem; /* Font size for website name */
      margin: 0;
    }

    .bottom-navbar {
     display: flex;
     overflow-x: hidden;
      justify-content: center;
      background-color: #F8EDB9; /* Background color for bottom navbar */
      color: white;
      position: sticky; /* Make it sticky */
      top: 0; /* Stick to the top of the viewport */
      left: 0;
      right: 0;
      padding: 10px 0; /* Vertical padding */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow effect */
      z-index: 1000; /* Ensure it stays on top of other content */
    }

    .bottom-navbar a {
      color: black;
      text-decoration: none;
      padding: 10px 15px; /* Padding for links */
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .bottom-navbar a:hover {
      background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
    }

    @media (max-width: 600px) {
      .logo h1 {
        font-size: 1.2rem; /* Adjust font size for small screens */
      }

      .bottom-navbar a {
        padding: 8px 6px; /* Adjust padding for small screens */
      }
    }
    /*navbar*/

    /*footer*/
     .footer {
           background-color: #57CBBF; /* Dark blue background */
           color: black; /* White text color */
           padding: 15px; /* Reduced padding for compactness */
           display: flex; /* Flexbox for layout */
           flex-direction: column; /* Stack items vertically */
           align-items: center; /* Center align items */
           text-align: center; /* Center text alignment */
           border-top: 3px solid #F8EDB9; /* Top border for style */
         }

         .footer-content {
           margin-bottom: 10px; /* Space between content and links */
         }

         .footer h3 {
           font-size: 1.4rem; /* Heading font size */
           margin-bottom: 5px; /* Space below heading */
         }

         .footer p {
           margin: 3px 0; /* Spacing for paragraph elements */
         }

         .footer a {
           color: #F8EDB9; /* yellow for links */
           text-decoration: none; /* Remove underline */
           margin: 0 5px; /* Margin between links */
           font-size: 0.9rem; /* Font size for links */
         }

         .footer-links {
           margin: 10px 0; /* Space above and below the links */
         }

         .footer-links a {
           margin: 0 3px; /* Space between footer links */
           text-decoration: underline;
         }

         .social-icons {
           display: flex; /* Flexbox for social icons */
           justify-content: center; /* Center align icons */
           gap: 10px; /* Space between icons */
         }

         .social-icons img {
           width: 40px; /* Increased size for icons */
           height: auto; /* Maintain aspect ratio */
           transition: transform 0.3s; /* Smooth transition for hover */
         }

         .social-icons img:hover {
           transform: scale(1.1); /* Slightly enlarge on hover */
         }

         @media (max-width: 400px) {
           .footer {
             padding: 10px; /* Adjust padding for smaller screens */
           }

           .footer h3 {
             font-size: 1.3rem; /* Smaller font size for heading */
           }

           .footer-links a {
             font-size: 0.8rem; /* Smaller font size for links */
           }

           .social-icons img {
             width: 35px; /* Slightly smaller size for icons on small screens */
           }
         }