@media (min-width: 1281px) {
  
    /* CSS */
    
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {
    .pzero {
        padding: 15px;
    }
    .mahobox{
    
    }
    
    .mahobox .mahoCon{
        
    }
    
    .mahobox .mahoCon h3{
        color: #ffffff;
        font-size: 36px;
        font-weight: 600;
        line-height: 44px;
        text-transform: capitalize;
        margin: 0 0 30px 0;
    }
    
    .mahobox .mahoCon p{
        color: #ffffff;
        font-size: 19px;
        font-weight: 500;
        line-height: 30px;
        text-transform: capitalize;
        margin: 0 0 32px 0;
    }
    
    .mahobox .mahoCon .mahaBtn{
        padding: 14px 20px;
        font-size: 600;
        color: #ec8a16;
        background-color: #ffffff;
        border-radius: 4px;
        transition: background-color .2s ease-in-out;
    }
    
    .mahobox .mahoCon .mahaBtn:hover{
        text-decoration: none;
        color: #ffffff;
        background-color: #222222;
    }
    
    .mahonew{
    
    }
    
    .mahonew .mahohe{
        padding: 20px;
        background-color: #ffff00;
        border-radius: 20px 20px 0px 0px;
    }
    
    .mahonew .mahohe h3{
        color: #000000;
        margin: 0;
        font-size: 22px;
        font-weight: 600;
        text-align: center;
        text-transform: capitalize;
    }


    /* Free Franchise Apply Online */
.franchise-btn {
  background-color: #FFA500;
  color: #ffffff;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgb(255 165 0 / 30%);
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
}

.franchise-btn:hover {
  color: #ffffff;
  background-color: #e69500; /* Darker orange on hover */
  box-shadow: 0 6px 12px rgba(255, 140, 0, 0.4);
  transform: translateY(-2px);
}

/* Free Franchise Apply Online */
  }