/* container */
@media only screen and (min-width: 360px) and (max-width: 640px) {
    .container {
      padding: 20px; /* Reduce padding */
    }
  
    .name {
      font-size: 3em; /* Reduce font size */
    }
  
    .title {
      font-size: 1.2em; /* Reduce font size */
    }
  
    .buttons {
      flex-direction: column; /* Stack buttons vertically */
      align-items: center; /* Center buttons */
      margin-right: 50%;

    }
  
    .btn {
      margin-bottom: 10px; /* Add bottom margin for spacing */
      
    }
  }
  /* features */
  @media only screen and (min-width: 360px) and (max-width: 640px) {
    .container-fluid2 {
      margin-top: -300px; /* Adjust margin-top for smaller screens */
    }
  
    .circle {
      width: 80px;
      height: 80px;
      font-size: 20px;
    }
  
    .circle i {
      font-size: 28px;
    }
  
    .row {
      flex-direction: row; /* Change to row for horizontal layout */
      justify-content: space-between; /* Space elements evenly */
    }
  
    .col-md-4 {
      margin-bottom: 20px; /* Add bottom margin for spacing */
    }
  }
  /* footer */
  @media only screen and (min-width: 360px) and (max-width: 640px) {
    .connect {
      margin-left: 0; /* Remove left margin */
    }
  
    form {
      max-width: 100%; /* Make form full width */
    }
    .para{
        margin-left: 0;
    }
  }