/* nav{
    display: flex;
    gap: 30px;
    
} */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* .images{
margin :10px;
display: flex;
height: 80px;
}
.pages{
    margin-top: 50px;
    display: flex;
    float: right;
    margin-right: 200px;
  
   
}

.pages a{
    display: flex;
    float: left;
    margin-right: 100px;
}
button{
    
} */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background: #000;
  }
  
  .images {
    display: flex;
    align-items: center;
    margin-left: 80px;
  }
  
  .pages {
    display: flex;
    align-items: center;
    gap: 20px;
    
   
  }
  
  .pages1 {
    text-decoration: none;
    color: #ffffff;
    margin-right: 60px;
  }
  
  .pages-button1 {
    border-radius: 30px;
    margin-right: 20px;
  
    border:1px solid #ffff;
    width: 160px;
    cursor: pointer;
    
    padding: 17px 0px;
    background-color: #000000;
  }
  .pages-button2 {
    /* border-radius: 30px;
    margin-right: 20px;
    padding:20px  0px;
    /* background-color: #000000; */
  /*  cursor: pointer;
    
    border:1px solid #ffff;
   width: 170px; */
   border: none;
   padding: 18px;
   border-radius: 40px; 
   width: 150px;
   /* border: 1px solid #ffffff; */
   /* background-color: #0f0f0f; */
  }

  
  .pages button a {
    /* text-decoration: none; */
    color: #fff;
    align-items: center;
    text-align: center;
    justify-content: center;
    /* flex-direction: column-reverse; */
    /* width: 70px; */
  }
  /* .icon{
    width: 40px;
    height: 40px;
    border-radius: 40px;
    color: #fff;
    
  } */
  
  /* Responsive design */
  @media (max-width: 620px) {
    nav {
      flex-direction: column;
      align-items: center;
    }
    .images {
      margin-bottom: 20px;
    }
    .pages {
      flex-direction: column;
      align-items: center;
    }
    .pages button {
      margin-bottom: 10px;
    }
  }
  
  /* Extra small screens */
  @media (max-width: 480px) {
    .pages {
      gap: 10px;
    }
    .pages button {
      padding: 5px 10px;
    }
  }

  /* Hamburger icon styling */
.hamburger-icon {
  cursor: pointer;
  font-size: 24px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 2;
}

#menu-toggle {
  display: none;
}

/* Menu Styling */
.menu {
  position: fixed;
  top: 0;
  left: -250px; /* Hide the menu off-screen initially */
  width: 250px;
  height: 100vh;
  background-color: #333;
  padding-top: 60px;
  transition: left 0.3s ease;
}

.menu ul {
  list-style: none;
}

.menu ul li {
  margin: 20px 0;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px 20px;
}

.menu ul li a:hover {
  background-color: #575757;
}

/* Show menu when checkbox is checked */
#menu-toggle:checked ~ .menu {
  left: 0; /* Slide the menu into view */
}

/* Optional styling for smaller screens */
@media (max-width: 720px) {
  .menu {
    width: 200px;
  }

  .hamburger-icon {
    font-size: 20px;
    top: 15px;
    left: 15px;
  }
}

@media (max-width: 620px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  /* .main-image{
    display:block;
  } */
  .images {
    margin-bottom: 20px;
  }
  .pages {display: none;
    flex-direction: column;
    align-items: center;
  }
  .pages button {
    margin-bottom: 10px;
  }
}
.main-image {
  width: 100%;          /* Makes the image take up the full width of its container */
  height: auto;        /* Maintains the aspect ratio */
  display: block;      /* Removes extra space below the image */
}
@media(max-width:720px){
  .main2-responsive{
    display: block;
    display: inline;
    margin-top: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    /* margin-left: 30px;
    height: 1350px; */
    flex-direction: column; /* Switch to column layout on smaller screens */
    /* align-items: center; */
  }}