@media only screen and (max-width: 600px) {
  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    overflow-x: hidden;
  }
  

  .logo img{
    width: 120px;
  }
  /* Style for the hamburger icon */
  .hamburger {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2000;
  }

  .hamburger i {
    transition: transform 0.3s ease;
  }

  /* Toggleable X icon */
  .hamburger.active i {
    transform: rotate(90deg);
  }

  header{
    display: flex;
    align-items: center;
  }

  /* Mobile-specific navbar styling */
  .navbar {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    padding-top: 20px;
    transition: all 0.3s ease;
  }

  .navbar a {
    display: block;
    padding: 15px 0;
    font-size: 20px;
    color: white;
    text-decoration: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar a:hover {
    background-color: #444;
  }

  /* Show the navbar when .show is added */
  .navbar.show {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
  }
  

  /* Header Text */
  .headertxt h1 {
    font-size: 20px;
    margin: 0 10px;
    text-align: center;
  }

  .headertxt small {
    font-size: 10px;
    line-height: 1.4;
    margin: 0 10px;
    text-align: center;
  }

  /* Container and Wrapper Adjustments */
  .container {
    width: 100%;
    padding: 10px;
    height: 1700px;
  }

  .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    row-gap: 5rem;
  }

  .wrapper div{
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    margin: 0;
    height: fit-content;
  }

  /* ani-wrap Section */
  .ani-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 10px 50px;
    height: auto;
  }

  .sidecont{
    text-align: center;
    font-size: small;
    width: 100%;
    margin-bottom: 50px;

  }
  .sidecont small{
    font-size: 20px;
  }
  .sidecont h3{
  margin-bottom: 30px;}

  .sliders{
    margin: 0;
    padding: 0;
  }

  .pricing {
    padding: 10px;
    width: 100%;
    
  }

  .pricing-slider {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px; 
    justify-items: center;
}

.pricing-slider > div {
    width: 100%;
    padding: 20px;
    
}

  .opt1, .opt2, .opt3, .opt4 {
    width: 90%;
    margin: 10px 0;
    padding: 10px;
    

  }

  .opt1 h2, .opt2 h2, .opt3 h2, .opt4 h2 {
    font-size: 43px;
  }

  .opt1 small, .opt2 small, .opt3 small, .opt4 small {
    font-size: 30px;
  }

  /* Footer Adjustments */
  footer {
    padding: 10px;
    text-align: center;
    height: 1300px;
    overflow-y: hidden;
  }

  .fwrapper {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    
  }

  .fwrapper .row1, .row2, .row3, .row4 {
    width: 100%;
    text-align: left;
    margin: 10px 0;
    padding: 5px;
  }

}

@media only screen and (max-width: 600px) {
  .headertxt {
      height: 300px; /* Adjust height for smaller screens */
  }

  .headertxt h1 {
      font-size: 24px; /* Reduce font size for better visibility */
  }

  .headertxt small {
      font-size: 14px; /* Adjust font size for readability */
  }

  .headertxt a {
      padding: 8px; /* Adjust button size */
      font-size: 14px;
  }
}

