.section-7{
    position: relative;
    max-width: 1200px;
    margin: 30px auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: all 0.5s ease;
}

.maker-studio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
}
  
  .maker-head {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003E65;
    text-align: center;
    margin-bottom: 20px;
    font-family: "monserrat", sans-serif;
    transition: all 0.5s ease;
  }
  .maker-studio-box {
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.5s ease;
  }
  
  .box-upper {
    height: 10em;
    background-color: #FFAC6C;
    transition: all 0.5s ease;
  }
  
  .box-content {
    padding: 20px;
    text-align: center;
    transition: all 0.5s ease;
  }
  
  .studio-image {
    width: 80px;
    height: 80px;
    margin-top: -60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
  }
  
  .maker-studio-box h2 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #000;
    transition: all 0.5s ease;
  }
  
  .maker-studio-box p {
    font-size: 1rem;
    color: #000;
    margin-bottom: 20px;
    text-align: justify;
    transition: all 0.5s ease;
  }
  
  .maker-know-more-btn {
    padding: 10px 20px;
    background-color: #FF6F00;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    transition: all 0.5s ease;
  }
  
  .maker-know-more-btn:hover {
    background-color: #FF6F00;
    transition: all 0.5s ease;
  }
  
  /* Mobile Apps Section */
  .mobile-apps-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap; 
    transition: all 0.5s ease;
  }
  
  .mobile-app-box {
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: column; 
    transition: all 0.5s ease;
  }
  
  .mobile-app-box .box-upper {
    height: 100px;
    background-color: #FFAC6C;
    transition: all 0.5s ease;
  }
  
  .mobile-app-box .box-content {
    flex-grow: 1; 
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    transition: all 0.5s ease;
  }
  
  .mobile-app-box .studio-image {
    width: 80px;
    height: 80px;
    margin: -60px auto -20px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
  }
  
  .mobile-app-box h2 {
    font-size: 1.3rem;
    margin: 30px 0 0px;
    color: #000;
    height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
  }
  
  .mobile-app-box p {
    font-size: 1rem;
    color: #000;
    margin-bottom: 20px;
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s ease;
  }
  
  .mobile-app-box .maker-know-more-btn {
    padding: 10px 20px;
    background-color: #FF6F00;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background-color 0.3s ease;
    align-self: center; 
    height: 40px;
    width: 120px; 
    transition: all 0.5s ease;
  }
  
  .mobile-app-box .maker-know-more-btn:hover {
    background-color: #FF6F00;
  }
  