@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Noto+Sans+Tamil:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
    padding: 0;
    margin: 0;
    font-family: "Merriweather";
    background-color: #F2F2F2;
    overflow-x: hidden;
}
/* Navigation */
/* NAVBAR CONTAINER */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 10px 20px;
    /* border-bottom: 1px solid #ddd; */
    position: relative;
    z-index: 100;
  }

  /* LOGO */
  .navbar .logo img {
    height: 50px;
  }

  /* MENU ITEMS */
  .menu {
    display: flex;
    gap: 20px;
  }

  .menu a {
    text-decoration: none;
    color: white;
    font-size: 17px;
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
  }

  .menu a:hover {
    background-color: #EAE4D5;
    color: black;
  }

  /* HAMBURGER ICON */
  .hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
  }

  /* RESPONSIVE STYLE */
  @media screen and (max-width: 768px) {
    .menu {
      flex-direction: column;
      width: 100%;
      background-color: #F2F2F2;
      position: absolute;
      top: 100%;
      left: 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease;
    }

    .menu.show {
      max-height: 500px; /* Enough to show all items */
    }

    .hamburger {
      display: block;
    }
    .menu a{
      color: black;
    }
    .menu a:hover{
      background-color: #EAE4D5;
      color: black;
    }
  }
/* Footer */
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color: #000000;
    color: white;
    padding: 20px;
}
.footer-left, .footer-middle, .footer-right {
    margin: 10px;
    flex: 1 1 300px;
}
.footer-left > p{
  text-align: left;
}